aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUbuntu <github@matdoes.dev>2023-02-10 01:56:45 +0000
committerUbuntu <github@matdoes.dev>2023-02-10 01:56:45 +0000
commit9d4f738d4e66adf0796e163d1c9368aaba906bba (patch)
treeae7b3c7fca0ff054eb67c1311955e9321a37e559
parent48b2a37aa09f0302b40d0678cdde2703f919ed18 (diff)
downloadazalea-drasl-9d4f738d4e66adf0796e163d1c9368aaba906bba.tar.xz
make blockstate good
-rw-r--r--Cargo.lock1
-rwxr-xr-xazalea-block/Cargo.toml8
-rwxr-xr-xazalea-block/README.md51
-rwxr-xr-xazalea-block/azalea-block-macros/Cargo.toml3
-rwxr-xr-xazalea-block/azalea-block-macros/src/lib.rs117
-rwxr-xr-xazalea-block/src/blocks.rs11
-rwxr-xr-xazalea-block/src/lib.rs43
-rw-r--r--azalea-client/src/client.rs3
-rw-r--r--azalea-client/src/entity_query.rs1
-rw-r--r--azalea-physics/src/collision/blocks.rs26590
-rw-r--r--azalea-physics/src/collision/world_collisions.rs2
-rw-r--r--azalea-physics/src/lib.rs26
-rwxr-xr-xazalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs2
-rwxr-xr-xazalea-world/src/chunk_storage.rs8
-rw-r--r--azalea-world/src/entity/metadata.rs2
-rw-r--r--azalea-world/src/entity/mod.rs2
-rw-r--r--azalea/src/pathfinder/moves.rs16
-rw-r--r--codegen/lib/code/entity.py2
-rwxr-xr-xcodegen/lib/code/shapes.py58
-rwxr-xr-xcodegen/lib/extract.py17
20 files changed, 6408 insertions, 20555 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a7082fe4..94203b2f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -215,6 +215,7 @@ version = "0.5.0"
dependencies = [
"azalea-block-macros",
"azalea-buf",
+ "azalea-registry",
]
[[package]]
diff --git a/azalea-block/Cargo.toml b/azalea-block/Cargo.toml
index 0ab2edab..13b1758c 100755
--- a/azalea-block/Cargo.toml
+++ b/azalea-block/Cargo.toml
@@ -6,13 +6,11 @@ name = "azalea-block"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-block"
version = "0.5.0"
-[features]
-full-debug = ["azalea-block-macros/full-debug"]
-
[lib]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-azalea-block-macros = {path = "./azalea-block-macros", version = "^0.5.0" }
-azalea-buf = {path = "../azalea-buf", version = "^0.5.0" }
+azalea-block-macros = { path = "./azalea-block-macros", version = "^0.5.0" }
+azalea-buf = { path = "../azalea-buf", version = "^0.5.0" }
+azalea-registry = { version = "0.5.0", path = "../azalea-registry" }
diff --git a/azalea-block/README.md b/azalea-block/README.md
index efeda675..a2a72352 100755
--- a/azalea-block/README.md
+++ b/azalea-block/README.md
@@ -1,12 +1,49 @@
-# Azalea Block
-
Representation of Minecraft block states.
-There's two main things here, the `BlockState` enum and the `Block` trait.
-`BlockState` is a simple enum with every possible block state as variant, and `Block` is a heavier trait which lets you access information about a block more easily.
+There's three block types, used for different things. You can (mostly) freely convert between them with `.into()`.
+
+## BlockState struct
+
+[`BlockState`] is a struct containing the numerical protocol ID of a block state. This is how blocks are stored in the world.
+
+
+```
+# use azalea_block::BlockState;
+let block_state: BlockState = azalea_registry::Block::Jukebox.into();
+```
+
+## Block trait
+
+The [`Block`] trait represents a type of a block. With the the [`Block`] trait, you can get some extra things like the string block ID and some information about the block's behavior. Also, the structs that implement the trait contain the block attributes as fields so it's more convenient to get them. Note that this is often used as `Box<dyn Block>`.
+If for some reason you don't want the `Block` trait, set default-features to false.
+
+```
+# use azalea_block::{Block, BlockState};
+# let block_state: BlockState = azalea_registry::Block::Jukebox.into();
+if let Some(jukebox) = Box::<dyn Block>::from(block_state).downcast_ref::<azalea_block::JukeboxBlock>() {
+ // ...
+}
+```
+```
+# use azalea_block::BlockState;
+let block_state: BlockState = azalea_block::CobblestoneWallBlock {
+ east: azalea_block::EastWall::Low,
+ north: azalea_block::NorthWall::Low,
+ south: azalea_block::SouthWall::Low,
+ west: azalea_block::WestWall::Low,
+ up: false,
+ waterlogged: false,
+}
+.into();
+```
+
+
+## azalea_registry::Block enum
-Every block is a struct that implements `Block`. You can freely convert between `BlockState` and `Block` with .into().
+This one technically isn't from the `azalea-block` crate, but it's still very relevant. It's an enum that contains every block type as a variant *without* containing any state data (like `BlockState` and the `Block` trait). Converting this into any other block type will use the default state for that block.
-If you don't want the `Block` trait, set default-features to false.
+```
+# use azalea_block::BlockState;
+let block_state: BlockState = azalea_registry::Block::Jukebox.into();
+```
-Also, by default the `Debug` implementation for `BlockState` only logs the name of the block and not the name of the enum variant. If you want that, enable the `full-debug` feature (though it's not recommended).
diff --git a/azalea-block/azalea-block-macros/Cargo.toml b/azalea-block/azalea-block-macros/Cargo.toml
index d03dbba7..39744dcc 100755
--- a/azalea-block/azalea-block-macros/Cargo.toml
+++ b/azalea-block/azalea-block-macros/Cargo.toml
@@ -6,9 +6,6 @@ name = "azalea-block-macros"
repository = "https://github.com/mat-1/azalea/tree/main/azalea-block/azalea-block-macros"
version = "0.5.0"
-[features]
-full-debug = []
-
[lib]
proc-macro = true
diff --git a/azalea-block/azalea-block-macros/src/lib.rs b/azalea-block/azalea-block-macros/src/lib.rs
index 7e304d57..f241d6c8 100755
--- a/azalea-block/azalea-block-macros/src/lib.rs
+++ b/azalea-block/azalea-block-macros/src/lib.rs
@@ -3,6 +3,7 @@
mod utils;
use proc_macro::TokenStream;
+use proc_macro2::TokenTree;
use quote::quote;
use std::collections::HashMap;
use std::fmt::Write;
@@ -234,7 +235,7 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
let mut properties_map = HashMap::new();
let mut property_struct_names_to_names = HashMap::new();
- let mut state_id: usize = 0;
+ let mut state_id: u32 = 0;
for property in &input.property_definitions.properties {
let property_type_name: Ident;
@@ -282,8 +283,8 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
#property_enum_variants
}
- impl From<usize> for #property_type_name {
- fn from(value: usize) -> Self {
+ impl From<u32> for #property_type_name {
+ fn from(value: u32) -> Self {
match value {
#property_from_number_variants
_ => panic!("Invalid property value: {}", value),
@@ -305,7 +306,11 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
let mut block_state_enum_variants = quote! {};
let mut block_structs = quote! {};
+
let mut from_state_to_block_match = quote! {};
+ let mut from_registry_block_to_block_match = quote! {};
+ let mut from_registry_block_to_blockstate_match = quote! {};
+
for block in &input.block_definitions.blocks {
let block_property_names = &block
.properties_and_defaults
@@ -403,30 +408,18 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
let mut from_block_to_state_match_inner = quote! {};
let first_state_id = state_id;
+ let mut default_state_id = None;
// if there's no properties, then the block is just a single state
if block_properties_vec.is_empty() {
block_state_enum_variants.extend(quote! {
#block_name_pascal_case,
});
+ default_state_id = Some(state_id);
state_id += 1;
}
for combination in combinations_of(&block_properties_vec) {
- state_id += 1;
- let variant_name = Ident::new(
- &format!(
- "{}_{}",
- block_name_pascal_case,
- combination
- .iter()
- .map(|v| v[0..1].to_uppercase() + &v[1..])
- .collect::<String>()
- ),
- proc_macro2::Span::call_site(),
- );
- block_state_enum_variants.extend(quote! {
- #variant_name,
- });
+ let mut is_default = true;
// face: properties::Face::Floor,
// facing: properties::Facing::North,
@@ -439,6 +432,18 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
let variant =
Ident::new(&combination[i].to_string(), proc_macro2::Span::call_site());
+ // this terrible code just gets the property default as a string
+ let property_default_as_string = if let TokenTree::Ident(i) =
+ property.default.clone().into_iter().last().unwrap()
+ {
+ i.to_string()
+ } else {
+ panic!()
+ };
+ if property_default_as_string != combination[i] {
+ is_default = false;
+ }
+
let property_type = if property.is_enum {
quote! {#property_struct_name_ident::#variant}
} else {
@@ -453,10 +458,21 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
from_block_to_state_match_inner.extend(quote! {
#block_struct_name {
#from_block_to_state_combination_match_inner
- } => BlockState::#variant_name,
+ } => BlockState { id: #state_id },
});
+
+ if is_default {
+ default_state_id = Some(state_id);
+ }
+
+ state_id += 1;
}
+ let Some(default_state_id) = default_state_id else {
+ let defaults = properties_with_name.iter().map(|p| if let TokenTree::Ident(i) = p.default.clone().into_iter().last().unwrap() { i.to_string() } else { panic!() }).collect::<Vec<_>>();
+ panic!("Couldn't get default state id for {}, combinations={:?}, defaults={:?}", block_name_pascal_case.to_string(), block_properties_vec, defaults)
+ };
+
// 7035..=7058 => {
// let b = b - 7035;
// &AcaciaButtonBlock {
@@ -466,7 +482,7 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
// }
// }
let mut from_state_to_block_inner = quote! {};
- let mut division = 1usize;
+ let mut division = 1u32;
for i in (0..properties_with_name.len()).rev() {
let PropertyWithNameAndDefault {
property_type: property_struct_name_ident,
@@ -475,11 +491,12 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
} = &properties_with_name[i];
let property_variants = &block_properties_vec[i];
- let property_variants_count = property_variants.len();
+ let property_variants_count = property_variants.len() as u32;
let conversion_code = {
if &property_struct_name_ident.to_string() == "bool" {
assert_eq!(property_variants_count, 2);
- quote! {(b / #division) % #property_variants_count != 0}
+ // this is not a mistake, it starts with true for some reason
+ quote! {(b / #division) % #property_variants_count == 0}
} else {
quote! {#property_struct_name_ident::from((b / #division) % #property_variants_count)}
}
@@ -500,6 +517,12 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
})
},
});
+ from_registry_block_to_block_match.extend(quote! {
+ azalea_registry::Block::#block_name_pascal_case => Box::new(#block_struct_name::default()),
+ });
+ from_registry_block_to_blockstate_match.extend(quote! {
+ azalea_registry::Block::#block_name_pascal_case => BlockState { id: #default_state_id },
+ });
let mut block_default_fields = quote! {};
for PropertyWithNameAndDefault {
@@ -515,10 +538,10 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
let block_id = block.name.to_string();
let from_block_to_state_match = if block.properties_and_defaults.is_empty() {
- quote! { BlockState::#block_name_pascal_case }
+ quote! { BlockState { id: #first_state_id } }
} else {
quote! {
- match b {
+ match self {
#from_block_to_state_match_inner
}
}
@@ -537,11 +560,14 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
fn id(&self) -> &'static str {
#block_id
}
+ fn as_blockstate(&self) -> BlockState {
+ #from_block_to_state_match
+ }
}
impl From<#block_struct_name> for BlockState {
fn from(b: #block_struct_name) -> Self {
- #from_block_to_state_match
+ b.as_blockstate()
}
}
@@ -561,26 +587,29 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
let mut generated = quote! {
#property_enums
- #[repr(u32)]
- #[derive(Copy, Clone, PartialEq, Eq)]
- // the Debug impl is very large and slows down compilation
- #[cfg_attr(feature = "full-debug", derive(Debug))]
- pub enum BlockState {
- #block_state_enum_variants
+ /// A representation of a state a block can be in. (for example, a stone
+ /// block only has one state but each possible stair rotation is a
+ /// different state).
+ #[derive(Copy, Clone, PartialEq, Eq, Default)]
+ pub struct BlockState {
+ /// The protocol ID for the block state. IDs may change every
+ /// version, so you shouldn't hard-code them or store them in databases.
+ pub id: u32
}
impl BlockState {
- /// Returns the highest possible state
+ pub const AIR: BlockState = BlockState { id: 0 };
+
+ /// Returns the highest possible state ID.
#[inline]
pub fn max_state() -> u32 {
#last_state_id
}
}
- #[cfg(not(feature = "full-debug"))]
impl std::fmt::Debug for BlockState {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
- write!(f, "BlockState ({})", Box::<dyn Block>::from(*self).id())
+ write!(f, "BlockState(id: {}, {:?})", self.id, Box::<dyn Block>::from(*self))
}
}
};
@@ -589,14 +618,30 @@ pub fn make_block_states(input: TokenStream) -> TokenStream {
#block_structs
impl From<BlockState> for Box<dyn Block> {
- fn from(b: BlockState) -> Self {
- let b = b as usize;
+ fn from(block_state: BlockState) -> Self {
+ let b = block_state.id;
match b {
#from_state_to_block_match
_ => panic!("Invalid block state: {}", b),
}
}
}
+ impl From<azalea_registry::Block> for Box<dyn Block> {
+ fn from(block: azalea_registry::Block) -> Self {
+ match block {
+ #from_registry_block_to_block_match
+ _ => unreachable!("There should always be a block struct for every azalea_registry::Block variant")
+ }
+ }
+ }
+ impl From<azalea_registry::Block> for BlockState {
+ fn from(block: azalea_registry::Block) -> Self {
+ match block {
+ #from_registry_block_to_blockstate_match
+ _ => unreachable!("There should always be a block state for every azalea_registry::Block variant")
+ }
+ }
+ }
});
generated.into()
diff --git a/azalea-block/src/blocks.rs b/azalea-block/src/blocks.rs
index 226542dc..e6923d59 100755
--- a/azalea-block/src/blocks.rs
+++ b/azalea-block/src/blocks.rs
@@ -1,9 +1,18 @@
+use std::any::Any;
+
use crate::BlockBehavior;
use azalea_block_macros::make_block_states;
+use std::fmt::Debug;
-pub trait Block {
+pub trait Block: Debug + Any {
fn behavior(&self) -> BlockBehavior;
fn id(&self) -> &'static str;
+ fn as_blockstate(&self) -> BlockState;
+}
+impl dyn Block {
+ pub fn downcast_ref<T: Block>(&self) -> Option<&T> {
+ (self as &dyn Any).downcast_ref::<T>()
+ }
}
make_block_states! {
diff --git a/azalea-block/src/lib.rs b/azalea-block/src/lib.rs
index 4a35be00..7a62e588 100755
--- a/azalea-block/src/lib.rs
+++ b/azalea-block/src/lib.rs
@@ -1,4 +1,5 @@
#![doc = include_str!("../README.md")]
+#![feature(trait_upcasting)]
mod behavior;
mod blocks;
@@ -6,10 +7,7 @@ mod blocks;
use azalea_buf::{BufReadError, McBufReadable, McBufVarReadable, McBufVarWritable, McBufWritable};
pub use behavior::BlockBehavior;
pub use blocks::*;
-use std::{
- io::{Cursor, Write},
- mem,
-};
+use std::io::{Cursor, Write};
impl BlockState {
/// Transmutes a u32 to a block state.
@@ -17,8 +15,8 @@ impl BlockState {
/// # Safety
/// The `state_id` should be a valid block state.
#[inline]
- pub unsafe fn from_u32_unsafe(state_id: u32) -> Self {
- mem::transmute::<u32, BlockState>(state_id)
+ pub unsafe fn from_u32_unchecked(state_id: u32) -> Self {
+ BlockState { id: state_id }
}
#[inline]
@@ -33,7 +31,7 @@ impl TryFrom<u32> for BlockState {
/// Safely converts a state id to a block state.
fn try_from(state_id: u32) -> Result<Self, Self::Error> {
if Self::is_valid_state(state_id) {
- Ok(unsafe { Self::from_u32_unsafe(state_id) })
+ Ok(unsafe { Self::from_u32_unchecked(state_id) })
} else {
Err(())
}
@@ -50,7 +48,7 @@ impl McBufReadable for BlockState {
}
impl McBufWritable for BlockState {
fn write_into(&self, buf: &mut impl Write) -> Result<(), std::io::Error> {
- u32::var_write_into(&(*self as u32), buf)
+ u32::var_write_into(&self.id, buf)
}
}
@@ -60,7 +58,7 @@ mod tests {
#[test]
fn test_from_u32() {
- assert_eq!(BlockState::try_from(0).unwrap(), BlockState::Air);
+ assert_eq!(BlockState::try_from(0).unwrap(), BlockState::AIR);
assert!(BlockState::try_from(BlockState::max_state()).is_ok());
assert!(BlockState::try_from(BlockState::max_state() + 1).is_err());
@@ -68,19 +66,34 @@ mod tests {
#[test]
fn test_from_blockstate() {
- let block: Box<dyn Block> = Box::<dyn Block>::from(BlockState::Air);
+ let block: Box<dyn Block> = Box::<dyn Block>::from(BlockState::AIR);
assert_eq!(block.id(), "air");
- let block: Box<dyn Block> = Box::<dyn Block>::from(BlockState::FloweringAzalea);
+ let block: Box<dyn Block> =
+ Box::<dyn Block>::from(BlockState::from(azalea_registry::Block::FloweringAzalea));
assert_eq!(block.id(), "flowering_azalea");
}
- #[cfg(not(feature = "full-debug"))]
#[test]
fn test_debug_blockstate() {
- assert_eq!(
- format!("{:?}", BlockState::FloweringAzalea),
- "BlockState (flowering_azalea)"
+ let formatted = format!(
+ "{:?}",
+ BlockState::from(azalea_registry::Block::FloweringAzalea)
+ );
+ assert!(
+ formatted.ends_with(", FloweringAzaleaBlock)"),
+ "{}",
+ formatted
+ );
+
+ let formatted = format!(
+ "{:?}",
+ BlockState::from(azalea_registry::Block::BigDripleafStem)
+ );
+ assert!(
+ formatted.ends_with(", BigDripleafStemBlock { facing: North, waterlogged: false })"),
+ "{}",
+ formatted
);
}
}
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs
index 8b6932e5..402bebc5 100644
--- a/azalea-client/src/client.rs
+++ b/azalea-client/src/client.rs
@@ -378,7 +378,8 @@ impl Client {
/// # Examples
///
/// ```
- /// # fn example(client: &azalea::Client) {
+ /// # use azalea_world::entity::WorldName;
+ /// # fn example(client: &azalea_client::Client) {
/// let world_name = client.component::<WorldName>();
/// # }
pub fn component<T: Component + Clone>(&self) -> T {
diff --git a/azalea-client/src/entity_query.rs b/azalea-client/src/entity_query.rs
index 7ac0e325..e39a7d2f 100644
--- a/azalea-client/src/entity_query.rs
+++ b/azalea-client/src/entity_query.rs
@@ -15,6 +15,7 @@ impl Client {
///
/// # Examples
/// ```
+ /// # use azalea_world::entity::WorldName;
/// # fn example(mut client: azalea_client::Client) {
/// let is_logged_in = client
/// .query::<Option<&WorldName>>(&mut client.ecs.lock())
diff --git a/azalea-physics/src/collision/blocks.rs b/azalea-physics/src/collision/blocks.rs
index 73b96454..6d5517ce 100644
--- a/azalea-physics/src/collision/blocks.rs
+++ b/azalea-physics/src/collision/blocks.rs
@@ -1723,20462 +1723,6174 @@ static SHAPE314: Lazy<VoxelShape> =
impl BlockWithShape for BlockState {
fn shape(&self) -> &'static VoxelShape {
- match self {
- BlockState::Air
- | BlockState::OakSapling__0
- | BlockState::OakSapling__1
- | BlockState::SpruceSapling__0
- | BlockState::SpruceSapling__1
- | BlockState::BirchSapling__0
- | BlockState::BirchSapling__1
- | BlockState::JungleSapling__0
- | BlockState::JungleSapling__1
- | BlockState::AcaciaSapling__0
- | BlockState::AcaciaSapling__1
- | BlockState::DarkOakSapling__0
- | BlockState::DarkOakSapling__1
- | BlockState::MangrovePropagule__0True_0True
- | BlockState::MangrovePropagule__0True_0False
- | BlockState::MangrovePropagule__0True_1True
- | BlockState::MangrovePropagule__0True_1False
- | BlockState::MangrovePropagule__0False_0True
- | BlockState::MangrovePropagule__0False_0False
- | BlockState::MangrovePropagule__0False_1True
- | BlockState::MangrovePropagule__0False_1False
- | BlockState::MangrovePropagule__1True_0True
- | BlockState::MangrovePropagule__1True_0False
- | BlockState::MangrovePropagule__1True_1True
- | BlockState::MangrovePropagule__1True_1False
- | BlockState::MangrovePropagule__1False_0True
- | BlockState::MangrovePropagule__1False_0False
- | BlockState::MangrovePropagule__1False_1True
- | BlockState::MangrovePropagule__1False_1False
- | BlockState::MangrovePropagule__2True_0True
- | BlockState::MangrovePropagule__2True_0False
- | BlockState::MangrovePropagule__2True_1True
- | BlockState::MangrovePropagule__2True_1False
- | BlockState::MangrovePropagule__2False_0True
- | BlockState::MangrovePropagule__2False_0False
- | BlockState::MangrovePropagule__2False_1True
- | BlockState::MangrovePropagule__2False_1False
- | BlockState::MangrovePropagule__3True_0True
- | BlockState::MangrovePropagule__3True_0False
- | BlockState::MangrovePropagule__3True_1True
- | BlockState::MangrovePropagule__3True_1False
- | BlockState::MangrovePropagule__3False_0True
- | BlockState::MangrovePropagule__3False_0False
- | BlockState::MangrovePropagule__3False_1True
- | BlockState::MangrovePropagule__3False_1False
- | BlockState::MangrovePropagule__4True_0True
- | BlockState::MangrovePropagule__4True_0False
- | BlockState::MangrovePropagule__4True_1True
- | BlockState::MangrovePropagule__4True_1False
- | BlockState::MangrovePropagule__4False_0True
- | BlockState::MangrovePropagule__4False_0False
- | BlockState::MangrovePropagule__4False_1True
- | BlockState::MangrovePropagule__4False_1False
- | BlockState::Water__0
- | BlockState::Water__1
- | BlockState::Water__2
- | BlockState::Water__3
- | BlockState::Water__4
- | BlockState::Water__5
- | BlockState::Water__6
- | BlockState::Water__7
- | BlockState::Water__8
- | BlockState::Water__9
- | BlockState::Water__10
- | BlockState::Water__11
- | BlockState::Water__12
- | BlockState::Water__13
- | BlockState::Water__14
- | BlockState::Water__15
- | BlockState::Lava__0
- | BlockState::Lava__1
- | BlockState::Lava__2
- | BlockState::Lava__3
- | BlockState::Lava__4
- | BlockState::Lava__5
- | BlockState::Lava__6
- | BlockState::Lava__7
- | BlockState::Lava__8
- | BlockState::Lava__9
- | BlockState::Lava__10
- | BlockState::Lava__11
- | BlockState::Lava__12
- | BlockState::Lava__13
- | BlockState::Lava__14
- | BlockState::Lava__15
- | BlockState::PoweredRail_TrueNorthSouthTrue
- | BlockState::PoweredRail_TrueNorthSouthFalse
- | BlockState::PoweredRail_TrueEastWestTrue
- | BlockState::PoweredRail_TrueEastWestFalse
- | BlockState::PoweredRail_TrueAscendingEastTrue
- | BlockState::PoweredRail_TrueAscendingEastFalse
- | BlockState::PoweredRail_TrueAscendingWestTrue
- | BlockState::PoweredRail_TrueAscendingWestFalse
- | BlockState::PoweredRail_TrueAscendingNorthTrue
- | BlockState::PoweredRail_TrueAscendingNorthFalse
- | BlockState::PoweredRail_TrueAscendingSouthTrue
- | BlockState::PoweredRail_TrueAscendingSouthFalse
- | BlockState::PoweredRail_FalseNorthSouthTrue
- | BlockState::PoweredRail_FalseNorthSouthFalse
- | BlockState::PoweredRail_FalseEastWestTrue
- | BlockState::PoweredRail_FalseEastWestFalse
- | BlockState::PoweredRail_FalseAscendingEastTrue
- | BlockState::PoweredRail_FalseAscendingEastFalse
- | BlockState::PoweredRail_FalseAscendingWestTrue
- | BlockState::PoweredRail_FalseAscendingWestFalse
- | BlockState::PoweredRail_FalseAscendingNorthTrue
- | BlockState::PoweredRail_FalseAscendingNorthFalse
- | BlockState::PoweredRail_FalseAscendingSouthTrue
- | BlockState::PoweredRail_FalseAscendingSouthFalse
- | BlockState::DetectorRail_TrueNorthSouthTrue
- | BlockState::DetectorRail_TrueNorthSouthFalse
- | BlockState::DetectorRail_TrueEastWestTrue
- | BlockState::DetectorRail_TrueEastWestFalse
- | BlockState::DetectorRail_TrueAscendingEastTrue
- | BlockState::DetectorRail_TrueAscendingEastFalse
- | BlockState::DetectorRail_TrueAscendingWestTrue
- | BlockState::DetectorRail_TrueAscendingWestFalse
- | BlockState::DetectorRail_TrueAscendingNorthTrue
- | BlockState::DetectorRail_TrueAscendingNorthFalse
- | BlockState::DetectorRail_TrueAscendingSouthTrue
- | BlockState::DetectorRail_TrueAscendingSouthFalse
- | BlockState::DetectorRail_FalseNorthSouthTrue
- | BlockState::DetectorRail_FalseNorthSouthFalse
- | BlockState::DetectorRail_FalseEastWestTrue
- | BlockState::DetectorRail_FalseEastWestFalse
- | BlockState::DetectorRail_FalseAscendingEastTrue
- | BlockState::DetectorRail_FalseAscendingEastFalse
- | BlockState::DetectorRail_FalseAscendingWestTrue
- | BlockState::DetectorRail_FalseAscendingWestFalse
- | BlockState::DetectorRail_FalseAscendingNorthTrue
- | BlockState::DetectorRail_FalseAscendingNorthFalse
- | BlockState::DetectorRail_FalseAscendingSouthTrue
- | BlockState::DetectorRail_FalseAscendingSouthFalse
- | BlockState::Cobweb
- | BlockState::Grass
- | BlockState::Fern
- | BlockState::DeadBush
- | BlockState::Seagrass
- | BlockState::TallSeagrass_Upper
- | BlockState::TallSeagrass_Lower
- | BlockState::MovingPiston_NormalNorth
- | BlockState::MovingPiston_StickyNorth
- | BlockState::MovingPiston_NormalEast
- | BlockState::MovingPiston_StickyEast
- | BlockState::MovingPiston_NormalSouth
- | BlockState::MovingPiston_StickySouth
- | BlockState::MovingPiston_NormalWest
- | BlockState::MovingPiston_StickyWest
- | BlockState::MovingPiston_NormalUp
- | BlockState::MovingPiston_StickyUp
- | BlockState::MovingPiston_NormalDown
- | BlockState::MovingPiston_StickyDown
- | BlockState::Dandelion
- | BlockState::Poppy
- | BlockState::BlueOrchid
- | BlockState::Allium
- | BlockState::AzureBluet
- | BlockState::RedTulip
- | BlockState::OrangeTulip
- | BlockState::WhiteTulip
- | BlockState::PinkTulip
- | BlockState::OxeyeDaisy
- | BlockState::Cornflower
- | BlockState::WitherRose
- | BlockState::LilyOfTheValley
- | BlockState::BrownMushroom
- | BlockState::RedMushroom
- | BlockState::Torch
- | BlockState::WallTorch_North
- | BlockState::WallTorch_South
- | BlockState::WallTorch_West
- | BlockState::WallTorch_East
- | BlockState::Fire__0TrueTrueTrueTrueTrue
- | BlockState::Fire__0TrueTrueTrueTrueFalse
- | BlockState::Fire__0TrueTrueTrueFalseTrue
- | BlockState::Fire__0TrueTrueTrueFalseFalse
- | BlockState::Fire__0TrueTrueFalseTrueTrue
- | BlockState::Fire__0TrueTrueFalseTrueFalse
- | BlockState::Fire__0TrueTrueFalseFalseTrue
- | BlockState::Fire__0TrueTrueFalseFalseFalse
- | BlockState::Fire__0TrueFalseTrueTrueTrue
- | BlockState::Fire__0TrueFalseTrueTrueFalse
- | BlockState::Fire__0TrueFalseTrueFalseTrue
- | BlockState::Fire__0TrueFalseTrueFalseFalse
- | BlockState::Fire__0TrueFalseFalseTrueTrue
- | BlockState::Fire__0TrueFalseFalseTrueFalse
- | BlockState::Fire__0TrueFalseFalseFalseTrue
- | BlockState::Fire__0TrueFalseFalseFalseFalse
- | BlockState::Fire__0FalseTrueTrueTrueTrue
- | BlockState::Fire__0FalseTrueTrueTrueFalse
- | BlockState::Fire__0FalseTrueTrueFalseTrue
- | BlockState::Fire__0FalseTrueTrueFalseFalse
- | BlockState::Fire__0FalseTrueFalseTrueTrue
- | BlockState::Fire__0FalseTrueFalseTrueFalse
- | BlockState::Fire__0FalseTrueFalseFalseTrue
- | BlockState::Fire__0FalseTrueFalseFalseFalse
- | BlockState::Fire__0FalseFalseTrueTrueTrue
- | BlockState::Fire__0FalseFalseTrueTrueFalse
- | BlockState::Fire__0FalseFalseTrueFalseTrue
- | BlockState::Fire__0FalseFalseTrueFalseFalse
- | BlockState::Fire__0FalseFalseFalseTrueTrue
- | BlockState::Fire__0FalseFalseFalseTrueFalse
- | BlockState::Fire__0FalseFalseFalseFalseTrue
- | BlockState::Fire__0FalseFalseFalseFalseFalse
- | BlockState::Fire__1TrueTrueTrueTrueTrue
- | BlockState::Fire__1TrueTrueTrueTrueFalse
- | BlockState::Fire__1TrueTrueTrueFalseTrue
- | BlockState::Fire__1TrueTrueTrueFalseFalse
- | BlockState::Fire__1TrueTrueFalseTrueTrue
- | BlockState::Fire__1TrueTrueFalseTrueFalse
- | BlockState::Fire__1TrueTrueFalseFalseTrue
- | BlockState::Fire__1TrueTrueFalseFalseFalse
- | BlockState::Fire__1TrueFalseTrueTrueTrue
- | BlockState::Fire__1TrueFalseTrueTrueFalse
- | BlockState::Fire__1TrueFalseTrueFalseTrue
- | BlockState::Fire__1TrueFalseTrueFalseFalse
- | BlockState::Fire__1TrueFalseFalseTrueTrue
- | BlockState::Fire__1TrueFalseFalseTrueFalse
- | BlockState::Fire__1TrueFalseFalseFalseTrue
- | BlockState::Fire__1TrueFalseFalseFalseFalse
- | BlockState::Fire__1FalseTrueTrueTrueTrue
- | BlockState::Fire__1FalseTrueTrueTrueFalse
- | BlockState::Fire__1FalseTrueTrueFalseTrue
- | BlockState::Fire__1FalseTrueTrueFalseFalse
- | BlockState::Fire__1FalseTrueFalseTrueTrue
- | BlockState::Fire__1FalseTrueFalseTrueFalse
- | BlockState::Fire__1FalseTrueFalseFalseTrue
- | BlockState::Fire__1FalseTrueFalseFalseFalse
- | BlockState::Fire__1FalseFalseTrueTrueTrue
- | BlockState::Fire__1FalseFalseTrueTrueFalse
- | BlockState::Fire__1FalseFalseTrueFalseTrue
- | BlockState::Fire__1FalseFalseTrueFalseFalse
- | BlockState::Fire__1FalseFalseFalseTrueTrue
- | BlockState::Fire__1FalseFalseFalseTrueFalse
- | BlockState::Fire__1FalseFalseFalseFalseTrue
- | BlockState::Fire__1FalseFalseFalseFalseFalse
- | BlockState::Fire__2TrueTrueTrueTrueTrue
- | BlockState::Fire__2TrueTrueTrueTrueFalse
- | BlockState::Fire__2TrueTrueTrueFalseTrue
- | BlockState::Fire__2TrueTrueTrueFalseFalse
- | BlockState::Fire__2TrueTrueFalseTrueTrue
- | BlockState::Fire__2TrueTrueFalseTrueFalse
- | BlockState::Fire__2TrueTrueFalseFalseTrue
- | BlockState::Fire__2TrueTrueFalseFalseFalse
- | BlockState::Fire__2TrueFalseTrueTrueTrue
- | BlockState::Fire__2TrueFalseTrueTrueFalse
- | BlockState::Fire__2TrueFalseTrueFalseTrue
- | BlockState::Fire__2TrueFalseTrueFalseFalse
- | BlockState::Fire__2TrueFalseFalseTrueTrue
- | BlockState::Fire__2TrueFalseFalseTrueFalse
- | BlockState::Fire__2TrueFalseFalseFalseTrue
- | BlockState::Fire__2TrueFalseFalseFalseFalse
- | BlockState::Fire__2FalseTrueTrueTrueTrue
- | BlockState::Fire__2FalseTrueTrueTrueFalse
- | BlockState::Fire__2FalseTrueTrueFalseTrue
- | BlockState::Fire__2FalseTrueTrueFalseFalse
- | BlockState::Fire__2FalseTrueFalseTrueTrue
- | BlockState::Fire__2FalseTrueFalseTrueFalse
- | BlockState::Fire__2FalseTrueFalseFalseTrue
- | BlockState::Fire__2FalseTrueFalseFalseFalse
- | BlockState::Fire__2FalseFalseTrueTrueTrue
- | BlockState::Fire__2FalseFalseTrueTrueFalse
- | BlockState::Fire__2FalseFalseTrueFalseTrue
- | BlockState::Fire__2FalseFalseTrueFalseFalse
- | BlockState::Fire__2FalseFalseFalseTrueTrue
- | BlockState::Fire__2FalseFalseFalseTrueFalse
- | BlockState::Fire__2FalseFalseFalseFalseTrue
- | BlockState::Fire__2FalseFalseFalseFalseFalse
- | BlockState::Fire__3TrueTrueTrueTrueTrue
- | BlockState::Fire__3TrueTrueTrueTrueFalse
- | BlockState::Fire__3TrueTrueTrueFalseTrue
- | BlockState::Fire__3TrueTrueTrueFalseFalse
- | BlockState::Fire__3TrueTrueFalseTrueTrue
- | BlockState::Fire__3TrueTrueFalseTrueFalse
- | BlockState::Fire__3TrueTrueFalseFalseTrue
- | BlockState::Fire__3TrueTrueFalseFalseFalse
- | BlockState::Fire__3TrueFalseTrueTrueTrue
- | BlockState::Fire__3TrueFalseTrueTrueFalse
- | BlockState::Fire__3TrueFalseTrueFalseTrue
- | BlockState::Fire__3TrueFalseTrueFalseFalse
- | BlockState::Fire__3TrueFalseFalseTrueTrue
- | BlockState::Fire__3TrueFalseFalseTrueFalse
- | BlockState::Fire__3TrueFalseFalseFalseTrue
- | BlockState::Fire__3TrueFalseFalseFalseFalse
- | BlockState::Fire__3FalseTrueTrueTrueTrue
- | BlockState::Fire__3FalseTrueTrueTrueFalse
- | BlockState::Fire__3FalseTrueTrueFalseTrue
- | BlockState::Fire__3FalseTrueTrueFalseFalse
- | BlockState::Fire__3FalseTrueFalseTrueTrue
- | BlockState::Fire__3FalseTrueFalseTrueFalse
- | BlockState::Fire__3FalseTrueFalseFalseTrue
- | BlockState::Fire__3FalseTrueFalseFalseFalse
- | BlockState::Fire__3FalseFalseTrueTrueTrue
- | BlockState::Fire__3FalseFalseTrueTrueFalse
- | BlockState::Fire__3FalseFalseTrueFalseTrue
- | BlockState::Fire__3FalseFalseTrueFalseFalse
- | BlockState::Fire__3FalseFalseFalseTrueTrue
- | BlockState::Fire__3FalseFalseFalseTrueFalse
- | BlockState::Fire__3FalseFalseFalseFalseTrue
- | BlockState::Fire__3FalseFalseFalseFalseFalse
- | BlockState::Fire__4TrueTrueTrueTrueTrue
- | BlockState::Fire__4TrueTrueTrueTrueFalse
- | BlockState::Fire__4TrueTrueTrueFalseTrue
- | BlockState::Fire__4TrueTrueTrueFalseFalse
- | BlockState::Fire__4TrueTrueFalseTrueTrue
- | BlockState::Fire__4TrueTrueFalseTrueFalse
- | BlockState::Fire__4TrueTrueFalseFalseTrue
- | BlockState::Fire__4TrueTrueFalseFalseFalse
- | BlockState::Fire__4TrueFalseTrueTrueTrue
- | BlockState::Fire__4TrueFalseTrueTrueFalse
- | BlockState::Fire__4TrueFalseTrueFalseTrue
- | BlockState::Fire__4TrueFalseTrueFalseFalse
- | BlockState::Fire__4TrueFalseFalseTrueTrue
- | BlockState::Fire__4TrueFalseFalseTrueFalse
- | BlockState::Fire__4TrueFalseFalseFalseTrue
- | BlockState::Fire__4TrueFalseFalseFalseFalse
- | BlockState::Fire__4FalseTrueTrueTrueTrue
- | BlockState::Fire__4FalseTrueTrueTrueFalse
- | BlockState::Fire__4FalseTrueTrueFalseTrue
- | BlockState::Fire__4FalseTrueTrueFalseFalse
- | BlockState::Fire__4FalseTrueFalseTrueTrue
- | BlockState::Fire__4FalseTrueFalseTrueFalse
- | BlockState::Fire__4FalseTrueFalseFalseTrue
- | BlockState::Fire__4FalseTrueFalseFalseFalse
- | BlockState::Fire__4FalseFalseTrueTrueTrue
- | BlockState::Fire__4FalseFalseTrueTrueFalse
- | BlockState::Fire__4FalseFalseTrueFalseTrue
- | BlockState::Fire__4FalseFalseTrueFalseFalse
- | BlockState::Fire__4FalseFalseFalseTrueTrue
- | BlockState::Fire__4FalseFalseFalseTrueFalse
- | BlockState::Fire__4FalseFalseFalseFalseTrue
- | BlockState::Fire__4FalseFalseFalseFalseFalse
- | BlockState::Fire__5TrueTrueTrueTrueTrue
- | BlockState::Fire__5TrueTrueTrueTrueFalse
- | BlockState::Fire__5TrueTrueTrueFalseTrue
- | BlockState::Fire__5TrueTrueTrueFalseFalse
- | BlockState::Fire__5TrueTrueFalseTrueTrue
- | BlockState::Fire__5TrueTrueFalseTrueFalse
- | BlockState::Fire__5TrueTrueFalseFalseTrue
- | BlockState::Fire__5TrueTrueFalseFalseFalse
- | BlockState::Fire__5TrueFalseTrueTrueTrue
- | BlockState::Fire__5TrueFalseTrueTrueFalse
- | BlockState::Fire__5TrueFalseTrueFalseTrue
- | BlockState::Fire__5TrueFalseTrueFalseFalse
- | BlockState::Fire__5TrueFalseFalseTrueTrue
- | BlockState::Fire__5TrueFalseFalseTrueFalse
- | BlockState::Fire__5TrueFalseFalseFalseTrue
- | BlockState::Fire__5TrueFalseFalseFalseFalse
- | BlockState::Fire__5FalseTrueTrueTrueTrue
- | BlockState::Fire__5FalseTrueTrueTrueFalse
- | BlockState::Fire__5FalseTrueTrueFalseTrue
- | BlockState::Fire__5FalseTrueTrueFalseFalse
- | BlockState::Fire__5FalseTrueFalseTrueTrue
- | BlockState::Fire__5FalseTrueFalseTrueFalse
- | BlockState::Fire__5FalseTrueFalseFalseTrue
- | BlockState::Fire__5FalseTrueFalseFalseFalse
- | BlockState::Fire__5FalseFalseTrueTrueTrue
- | BlockState::Fire__5FalseFalseTrueTrueFalse
- | BlockState::Fire__5FalseFalseTrueFalseTrue
- | BlockState::Fire__5FalseFalseTrueFalseFalse
- | BlockState::Fire__5FalseFalseFalseTrueTrue
- | BlockState::Fire__5FalseFalseFalseTrueFalse
- | BlockState::Fire__5FalseFalseFalseFalseTrue
- | BlockState::Fire__5FalseFalseFalseFalseFalse
- | BlockState::Fire__6TrueTrueTrueTrueTrue
- | BlockState::Fire__6TrueTrueTrueTrueFalse
- | BlockState::Fire__6TrueTrueTrueFalseTrue
- | BlockState::Fire__6TrueTrueTrueFalseFalse
- | BlockState::Fire__6TrueTrueFalseTrueTrue
- | BlockState::Fire__6TrueTrueFalseTrueFalse
- | BlockState::Fire__6TrueTrueFalseFalseTrue
- | BlockState::Fire__6TrueTrueFalseFalseFalse
- | BlockState::Fire__6TrueFalseTrueTrueTrue
- | BlockState::Fire__6TrueFalseTrueTrueFalse
- | BlockState::Fire__6TrueFalseTrueFalseTrue
- | BlockState::Fire__6TrueFalseTrueFalseFalse
- | BlockState::Fire__6TrueFalseFalseTrueTrue
- | BlockState::Fire__6TrueFalseFalseTrueFalse
- | BlockState::Fire__6TrueFalseFalseFalseTrue
- | BlockState::Fire__6TrueFalseFalseFalseFalse
- | BlockState::Fire__6FalseTrueTrueTrueTrue
- | BlockState::Fire__6FalseTrueTrueTrueFalse
- | BlockState::Fire__6FalseTrueTrueFalseTrue
- | BlockState::Fire__6FalseTrueTrueFalseFalse
- | BlockState::Fire__6FalseTrueFalseTrueTrue
- | BlockState::Fire__6FalseTrueFalseTrueFalse
- | BlockState::Fire__6FalseTrueFalseFalseTrue
- | BlockState::Fire__6FalseTrueFalseFalseFalse
- | BlockState::Fire__6FalseFalseTrueTrueTrue
- | BlockState::Fire__6FalseFalseTrueTrueFalse
- | BlockState::Fire__6FalseFalseTrueFalseTrue
- | BlockState::Fire__6FalseFalseTrueFalseFalse
- | BlockState::Fire__6FalseFalseFalseTrueTrue
- | BlockState::Fire__6FalseFalseFalseTrueFalse
- | BlockState::Fire__6FalseFalseFalseFalseTrue
- | BlockState::Fire__6FalseFalseFalseFalseFalse
- | BlockState::Fire__7TrueTrueTrueTrueTrue
- | BlockState::Fire__7TrueTrueTrueTrueFalse
- | BlockState::Fire__7TrueTrueTrueFalseTrue
- | BlockState::Fire__7TrueTrueTrueFalseFalse
- | BlockState::Fire__7TrueTrueFalseTrueTrue
- | BlockState::Fire__7TrueTrueFalseTrueFalse
- | BlockState::Fire__7TrueTrueFalseFalseTrue
- | BlockState::Fire__7TrueTrueFalseFalseFalse
- | BlockState::Fire__7TrueFalseTrueTrueTrue
- | BlockState::Fire__7TrueFalseTrueTrueFalse
- | BlockState::Fire__7TrueFalseTrueFalseTrue
- | BlockState::Fire__7TrueFalseTrueFalseFalse
- | BlockState::Fire__7TrueFalseFalseTrueTrue
- | BlockState::Fire__7TrueFalseFalseTrueFalse
- | BlockState::Fire__7TrueFalseFalseFalseTrue
- | BlockState::Fire__7TrueFalseFalseFalseFalse
- | BlockState::Fire__7FalseTrueTrueTrueTrue
- | BlockState::Fire__7FalseTrueTrueTrueFalse
- | BlockState::Fire__7FalseTrueTrueFalseTrue
- | BlockState::Fire__7FalseTrueTrueFalseFalse
- | BlockState::Fire__7FalseTrueFalseTrueTrue
- | BlockState::Fire__7FalseTrueFalseTrueFalse
- | BlockState::Fire__7FalseTrueFalseFalseTrue
- | BlockState::Fire__7FalseTrueFalseFalseFalse
- | BlockState::Fire__7FalseFalseTrueTrueTrue
- | BlockState::Fire__7FalseFalseTrueTrueFalse
- | BlockState::Fire__7FalseFalseTrueFalseTrue
- | BlockState::Fire__7FalseFalseTrueFalseFalse
- | BlockState::Fire__7FalseFalseFalseTrueTrue
- | BlockState::Fire__7FalseFalseFalseTrueFalse
- | BlockState::Fire__7FalseFalseFalseFalseTrue
- | BlockState::Fire__7FalseFalseFalseFalseFalse
- | BlockState::Fire__8TrueTrueTrueTrueTrue
- | BlockState::Fire__8TrueTrueTrueTrueFalse
- | BlockState::Fire__8TrueTrueTrueFalseTrue
- | BlockState::Fire__8TrueTrueTrueFalseFalse
- | BlockState::Fire__8TrueTrueFalseTrueTrue
- | BlockState::Fire__8TrueTrueFalseTrueFalse
- | BlockState::Fire__8TrueTrueFalseFalseTrue
- | BlockState::Fire__8TrueTrueFalseFalseFalse
- | BlockState::Fire__8TrueFalseTrueTrueTrue
- | BlockState::Fire__8TrueFalseTrueTrueFalse
- | BlockState::Fire__8TrueFalseTrueFalseTrue
- | BlockState::Fire__8TrueFalseTrueFalseFalse
- | BlockState::Fire__8TrueFalseFalseTrueTrue
- | BlockState::Fire__8TrueFalseFalseTrueFalse
- | BlockState::Fire__8TrueFalseFalseFalseTrue
- | BlockState::Fire__8TrueFalseFalseFalseFalse
- | BlockState::Fire__8FalseTrueTrueTrueTrue
- | BlockState::Fire__8FalseTrueTrueTrueFalse
- | BlockState::Fire__8FalseTrueTrueFalseTrue
- | BlockState::Fire__8FalseTrueTrueFalseFalse
- | BlockState::Fire__8FalseTrueFalseTrueTrue
- | BlockState::Fire__8FalseTrueFalseTrueFalse
- | BlockState::Fire__8FalseTrueFalseFalseTrue
- | BlockState::Fire__8FalseTrueFalseFalseFalse
- | BlockState::Fire__8FalseFalseTrueTrueTrue
- | BlockState::Fire__8FalseFalseTrueTrueFalse
- | BlockState::Fire__8FalseFalseTrueFalseTrue
- | BlockState::Fire__8FalseFalseTrueFalseFalse
- | BlockState::Fire__8FalseFalseFalseTrueTrue
- | BlockState::Fire__8FalseFalseFalseTrueFalse
- | BlockState::Fire__8FalseFalseFalseFalseTrue
- | BlockState::Fire__8FalseFalseFalseFalseFalse
- | BlockState::Fire__9TrueTrueTrueTrueTrue
- | BlockState::Fire__9TrueTrueTrueTrueFalse
- | BlockState::Fire__9TrueTrueTrueFalseTrue
- | BlockState::Fire__9TrueTrueTrueFalseFalse
- | BlockState::Fire__9TrueTrueFalseTrueTrue
- | BlockState::Fire__9TrueTrueFalseTrueFalse
- | BlockState::Fire__9TrueTrueFalseFalseTrue
- | BlockState::Fire__9TrueTrueFalseFalseFalse
- | BlockState::Fire__9TrueFalseTrueTrueTrue
- | BlockState::Fire__9TrueFalseTrueTrueFalse
- | BlockState::Fire__9TrueFalseTrueFalseTrue
- | BlockState::Fire__9TrueFalseTrueFalseFalse
- | BlockState::Fire__9TrueFalseFalseTrueTrue
- | BlockState::Fire__9TrueFalseFalseTrueFalse
- | BlockState::Fire__9TrueFalseFalseFalseTrue
- | BlockState::Fire__9TrueFalseFalseFalseFalse
- | BlockState::Fire__9FalseTrueTrueTrueTrue
- | BlockState::Fire__9FalseTrueTrueTrueFalse
- | BlockState::Fire__9FalseTrueTrueFalseTrue
- | BlockState::Fire__9FalseTrueTrueFalseFalse
- | BlockState::Fire__9FalseTrueFalseTrueTrue
- | BlockState::Fire__9FalseTrueFalseTrueFalse
- | BlockState::Fire__9FalseTrueFalseFalseTrue
- | BlockState::Fire__9FalseTrueFalseFalseFalse
- | BlockState::Fire__9FalseFalseTrueTrueTrue
- | BlockState::Fire__9FalseFalseTrueTrueFalse
- | BlockState::Fire__9FalseFalseTrueFalseTrue
- | BlockState::Fire__9FalseFalseTrueFalseFalse
- | BlockState::Fire__9FalseFalseFalseTrueTrue
- | BlockState::Fire__9FalseFalseFalseTrueFalse
- | BlockState::Fire__9FalseFalseFalseFalseTrue
- | BlockState::Fire__9FalseFalseFalseFalseFalse
- | BlockState::Fire__10TrueTrueTrueTrueTrue
- | BlockState::Fire__10TrueTrueTrueTrueFalse
- | BlockState::Fire__10TrueTrueTrueFalseTrue
- | BlockState::Fire__10TrueTrueTrueFalseFalse
- | BlockState::Fire__10TrueTrueFalseTrueTrue
- | BlockState::Fire__10TrueTrueFalseTrueFalse
- | BlockState::Fire__10TrueTrueFalseFalseTrue
- | BlockState::Fire__10TrueTrueFalseFalseFalse
- | BlockState::Fire__10TrueFalseTrueTrueTrue
- | BlockState::Fire__10TrueFalseTrueTrueFalse
- | BlockState::Fire__10TrueFalseTrueFalseTrue
- | BlockState::Fire__10TrueFalseTrueFalseFalse
- | BlockState::Fire__10TrueFalseFalseTrueTrue
- | BlockState::Fire__10TrueFalseFalseTrueFalse
- | BlockState::Fire__10TrueFalseFalseFalseTrue
- | BlockState::Fire__10TrueFalseFalseFalseFalse
- | BlockState::Fire__10FalseTrueTrueTrueTrue
- | BlockState::Fire__10FalseTrueTrueTrueFalse
- | BlockState::Fire__10FalseTrueTrueFalseTrue
- | BlockState::Fire__10FalseTrueTrueFalseFalse
- | BlockState::Fire__10FalseTrueFalseTrueTrue
- | BlockState::Fire__10FalseTrueFalseTrueFalse
- | BlockState::Fire__10FalseTrueFalseFalseTrue
- | BlockState::Fire__10FalseTrueFalseFalseFalse
- | BlockState::Fire__10FalseFalseTrueTrueTrue
- | BlockState::Fire__10FalseFalseTrueTrueFalse
- | BlockState::Fire__10FalseFalseTrueFalseTrue
- | BlockState::Fire__10FalseFalseTrueFalseFalse
- | BlockState::Fire__10FalseFalseFalseTrueTrue
- | BlockState::Fire__10FalseFalseFalseTrueFalse
- | BlockState::Fire__10FalseFalseFalseFalseTrue
- | BlockState::Fire__10FalseFalseFalseFalseFalse
- | BlockState::Fire__11TrueTrueTrueTrueTrue
- | BlockState::Fire__11TrueTrueTrueTrueFalse
- | BlockState::Fire__11TrueTrueTrueFalseTrue
- | BlockState::Fire__11TrueTrueTrueFalseFalse
- | BlockState::Fire__11TrueTrueFalseTrueTrue
- | BlockState::Fire__11TrueTrueFalseTrueFalse
- | BlockState::Fire__11TrueTrueFalseFalseTrue
- | BlockState::Fire__11TrueTrueFalseFalseFalse
- | BlockState::Fire__11TrueFalseTrueTrueTrue
- | BlockState::Fire__11TrueFalseTrueTrueFalse
- | BlockState::Fire__11TrueFalseTrueFalseTrue
- | BlockState::Fire__11TrueFalseTrueFalseFalse
- | BlockState::Fire__11TrueFalseFalseTrueTrue
- | BlockState::Fire__11TrueFalseFalseTrueFalse
- | BlockState::Fire__11TrueFalseFalseFalseTrue
- | BlockState::Fire__11TrueFalseFalseFalseFalse
- | BlockState::Fire__11FalseTrueTrueTrueTrue
- | BlockState::Fire__11FalseTrueTrueTrueFalse
- | BlockState::Fire__11FalseTrueTrueFalseTrue
- | BlockState::Fire__11FalseTrueTrueFalseFalse
- | BlockState::Fire__11FalseTrueFalseTrueTrue
- | BlockState::Fire__11FalseTrueFalseTrueFalse
- | BlockState::Fire__11FalseTrueFalseFalseTrue
- | BlockState::Fire__11FalseTrueFalseFalseFalse
- | BlockState::Fire__11FalseFalseTrueTrueTrue
- | BlockState::Fire__11FalseFalseTrueTrueFalse
- | BlockState::Fire__11FalseFalseTrueFalseTrue
- | BlockState::Fire__11FalseFalseTrueFalseFalse
- | BlockState::Fire__11FalseFalseFalseTrueTrue
- | BlockState::Fire__11FalseFalseFalseTrueFalse
- | BlockState::Fire__11FalseFalseFalseFalseTrue
- | BlockState::Fire__11FalseFalseFalseFalseFalse
- | BlockState::Fire__12TrueTrueTrueTrueTrue
- | BlockState::Fire__12TrueTrueTrueTrueFalse
- | BlockState::Fire__12TrueTrueTrueFalseTrue
- | BlockState::Fire__12TrueTrueTrueFalseFalse
- | BlockState::Fire__12TrueTrueFalseTrueTrue
- | BlockState::Fire__12TrueTrueFalseTrueFalse
- | BlockState::Fire__12TrueTrueFalseFalseTrue
- | BlockState::Fire__12TrueTrueFalseFalseFalse
- | BlockState::Fire__12TrueFalseTrueTrueTrue
- | BlockState::Fire__12TrueFalseTrueTrueFalse
- | BlockState::Fire__12TrueFalseTrueFalseTrue
- | BlockState::Fire__12TrueFalseTrueFalseFalse
- | BlockState::Fire__12TrueFalseFalseTrueTrue
- | BlockState::Fire__12TrueFalseFalseTrueFalse
- | BlockState::Fire__12TrueFalseFalseFalseTrue
- | BlockState::Fire__12TrueFalseFalseFalseFalse
- | BlockState::Fire__12FalseTrueTrueTrueTrue
- | BlockState::Fire__12FalseTrueTrueTrueFalse
- | BlockState::Fire__12FalseTrueTrueFalseTrue
- | BlockState::Fire__12FalseTrueTrueFalseFalse
- | BlockState::Fire__12FalseTrueFalseTrueTrue
- | BlockState::Fire__12FalseTrueFalseTrueFalse
- | BlockState::Fire__12FalseTrueFalseFalseTrue
- | BlockState::Fire__12FalseTrueFalseFalseFalse
- | BlockState::Fire__12FalseFalseTrueTrueTrue
- | BlockState::Fire__12FalseFalseTrueTrueFalse
- | BlockState::Fire__12FalseFalseTrueFalseTrue
- | BlockState::Fire__12FalseFalseTrueFalseFalse
- | BlockState::Fire__12FalseFalseFalseTrueTrue
- | BlockState::Fire__12FalseFalseFalseTrueFalse
- | BlockState::Fire__12FalseFalseFalseFalseTrue
- | BlockState::Fire__12FalseFalseFalseFalseFalse
- | BlockState::Fire__13TrueTrueTrueTrueTrue
- | BlockState::Fire__13TrueTrueTrueTrueFalse
- | BlockState::Fire__13TrueTrueTrueFalseTrue
- | BlockState::Fire__13TrueTrueTrueFalseFalse
- | BlockState::Fire__13TrueTrueFalseTrueTrue
- | BlockState::Fire__13TrueTrueFalseTrueFalse
- | BlockState::Fire__13TrueTrueFalseFalseTrue
- | BlockState::Fire__13TrueTrueFalseFalseFalse
- | BlockState::Fire__13TrueFalseTrueTrueTrue
- | BlockState::Fire__13TrueFalseTrueTrueFalse
- | BlockState::Fire__13TrueFalseTrueFalseTrue
- | BlockState::Fire__13TrueFalseTrueFalseFalse
- | BlockState::Fire__13TrueFalseFalseTrueTrue
- | BlockState::Fire__13TrueFalseFalseTrueFalse
- | BlockState::Fire__13TrueFalseFalseFalseTrue
- | BlockState::Fire__13TrueFalseFalseFalseFalse
- | BlockState::Fire__13FalseTrueTrueTrueTrue
- | BlockState::Fire__13FalseTrueTrueTrueFalse
- | BlockState::Fire__13FalseTrueTrueFalseTrue
- | BlockState::Fire__13FalseTrueTrueFalseFalse
- | BlockState::Fire__13FalseTrueFalseTrueTrue
- | BlockState::Fire__13FalseTrueFalseTrueFalse
- | BlockState::Fire__13FalseTrueFalseFalseTrue
- | BlockState::Fire__13FalseTrueFalseFalseFalse
- | BlockState::Fire__13FalseFalseTrueTrueTrue
- | BlockState::Fire__13FalseFalseTrueTrueFalse
- | BlockState::Fire__13FalseFalseTrueFalseTrue
- | BlockState::Fire__13FalseFalseTrueFalseFalse
- | BlockState::Fire__13FalseFalseFalseTrueTrue
- | BlockState::Fire__13FalseFalseFalseTrueFalse
- | BlockState::Fire__13FalseFalseFalseFalseTrue
- | BlockState::Fire__13FalseFalseFalseFalseFalse
- | BlockState::Fire__14TrueTrueTrueTrueTrue
- | BlockState::Fire__14TrueTrueTrueTrueFalse
- | BlockState::Fire__14TrueTrueTrueFalseTrue
- | BlockState::Fire__14TrueTrueTrueFalseFalse
- | BlockState::Fire__14TrueTrueFalseTrueTrue
- | BlockState::Fire__14TrueTrueFalseTrueFalse
- | BlockState::Fire__14TrueTrueFalseFalseTrue
- | BlockState::Fire__14TrueTrueFalseFalseFalse
- | BlockState::Fire__14TrueFalseTrueTrueTrue
- | BlockState::Fire__14TrueFalseTrueTrueFalse
- | BlockState::Fire__14TrueFalseTrueFalseTrue
- | BlockState::Fire__14TrueFalseTrueFalseFalse
- | BlockState::Fire__14TrueFalseFalseTrueTrue
- | BlockState::Fire__14TrueFalseFalseTrueFalse
- | BlockState::Fire__14TrueFalseFalseFalseTrue
- | BlockState::Fire__14TrueFalseFalseFalseFalse
- | BlockState::Fire__14FalseTrueTrueTrueTrue
- | BlockState::Fire__14FalseTrueTrueTrueFalse
- | BlockState::Fire__14FalseTrueTrueFalseTrue
- | BlockState::Fire__14FalseTrueTrueFalseFalse
- | BlockState::Fire__14FalseTrueFalseTrueTrue
- | BlockState::Fire__14FalseTrueFalseTrueFalse
- | BlockState::Fire__14FalseTrueFalseFalseTrue
- | BlockState::Fire__14FalseTrueFalseFalseFalse
- | BlockState::Fire__14FalseFalseTrueTrueTrue
- | BlockState::Fire__14FalseFalseTrueTrueFalse
- | BlockState::Fire__14FalseFalseTrueFalseTrue
- | BlockState::Fire__14FalseFalseTrueFalseFalse
- | BlockState::Fire__14FalseFalseFalseTrueTrue
- | BlockState::Fire__14FalseFalseFalseTrueFalse
- | BlockState::Fire__14FalseFalseFalseFalseTrue
- | BlockState::Fire__14FalseFalseFalseFalseFalse
- | BlockState::Fire__15TrueTrueTrueTrueTrue
- | BlockState::Fire__15TrueTrueTrueTrueFalse
- | BlockState::Fire__15TrueTrueTrueFalseTrue
- | BlockState::Fire__15TrueTrueTrueFalseFalse
- | BlockState::Fire__15TrueTrueFalseTrueTrue
- | BlockState::Fire__15TrueTrueFalseTrueFalse
- | BlockState::Fire__15TrueTrueFalseFalseTrue
- | BlockState::Fire__15TrueTrueFalseFalseFalse
- | BlockState::Fire__15TrueFalseTrueTrueTrue
- | BlockState::Fire__15TrueFalseTrueTrueFalse
- | BlockState::Fire__15TrueFalseTrueFalseTrue
- | BlockState::Fire__15TrueFalseTrueFalseFalse
- | BlockState::Fire__15TrueFalseFalseTrueTrue
- | BlockState::Fire__15TrueFalseFalseTrueFalse
- | BlockState::Fire__15TrueFalseFalseFalseTrue
- | BlockState::Fire__15TrueFalseFalseFalseFalse
- | BlockState::Fire__15FalseTrueTrueTrueTrue
- | BlockState::Fire__15FalseTrueTrueTrueFalse
- | BlockState::Fire__15FalseTrueTrueFalseTrue
- | BlockState::Fire__15FalseTrueTrueFalseFalse
- | BlockState::Fire__15FalseTrueFalseTrueTrue
- | BlockState::Fire__15FalseTrueFalseTrueFalse
- | BlockState::Fire__15FalseTrueFalseFalseTrue
- | BlockState::Fire__15FalseTrueFalseFalseFalse
- | BlockState::Fire__15FalseFalseTrueTrueTrue
- | BlockState::Fire__15FalseFalseTrueTrueFalse
- | BlockState::Fire__15FalseFalseTrueFalseTrue
- | BlockState::Fire__15FalseFalseTrueFalseFalse
- | BlockState::Fire__15FalseFalseFalseTrueTrue
- | BlockState::Fire__15FalseFalseFalseTrueFalse
- | BlockState::Fire__15FalseFalseFalseFalseTrue
- | BlockState::Fire__15FalseFalseFalseFalseFalse
- | BlockState::SoulFire
- | BlockState::RedstoneWire_UpUp_0UpUp
- | BlockState::RedstoneWire_UpUp_0UpSide
- | BlockState::RedstoneWire_UpUp_0UpNone
- | BlockState::RedstoneWire_UpUp_0SideUp
- | BlockState::RedstoneWire_UpUp_0SideSide
- | BlockState::RedstoneWire_UpUp_0SideNone
- | BlockState::RedstoneWire_UpUp_0NoneUp
- | BlockState::RedstoneWire_UpUp_0NoneSide
- | BlockState::RedstoneWire_UpUp_0NoneNone
- | BlockState::RedstoneWire_UpUp_1UpUp
- | BlockState::RedstoneWire_UpUp_1UpSide
- | BlockState::RedstoneWire_UpUp_1UpNone
- | BlockState::RedstoneWire_UpUp_1SideUp
- | BlockState::RedstoneWire_UpUp_1SideSide
- | BlockState::RedstoneWire_UpUp_1SideNone
- | BlockState::RedstoneWire_UpUp_1NoneUp
- | BlockState::RedstoneWire_UpUp_1NoneSide
- | BlockState::RedstoneWire_UpUp_1NoneNone
- | BlockState::RedstoneWire_UpUp_2UpUp
- | BlockState::RedstoneWire_UpUp_2UpSide
- | BlockState::RedstoneWire_UpUp_2UpNone
- | BlockState::RedstoneWire_UpUp_2SideUp
- | BlockState::RedstoneWire_UpUp_2SideSide
- | BlockState::RedstoneWire_UpUp_2SideNone
- | BlockState::RedstoneWire_UpUp_2NoneUp
- | BlockState::RedstoneWire_UpUp_2NoneSide
- | BlockState::RedstoneWire_UpUp_2NoneNone
- | BlockState::RedstoneWire_UpUp_3UpUp
- | BlockState::RedstoneWire_UpUp_3UpSide
- | BlockState::RedstoneWire_UpUp_3UpNone
- | BlockState::RedstoneWire_UpUp_3SideUp
- | BlockState::RedstoneWire_UpUp_3SideSide
- | BlockState::RedstoneWire_UpUp_3SideNone
- | BlockState::RedstoneWire_UpUp_3NoneUp
- | BlockState::RedstoneWire_UpUp_3NoneSide
- | BlockState::RedstoneWire_UpUp_3NoneNone
- | BlockState::RedstoneWire_UpUp_4UpUp
- | BlockState::RedstoneWire_UpUp_4UpSide
- | BlockState::RedstoneWire_UpUp_4UpNone
- | BlockState::RedstoneWire_UpUp_4SideUp
- | BlockState::RedstoneWire_UpUp_4SideSide
- | BlockState::RedstoneWire_UpUp_4SideNone
- | BlockState::RedstoneWire_UpUp_4NoneUp
- | BlockState::RedstoneWire_UpUp_4NoneSide
- | BlockState::RedstoneWire_UpUp_4NoneNone
- | BlockState::RedstoneWire_UpUp_5UpUp
- | BlockState::RedstoneWire_UpUp_5UpSide
- | BlockState::RedstoneWire_UpUp_5UpNone
- | BlockState::RedstoneWire_UpUp_5SideUp
- | BlockState::RedstoneWire_UpUp_5SideSide
- | BlockState::RedstoneWire_UpUp_5SideNone
- | BlockState::RedstoneWire_UpUp_5NoneUp
- | BlockState::RedstoneWire_UpUp_5NoneSide
- | BlockState::RedstoneWire_UpUp_5NoneNone
- | BlockState::RedstoneWire_UpUp_6UpUp
- | BlockState::RedstoneWire_UpUp_6UpSide
- | BlockState::RedstoneWire_UpUp_6UpNone
- | BlockState::RedstoneWire_UpUp_6SideUp
- | BlockState::RedstoneWire_UpUp_6SideSide
- | BlockState::RedstoneWire_UpUp_6SideNone
- | BlockState::RedstoneWire_UpUp_6NoneUp
- | BlockState::RedstoneWire_UpUp_6NoneSide
- | BlockState::RedstoneWire_UpUp_6NoneNone
- | BlockState::RedstoneWire_UpUp_7UpUp
- | BlockState::RedstoneWire_UpUp_7UpSide
- | BlockState::RedstoneWire_UpUp_7UpNone
- | BlockState::RedstoneWire_UpUp_7SideUp
- | BlockState::RedstoneWire_UpUp_7SideSide
- | BlockState::RedstoneWire_UpUp_7SideNone
- | BlockState::RedstoneWire_UpUp_7NoneUp
- | BlockState::RedstoneWire_UpUp_7NoneSide
- | BlockState::RedstoneWire_UpUp_7NoneNone
- | BlockState::RedstoneWire_UpUp_8UpUp
- | BlockState::RedstoneWire_UpUp_8UpSide
- | BlockState::RedstoneWire_UpUp_8UpNone
- | BlockState::RedstoneWire_UpUp_8SideUp
- | BlockState::RedstoneWire_UpUp_8SideSide
- | BlockState::RedstoneWire_UpUp_8SideNone
- | BlockState::RedstoneWire_UpUp_8NoneUp
- | BlockState::RedstoneWire_UpUp_8NoneSide
- | BlockState::RedstoneWire_UpUp_8NoneNone
- | BlockState::RedstoneWire_UpUp_9UpUp
- | BlockState::RedstoneWire_UpUp_9UpSide
- | BlockState::RedstoneWire_UpUp_9UpNone
- | BlockState::RedstoneWire_UpUp_9SideUp
- | BlockState::RedstoneWire_UpUp_9SideSide
- | BlockState::RedstoneWire_UpUp_9SideNone
- | BlockState::RedstoneWire_UpUp_9NoneUp
- | BlockState::RedstoneWire_UpUp_9NoneSide
- | BlockState::RedstoneWire_UpUp_9NoneNone
- | BlockState::RedstoneWire_UpUp_10UpUp
- | BlockState::RedstoneWire_UpUp_10UpSide
- | BlockState::RedstoneWire_UpUp_10UpNone
- | BlockState::RedstoneWire_UpUp_10SideUp
- | BlockState::RedstoneWire_UpUp_10SideSide
- | BlockState::RedstoneWire_UpUp_10SideNone
- | BlockState::RedstoneWire_UpUp_10NoneUp
- | BlockState::RedstoneWire_UpUp_10NoneSide
- | BlockState::RedstoneWire_UpUp_10NoneNone
- | BlockState::RedstoneWire_UpUp_11UpUp
- | BlockState::RedstoneWire_UpUp_11UpSide
- | BlockState::RedstoneWire_UpUp_11UpNone
- | BlockState::RedstoneWire_UpUp_11SideUp
- | BlockState::RedstoneWire_UpUp_11SideSide
- | BlockState::RedstoneWire_UpUp_11SideNone
- | BlockState::RedstoneWire_UpUp_11NoneUp
- | BlockState::RedstoneWire_UpUp_11NoneSide
- | BlockState::RedstoneWire_UpUp_11NoneNone
- | BlockState::RedstoneWire_UpUp_12UpUp
- | BlockState::RedstoneWire_UpUp_12UpSide
- | BlockState::RedstoneWire_UpUp_12UpNone
- | BlockState::RedstoneWire_UpUp_12SideUp
- | BlockState::RedstoneWire_UpUp_12SideSide
- | BlockState::RedstoneWire_UpUp_12SideNone
- | BlockState::RedstoneWire_UpUp_12NoneUp
- | BlockState::RedstoneWire_UpUp_12NoneSide
- | BlockState::RedstoneWire_UpUp_12NoneNone
- | BlockState::RedstoneWire_UpUp_13UpUp
- | BlockState::RedstoneWire_UpUp_13UpSide
- | BlockState::RedstoneWire_UpUp_13UpNone
- | BlockState::RedstoneWire_UpUp_13SideUp
- | BlockState::RedstoneWire_UpUp_13SideSide
- | BlockState::RedstoneWire_UpUp_13SideNone
- | BlockState::RedstoneWire_UpUp_13NoneUp
- | BlockState::RedstoneWire_UpUp_13NoneSide
- | BlockState::RedstoneWire_UpUp_13NoneNone
- | BlockState::RedstoneWire_UpUp_14UpUp
- | BlockState::RedstoneWire_UpUp_14UpSide
- | BlockState::RedstoneWire_UpUp_14UpNone
- | BlockState::RedstoneWire_UpUp_14SideUp
- | BlockState::RedstoneWire_UpUp_14SideSide
- | BlockState::RedstoneWire_UpUp_14SideNone
- | BlockState::RedstoneWire_UpUp_14NoneUp
- | BlockState::RedstoneWire_UpUp_14NoneSide
- | BlockState::RedstoneWire_UpUp_14NoneNone
- | BlockState::RedstoneWire_UpUp_15UpUp
- | BlockState::RedstoneWire_UpUp_15UpSide
- | BlockState::RedstoneWire_UpUp_15UpNone
- | BlockState::RedstoneWire_UpUp_15SideUp
- | BlockState::RedstoneWire_UpUp_15SideSide
- | BlockState::RedstoneWire_UpUp_15SideNone
- | BlockState::RedstoneWire_UpUp_15NoneUp
- | BlockState::RedstoneWire_UpUp_15NoneSide
- | BlockState::RedstoneWire_UpUp_15NoneNone
- | BlockState::RedstoneWire_UpSide_0UpUp
- | BlockState::RedstoneWire_UpSide_0UpSide
- | BlockState::RedstoneWire_UpSide_0UpNone
- | BlockState::RedstoneWire_UpSide_0SideUp
- | BlockState::RedstoneWire_UpSide_0SideSide
- | BlockState::RedstoneWire_UpSide_0SideNone
- | BlockState::RedstoneWire_UpSide_0NoneUp
- | BlockState::RedstoneWire_UpSide_0NoneSide
- | BlockState::RedstoneWire_UpSide_0NoneNone
- | BlockState::RedstoneWire_UpSide_1UpUp
- | BlockState::RedstoneWire_UpSide_1UpSide
- | BlockState::RedstoneWire_UpSide_1UpNone
- | BlockState::RedstoneWire_UpSide_1SideUp
- | BlockState::RedstoneWire_UpSide_1SideSide
- | BlockState::RedstoneWire_UpSide_1SideNone
- | BlockState::RedstoneWire_UpSide_1NoneUp
- | BlockState::RedstoneWire_UpSide_1NoneSide
- | BlockState::RedstoneWire_UpSide_1NoneNone
- | BlockState::RedstoneWire_UpSide_2UpUp
- | BlockState::RedstoneWire_UpSide_2UpSide
- | BlockState::RedstoneWire_UpSide_2UpNone
- | BlockState::RedstoneWire_UpSide_2SideUp
- | BlockState::RedstoneWire_UpSide_2SideSide
- | BlockState::RedstoneWire_UpSide_2SideNone
- | BlockState::RedstoneWire_UpSide_2NoneUp
- | BlockState::RedstoneWire_UpSide_2NoneSide
- | BlockState::RedstoneWire_UpSide_2NoneNone
- | BlockState::RedstoneWire_UpSide_3UpUp
- | BlockState::RedstoneWire_UpSide_3UpSide
- | BlockState::RedstoneWire_UpSide_3UpNone
- | BlockState::RedstoneWire_UpSide_3SideUp
- | BlockState::RedstoneWire_UpSide_3SideSide
- | BlockState::RedstoneWire_UpSide_3SideNone
- | BlockState::RedstoneWire_UpSide_3NoneUp
- | BlockState::RedstoneWire_UpSide_3NoneSide
- | BlockState::RedstoneWire_UpSide_3NoneNone
- | BlockState::RedstoneWire_UpSide_4UpUp
- | BlockState::RedstoneWire_UpSide_4UpSide
- | BlockState::RedstoneWire_UpSide_4UpNone
- | BlockState::RedstoneWire_UpSide_4SideUp
- | BlockState::RedstoneWire_UpSide_4SideSide
- | BlockState::RedstoneWire_UpSide_4SideNone
- | BlockState::RedstoneWire_UpSide_4NoneUp
- | BlockState::RedstoneWire_UpSide_4NoneSide
- | BlockState::RedstoneWire_UpSide_4NoneNone
- | BlockState::RedstoneWire_UpSide_5UpUp
- | BlockState::RedstoneWire_UpSide_5UpSide
- | BlockState::RedstoneWire_UpSide_5UpNone
- | BlockState::RedstoneWire_UpSide_5SideUp
- | BlockState::RedstoneWire_UpSide_5SideSide
- | BlockState::RedstoneWire_UpSide_5SideNone
- | BlockState::RedstoneWire_UpSide_5NoneUp
- | BlockState::RedstoneWire_UpSide_5NoneSide
- | BlockState::RedstoneWire_UpSide_5NoneNone
- | BlockState::RedstoneWire_UpSide_6UpUp
- | BlockState::RedstoneWire_UpSide_6UpSide
- | BlockState::RedstoneWire_UpSide_6UpNone
- | BlockState::RedstoneWire_UpSide_6SideUp
- | BlockState::RedstoneWire_UpSide_6SideSide
- | BlockState::RedstoneWire_UpSide_6SideNone
- | BlockState::RedstoneWire_UpSide_6NoneUp
- | BlockState::RedstoneWire_UpSide_6NoneSide
- | BlockState::RedstoneWire_UpSide_6NoneNone
- | BlockState::RedstoneWire_UpSide_7UpUp
- | BlockState::RedstoneWire_UpSide_7UpSide
- | BlockState::RedstoneWire_UpSide_7UpNone
- | BlockState::RedstoneWire_UpSide_7SideUp
- | BlockState::RedstoneWire_UpSide_7SideSide
- | BlockState::RedstoneWire_UpSide_7SideNone
- | BlockState::RedstoneWire_UpSide_7NoneUp
- | BlockState::RedstoneWire_UpSide_7NoneSide
- | BlockState::RedstoneWire_UpSide_7NoneNone
- | BlockState::RedstoneWire_UpSide_8UpUp
- | BlockState::RedstoneWire_UpSide_8UpSide
- | BlockState::RedstoneWire_UpSide_8UpNone
- | BlockState::RedstoneWire_UpSide_8SideUp
- | BlockState::RedstoneWire_UpSide_8SideSide
- | BlockState::RedstoneWire_UpSide_8SideNone
- | BlockState::RedstoneWire_UpSide_8NoneUp
- | BlockState::RedstoneWire_UpSide_8NoneSide
- | BlockState::RedstoneWire_UpSide_8NoneNone
- | BlockState::RedstoneWire_UpSide_9UpUp
- | BlockState::RedstoneWire_UpSide_9UpSide
- | BlockState::RedstoneWire_UpSide_9UpNone
- | BlockState::RedstoneWire_UpSide_9SideUp
- | BlockState::RedstoneWire_UpSide_9SideSide
- | BlockState::RedstoneWire_UpSide_9SideNone
- | BlockState::RedstoneWire_UpSide_9NoneUp
- | BlockState::RedstoneWire_UpSide_9NoneSide
- | BlockState::RedstoneWire_UpSide_9NoneNone
- | BlockState::RedstoneWire_UpSide_10UpUp
- | BlockState::RedstoneWire_UpSide_10UpSide
- | BlockState::RedstoneWire_UpSide_10UpNone
- | BlockState::RedstoneWire_UpSide_10SideUp
- | BlockState::RedstoneWire_UpSide_10SideSide
- | BlockState::RedstoneWire_UpSide_10SideNone
- | BlockState::RedstoneWire_UpSide_10NoneUp
- | BlockState::RedstoneWire_UpSide_10NoneSide
- | BlockState::RedstoneWire_UpSide_10NoneNone
- | BlockState::RedstoneWire_UpSide_11UpUp
- | BlockState::RedstoneWire_UpSide_11UpSide
- | BlockState::RedstoneWire_UpSide_11UpNone
- | BlockState::RedstoneWire_UpSide_11SideUp
- | BlockState::RedstoneWire_UpSide_11SideSide
- | BlockState::RedstoneWire_UpSide_11SideNone
- | BlockState::RedstoneWire_UpSide_11NoneUp
- | BlockState::RedstoneWire_UpSide_11NoneSide
- | BlockState::RedstoneWire_UpSide_11NoneNone
- | BlockState::RedstoneWire_UpSide_12UpUp
- | BlockState::RedstoneWire_UpSide_12UpSide
- | BlockState::RedstoneWire_UpSide_12UpNone
- | BlockState::RedstoneWire_UpSide_12SideUp
- | BlockState::RedstoneWire_UpSide_12SideSide
- | BlockState::RedstoneWire_UpSide_12SideNone
- | BlockState::RedstoneWire_UpSide_12NoneUp
- | BlockState::RedstoneWire_UpSide_12NoneSide
- | BlockState::RedstoneWire_UpSide_12NoneNone
- | BlockState::RedstoneWire_UpSide_13UpUp
- | BlockState::RedstoneWire_UpSide_13UpSide
- | BlockState::RedstoneWire_UpSide_13UpNone
- | BlockState::RedstoneWire_UpSide_13SideUp
- | BlockState::RedstoneWire_UpSide_13SideSide
- | BlockState::RedstoneWire_UpSide_13SideNone
- | BlockState::RedstoneWire_UpSide_13NoneUp
- | BlockState::RedstoneWire_UpSide_13NoneSide
- | BlockState::RedstoneWire_UpSide_13NoneNone
- | BlockState::RedstoneWire_UpSide_14UpUp
- | BlockState::RedstoneWire_UpSide_14UpSide
- | BlockState::RedstoneWire_UpSide_14UpNone
- | BlockState::RedstoneWire_UpSide_14SideUp
- | BlockState::RedstoneWire_UpSide_14SideSide
- | BlockState::RedstoneWire_UpSide_14SideNone
- | BlockState::RedstoneWire_UpSide_14NoneUp
- | BlockState::RedstoneWire_UpSide_14NoneSide
- | BlockState::RedstoneWire_UpSide_14NoneNone
- | BlockState::RedstoneWire_UpSide_15UpUp
- | BlockState::RedstoneWire_UpSide_15UpSide
- | BlockState::RedstoneWire_UpSide_15UpNone
- | BlockState::RedstoneWire_UpSide_15SideUp
- | BlockState::RedstoneWire_UpSide_15SideSide
- | BlockState::RedstoneWire_UpSide_15SideNone
- | BlockState::RedstoneWire_UpSide_15NoneUp
- | BlockState::RedstoneWire_UpSide_15NoneSide
- | BlockState::RedstoneWire_UpSide_15NoneNone
- | BlockState::RedstoneWire_UpNone_0UpUp
- | BlockState::RedstoneWire_UpNone_0UpSide
- | BlockState::RedstoneWire_UpNone_0UpNone
- | BlockState::RedstoneWire_UpNone_0SideUp
- | BlockState::RedstoneWire_UpNone_0SideSide
- | BlockState::RedstoneWire_UpNone_0SideNone
- | BlockState::RedstoneWire_UpNone_0NoneUp
- | BlockState::RedstoneWire_UpNone_0NoneSide
- | BlockState::RedstoneWire_UpNone_0NoneNone
- | BlockState::RedstoneWire_UpNone_1UpUp
- | BlockState::RedstoneWire_UpNone_1UpSide
- | BlockState::RedstoneWire_UpNone_1UpNone
- | BlockState::RedstoneWire_UpNone_1SideUp
- | BlockState::RedstoneWire_UpNone_1SideSide
- | BlockState::RedstoneWire_UpNone_1SideNone
- | BlockState::RedstoneWire_UpNone_1NoneUp
- | BlockState::RedstoneWire_UpNone_1NoneSide
- | BlockState::RedstoneWire_UpNone_1NoneNone
- | BlockState::RedstoneWire_UpNone_2UpUp
- | BlockState::RedstoneWire_UpNone_2UpSide
- | BlockState::RedstoneWire_UpNone_2UpNone
- | BlockState::RedstoneWire_UpNone_2SideUp
- | BlockState::RedstoneWire_UpNone_2SideSide
- | BlockState::RedstoneWire_UpNone_2SideNone
- | BlockState::RedstoneWire_UpNone_2NoneUp
- | BlockState::RedstoneWire_UpNone_2NoneSide
- | BlockState::RedstoneWire_UpNone_2NoneNone
- | BlockState::RedstoneWire_UpNone_3UpUp
- | BlockState::RedstoneWire_UpNone_3UpSide
- | BlockState::RedstoneWire_UpNone_3UpNone
- | BlockState::RedstoneWire_UpNone_3SideUp
- | BlockState::RedstoneWire_UpNone_3SideSide
- | BlockState::RedstoneWire_UpNone_3SideNone
- | BlockState::RedstoneWire_UpNone_3NoneUp
- | BlockState::RedstoneWire_UpNone_3NoneSide
- | BlockState::RedstoneWire_UpNone_3NoneNone
- | BlockState::RedstoneWire_UpNone_4UpUp
- | BlockState::RedstoneWire_UpNone_4UpSide
- | BlockState::RedstoneWire_UpNone_4UpNone
- | BlockState::RedstoneWire_UpNone_4SideUp
- | BlockState::RedstoneWire_UpNone_4SideSide
- | BlockState::RedstoneWire_UpNone_4SideNone
- | BlockState::RedstoneWire_UpNone_4NoneUp
- | BlockState::RedstoneWire_UpNone_4NoneSide
- | BlockState::RedstoneWire_UpNone_4NoneNone
- | BlockState::RedstoneWire_UpNone_5UpUp
- | BlockState::RedstoneWire_UpNone_5UpSide
- | BlockState::RedstoneWire_UpNone_5UpNone
- | BlockState::RedstoneWire_UpNone_5SideUp
- | BlockState::RedstoneWire_UpNone_5SideSide
- | BlockState::RedstoneWire_UpNone_5SideNone
- | BlockState::RedstoneWire_UpNone_5NoneUp
- | BlockState::RedstoneWire_UpNone_5NoneSide
- | BlockState::RedstoneWire_UpNone_5NoneNone
- | BlockState::RedstoneWire_UpNone_6UpUp
- | BlockState::RedstoneWire_UpNone_6UpSide
- | BlockState::RedstoneWire_UpNone_6UpNone
- | BlockState::RedstoneWire_UpNone_6SideUp
- | BlockState::RedstoneWire_UpNone_6SideSide
- | BlockState::RedstoneWire_UpNone_6SideNone
- | BlockState::RedstoneWire_UpNone_6NoneUp
- | BlockState::RedstoneWire_UpNone_6NoneSide
- | BlockState::RedstoneWire_UpNone_6NoneNone
- | BlockState::RedstoneWire_UpNone_7UpUp
- | BlockState::RedstoneWire_UpNone_7UpSide
- | BlockState::RedstoneWire_UpNone_7UpNone
- | BlockState::RedstoneWire_UpNone_7SideUp
- | BlockState::RedstoneWire_UpNone_7SideSide
- | BlockState::RedstoneWire_UpNone_7SideNone
- | BlockState::RedstoneWire_UpNone_7NoneUp
- | BlockState::RedstoneWire_UpNone_7NoneSide
- | BlockState::RedstoneWire_UpNone_7NoneNone
- | BlockState::RedstoneWire_UpNone_8UpUp
- | BlockState::RedstoneWire_UpNone_8UpSide
- | BlockState::RedstoneWire_UpNone_8UpNone
- | BlockState::RedstoneWire_UpNone_8SideUp
- | BlockState::RedstoneWire_UpNone_8SideSide
- | BlockState::RedstoneWire_UpNone_8SideNone
- | BlockState::RedstoneWire_UpNone_8NoneUp
- | BlockState::RedstoneWire_UpNone_8NoneSide
- | BlockState::RedstoneWire_UpNone_8NoneNone
- | BlockState::RedstoneWire_UpNone_9UpUp
- | BlockState::RedstoneWire_UpNone_9UpSide
- | BlockState::RedstoneWire_UpNone_9UpNone
- | BlockState::RedstoneWire_UpNone_9SideUp
- | BlockState::RedstoneWire_UpNone_9SideSide
- | BlockState::RedstoneWire_UpNone_9SideNone
- | BlockState::RedstoneWire_UpNone_9NoneUp
- | BlockState::RedstoneWire_UpNone_9NoneSide
- | BlockState::RedstoneWire_UpNone_9NoneNone
- | BlockState::RedstoneWire_UpNone_10UpUp
- | BlockState::RedstoneWire_UpNone_10UpSide
- | BlockState::RedstoneWire_UpNone_10UpNone
- | BlockState::RedstoneWire_UpNone_10SideUp
- | BlockState::RedstoneWire_UpNone_10SideSide
- | BlockState::RedstoneWire_UpNone_10SideNone
- | BlockState::RedstoneWire_UpNone_10NoneUp
- | BlockState::RedstoneWire_UpNone_10NoneSide
- | BlockState::RedstoneWire_UpNone_10NoneNone
- | BlockState::RedstoneWire_UpNone_11UpUp
- | BlockState::RedstoneWire_UpNone_11UpSide
- | BlockState::RedstoneWire_UpNone_11UpNone
- | BlockState::RedstoneWire_UpNone_11SideUp
- | BlockState::RedstoneWire_UpNone_11SideSide
- | BlockState::RedstoneWire_UpNone_11SideNone
- | BlockState::RedstoneWire_UpNone_11NoneUp
- | BlockState::RedstoneWire_UpNone_11NoneSide
- | BlockState::RedstoneWire_UpNone_11NoneNone
- | BlockState::RedstoneWire_UpNone_12UpUp
- | BlockState::RedstoneWire_UpNone_12UpSide
- | BlockState::RedstoneWire_UpNone_12UpNone
- | BlockState::RedstoneWire_UpNone_12SideUp
- | BlockState::RedstoneWire_UpNone_12SideSide
- | BlockState::RedstoneWire_UpNone_12SideNone
- | BlockState::RedstoneWire_UpNone_12NoneUp
- | BlockState::RedstoneWire_UpNone_12NoneSide
- | BlockState::RedstoneWire_UpNone_12NoneNone
- | BlockState::RedstoneWire_UpNone_13UpUp
- | BlockState::RedstoneWire_UpNone_13UpSide
- | BlockState::RedstoneWire_UpNone_13UpNone
- | BlockState::RedstoneWire_UpNone_13SideUp
- | BlockState::RedstoneWire_UpNone_13SideSide
- | BlockState::RedstoneWire_UpNone_13SideNone
- | BlockState::RedstoneWire_UpNone_13NoneUp
- | BlockState::RedstoneWire_UpNone_13NoneSide
- | BlockState::RedstoneWire_UpNone_13NoneNone
- | BlockState::RedstoneWire_UpNone_14UpUp
- | BlockState::RedstoneWire_UpNone_14UpSide
- | BlockState::RedstoneWire_UpNone_14UpNone
- | BlockState::RedstoneWire_UpNone_14SideUp
- | BlockState::RedstoneWire_UpNone_14SideSide
- | BlockState::RedstoneWire_UpNone_14SideNone
- | BlockState::RedstoneWire_UpNone_14NoneUp
- | BlockState::RedstoneWire_UpNone_14NoneSide
- | BlockState::RedstoneWire_UpNone_14NoneNone
- | BlockState::RedstoneWire_UpNone_15UpUp
- | BlockState::RedstoneWire_UpNone_15UpSide
- | BlockState::RedstoneWire_UpNone_15UpNone
- | BlockState::RedstoneWire_UpNone_15SideUp
- | BlockState::RedstoneWire_UpNone_15SideSide
- | BlockState::RedstoneWire_UpNone_15SideNone
- | BlockState::RedstoneWire_UpNone_15NoneUp
- | BlockState::RedstoneWire_UpNone_15NoneSide
- | BlockState::RedstoneWire_UpNone_15NoneNone
- | BlockState::RedstoneWire_SideUp_0UpUp
- | BlockState::RedstoneWire_SideUp_0UpSide
- | BlockState::RedstoneWire_SideUp_0UpNone
- | BlockState::RedstoneWire_SideUp_0SideUp
- | BlockState::RedstoneWire_SideUp_0SideSide
- | BlockState::RedstoneWire_SideUp_0SideNone
- | BlockState::RedstoneWire_SideUp_0NoneUp
- | BlockState::RedstoneWire_SideUp_0NoneSide
- | BlockState::RedstoneWire_SideUp_0NoneNone
- | BlockState::RedstoneWire_SideUp_1UpUp
- | BlockState::RedstoneWire_SideUp_1UpSide
- | BlockState::RedstoneWire_SideUp_1UpNone
- | BlockState::RedstoneWire_SideUp_1SideUp
- | BlockState::RedstoneWire_SideUp_1SideSide
- | BlockState::RedstoneWire_SideUp_1SideNone
- | BlockState::RedstoneWire_SideUp_1NoneUp
- | BlockState::RedstoneWire_SideUp_1NoneSide
- | BlockState::RedstoneWire_SideUp_1NoneNone
- | BlockState::RedstoneWire_SideUp_2UpUp
- | BlockState::RedstoneWire_SideUp_2UpSide
- | BlockState::RedstoneWire_SideUp_2UpNone
- | BlockState::RedstoneWire_SideUp_2SideUp
- | BlockState::RedstoneWire_SideUp_2SideSide
- | BlockState::RedstoneWire_SideUp_2SideNone
- | BlockState::RedstoneWire_SideUp_2NoneUp
- | BlockState::RedstoneWire_SideUp_2NoneSide
- | BlockState::RedstoneWire_SideUp_2NoneNone
- | BlockState::RedstoneWire_SideUp_3UpUp
- | BlockState::RedstoneWire_SideUp_3UpSide
- | BlockState::RedstoneWire_SideUp_3UpNone
- | BlockState::RedstoneWire_SideUp_3SideUp
- | BlockState::RedstoneWire_SideUp_3SideSide
- | BlockState::RedstoneWire_SideUp_3SideNone
- | BlockState::RedstoneWire_SideUp_3NoneUp
- | BlockState::RedstoneWire_SideUp_3NoneSide
- | BlockState::RedstoneWire_SideUp_3NoneNone
- | BlockState::RedstoneWire_SideUp_4UpUp
- | BlockState::RedstoneWire_SideUp_4UpSide
- | BlockState::RedstoneWire_SideUp_4UpNone
- | BlockState::RedstoneWire_SideUp_4SideUp
- | BlockState::RedstoneWire_SideUp_4SideSide
- | BlockState::RedstoneWire_SideUp_4SideNone
- | BlockState::RedstoneWire_SideUp_4NoneUp
- | BlockState::RedstoneWire_SideUp_4NoneSide
- | BlockState::RedstoneWire_SideUp_4NoneNone
- | BlockState::RedstoneWire_SideUp_5UpUp
- | BlockState::RedstoneWire_SideUp_5UpSide
- | BlockState::RedstoneWire_SideUp_5UpNone
- | BlockState::RedstoneWire_SideUp_5SideUp
- | BlockState::RedstoneWire_SideUp_5SideSide
- | BlockState::RedstoneWire_SideUp_5SideNone
- | BlockState::RedstoneWire_SideUp_5NoneUp
- | BlockState::RedstoneWire_SideUp_5NoneSide
- | BlockState::RedstoneWire_SideUp_5NoneNone
- | BlockState::RedstoneWire_SideUp_6UpUp
- | BlockState::RedstoneWire_SideUp_6UpSide
- | BlockState::RedstoneWire_SideUp_6UpNone
- | BlockState::RedstoneWire_SideUp_6SideUp
- | BlockState::RedstoneWire_SideUp_6SideSide
- | BlockState::RedstoneWire_SideUp_6SideNone
- | BlockState::RedstoneWire_SideUp_6NoneUp
- | BlockState::RedstoneWire_SideUp_6NoneSide
- | BlockState::RedstoneWire_SideUp_6NoneNone
- | BlockState::RedstoneWire_SideUp_7UpUp
- | BlockState::RedstoneWire_SideUp_7UpSide
- | BlockState::RedstoneWire_SideUp_7UpNone
- | BlockState::RedstoneWire_SideUp_7SideUp
- | BlockState::RedstoneWire_SideUp_7SideSide
- | BlockState::RedstoneWire_SideUp_7SideNone
- | BlockState::RedstoneWire_SideUp_7NoneUp
- | BlockState::RedstoneWire_SideUp_7NoneSide
- | BlockState::RedstoneWire_SideUp_7NoneNone
- | BlockState::RedstoneWire_SideUp_8UpUp
- | BlockState::RedstoneWire_SideUp_8UpSide
- | BlockState::RedstoneWire_SideUp_8UpNone
- | BlockState::RedstoneWire_SideUp_8SideUp
- | BlockState::RedstoneWire_SideUp_8SideSide
- | BlockState::RedstoneWire_SideUp_8SideNone
- | BlockState::RedstoneWire_SideUp_8NoneUp
- | BlockState::RedstoneWire_SideUp_8NoneSide
- | BlockState::RedstoneWire_SideUp_8NoneNone
- | BlockState::RedstoneWire_SideUp_9UpUp
- | BlockState::RedstoneWire_SideUp_9UpSide
- | BlockState::RedstoneWire_SideUp_9UpNone
- | BlockState::RedstoneWire_SideUp_9SideUp
- | BlockState::RedstoneWire_SideUp_9SideSide
- | BlockState::RedstoneWire_SideUp_9SideNone
- | BlockState::RedstoneWire_SideUp_9NoneUp
- | BlockState::RedstoneWire_SideUp_9NoneSide
- | BlockState::RedstoneWire_SideUp_9NoneNone
- | BlockState::RedstoneWire_SideUp_10UpUp
- | BlockState::RedstoneWire_SideUp_10UpSide
- | BlockState::RedstoneWire_SideUp_10UpNone
- | BlockState::RedstoneWire_SideUp_10SideUp
- | BlockState::RedstoneWire_SideUp_10SideSide
- | BlockState::RedstoneWire_SideUp_10SideNone
- | BlockState::RedstoneWire_SideUp_10NoneUp
- | BlockState::RedstoneWire_SideUp_10NoneSide
- | BlockState::RedstoneWire_SideUp_10NoneNone
- | BlockState::RedstoneWire_SideUp_11UpUp
- | BlockState::RedstoneWire_SideUp_11UpSide
- | BlockState::RedstoneWire_SideUp_11UpNone
- | BlockState::RedstoneWire_SideUp_11SideUp
- | BlockState::RedstoneWire_SideUp_11SideSide
- | BlockState::RedstoneWire_SideUp_11SideNone
- | BlockState::RedstoneWire_SideUp_11NoneUp
- | BlockState::RedstoneWire_SideUp_11NoneSide
- | BlockState::RedstoneWire_SideUp_11NoneNone
- | BlockState::RedstoneWire_SideUp_12UpUp
- | BlockState::RedstoneWire_SideUp_12UpSide
- | BlockState::RedstoneWire_SideUp_12UpNone
- | BlockState::RedstoneWire_SideUp_12SideUp
- | BlockState::RedstoneWire_SideUp_12SideSide
- | BlockState::RedstoneWire_SideUp_12SideNone
- | BlockState::RedstoneWire_SideUp_12NoneUp
- | BlockState::RedstoneWire_SideUp_12NoneSide
- | BlockState::RedstoneWire_SideUp_12NoneNone
- | BlockState::RedstoneWire_SideUp_13UpUp
- | BlockState::RedstoneWire_SideUp_13UpSide
- | BlockState::RedstoneWire_SideUp_13UpNone
- | BlockState::RedstoneWire_SideUp_13SideUp
- | BlockState::RedstoneWire_SideUp_13SideSide
- | BlockState::RedstoneWire_SideUp_13SideNone
- | BlockState::RedstoneWire_SideUp_13NoneUp
- | BlockState::RedstoneWire_SideUp_13NoneSide
- | BlockState::RedstoneWire_SideUp_13NoneNone
- | BlockState::RedstoneWire_SideUp_14UpUp
- | BlockState::RedstoneWire_SideUp_14UpSide
- | BlockState::RedstoneWire_SideUp_14UpNone
- | BlockState::RedstoneWire_SideUp_14SideUp
- | BlockState::RedstoneWire_SideUp_14SideSide
- | BlockState::RedstoneWire_SideUp_14SideNone
- | BlockState::RedstoneWire_SideUp_14NoneUp
- | BlockState::RedstoneWire_SideUp_14NoneSide
- | BlockState::RedstoneWire_SideUp_14NoneNone
- | BlockState::RedstoneWire_SideUp_15UpUp
- | BlockState::RedstoneWire_SideUp_15UpSide
- | BlockState::RedstoneWire_SideUp_15UpNone
- | BlockState::RedstoneWire_SideUp_15SideUp
- | BlockState::RedstoneWire_SideUp_15SideSide
- | BlockState::RedstoneWire_SideUp_15SideNone
- | BlockState::RedstoneWire_SideUp_15NoneUp
- | BlockState::RedstoneWire_SideUp_15NoneSide
- | BlockState::RedstoneWire_SideUp_15NoneNone
- | BlockState::RedstoneWire_SideSide_0UpUp
- | BlockState::RedstoneWire_SideSide_0UpSide
- | BlockState::RedstoneWire_SideSide_0UpNone
- | BlockState::RedstoneWire_SideSide_0SideUp
- | BlockState::RedstoneWire_SideSide_0SideSide
- | BlockState::RedstoneWire_SideSide_0SideNone
- | BlockState::RedstoneWire_SideSide_0NoneUp
- | BlockState::RedstoneWire_SideSide_0NoneSide
- | BlockState::RedstoneWire_SideSide_0NoneNone
- | BlockState::RedstoneWire_SideSide_1UpUp
- | BlockState::RedstoneWire_SideSide_1UpSide
- | BlockState::RedstoneWire_SideSide_1UpNone
- | BlockState::RedstoneWire_SideSide_1SideUp
- | BlockState::RedstoneWire_SideSide_1SideSide
- | BlockState::RedstoneWire_SideSide_1SideNone
- | BlockState::RedstoneWire_SideSide_1NoneUp
- | BlockState::RedstoneWire_SideSide_1NoneSide
- | BlockState::RedstoneWire_SideSide_1NoneNone
- | BlockState::RedstoneWire_SideSide_2UpUp
- | BlockState::RedstoneWire_SideSide_2UpSide
- | BlockState::RedstoneWire_SideSide_2UpNone
- | BlockState::RedstoneWire_SideSide_2SideUp
- | BlockState::RedstoneWire_SideSide_2SideSide
- | BlockState::RedstoneWire_SideSide_2SideNone
- | BlockState::RedstoneWire_SideSide_2NoneUp
- | BlockState::RedstoneWire_SideSide_2NoneSide
- | BlockState::RedstoneWire_SideSide_2NoneNone
- | BlockState::RedstoneWire_SideSide_3UpUp
- | BlockState::RedstoneWire_SideSide_3UpSide
- | BlockState::RedstoneWire_SideSide_3UpNone
- | BlockState::RedstoneWire_SideSide_3SideUp
- | BlockState::RedstoneWire_SideSide_3SideSide
- | BlockState::RedstoneWire_SideSide_3SideNone
- | BlockState::RedstoneWire_SideSide_3NoneUp
- | BlockState::RedstoneWire_SideSide_3NoneSide
- | BlockState::RedstoneWire_SideSide_3NoneNone
- | BlockState::RedstoneWire_SideSide_4UpUp
- | BlockState::RedstoneWire_SideSide_4UpSide
- | BlockState::RedstoneWire_SideSide_4UpNone
- | BlockState::RedstoneWire_SideSide_4SideUp
- | BlockState::RedstoneWire_SideSide_4SideSide
- | BlockState::RedstoneWire_SideSide_4SideNone
- | BlockState::RedstoneWire_SideSide_4NoneUp
- | BlockState::RedstoneWire_SideSide_4NoneSide
- | BlockState::RedstoneWire_SideSide_4NoneNone
- | BlockState::RedstoneWire_SideSide_5UpUp
- | BlockState::RedstoneWire_SideSide_5UpSide
- | BlockState::RedstoneWire_SideSide_5UpNone
- | BlockState::RedstoneWire_SideSide_5SideUp
- | BlockState::RedstoneWire_SideSide_5SideSide
- | BlockState::RedstoneWire_SideSide_5SideNone
- | BlockState::RedstoneWire_SideSide_5NoneUp
- | BlockState::RedstoneWire_SideSide_5NoneSide
- | BlockState::RedstoneWire_SideSide_5NoneNone
- | BlockState::RedstoneWire_SideSide_6UpUp
- | BlockState::RedstoneWire_SideSide_6UpSide
- | BlockState::RedstoneWire_SideSide_6UpNone
- | BlockState::RedstoneWire_SideSide_6SideUp
- | BlockState::RedstoneWire_SideSide_6SideSide
- | BlockState::RedstoneWire_SideSide_6SideNone
- | BlockState::RedstoneWire_SideSide_6NoneUp
- | BlockState::RedstoneWire_SideSide_6NoneSide
- | BlockState::RedstoneWire_SideSide_6NoneNone
- | BlockState::RedstoneWire_SideSide_7UpUp
- | BlockState::RedstoneWire_SideSide_7UpSide
- | BlockState::RedstoneWire_SideSide_7UpNone
- | BlockState::RedstoneWire_SideSide_7SideUp
- | BlockState::RedstoneWire_SideSide_7SideSide
- | BlockState::RedstoneWire_SideSide_7SideNone
- | BlockState::RedstoneWire_SideSide_7NoneUp
- | BlockState::RedstoneWire_SideSide_7NoneSide
- | BlockState::RedstoneWire_SideSide_7NoneNone
- | BlockState::RedstoneWire_SideSide_8UpUp
- | BlockState::RedstoneWire_SideSide_8UpSide
- | BlockState::RedstoneWire_SideSide_8UpNone
- | BlockState::RedstoneWire_SideSide_8SideUp
- | BlockState::RedstoneWire_SideSide_8SideSide
- | BlockState::RedstoneWire_SideSide_8SideNone
- | BlockState::RedstoneWire_SideSide_8NoneUp
- | BlockState::RedstoneWire_SideSide_8NoneSide
- | BlockState::RedstoneWire_SideSide_8NoneNone
- | BlockState::RedstoneWire_SideSide_9UpUp
- | BlockState::RedstoneWire_SideSide_9UpSide
- | BlockState::RedstoneWire_SideSide_9UpNone
- | BlockState::RedstoneWire_SideSide_9SideUp
- | BlockState::RedstoneWire_SideSide_9SideSide
- | BlockState::RedstoneWire_SideSide_9SideNone
- | BlockState::RedstoneWire_SideSide_9NoneUp
- | BlockState::RedstoneWire_SideSide_9NoneSide
- | BlockState::RedstoneWire_SideSide_9NoneNone
- | BlockState::RedstoneWire_SideSide_10UpUp
- | BlockState::RedstoneWire_SideSide_10UpSide
- | BlockState::RedstoneWire_SideSide_10UpNone
- | BlockState::RedstoneWire_SideSide_10SideUp
- | BlockState::RedstoneWire_SideSide_10SideSide
- | BlockState::RedstoneWire_SideSide_10SideNone
- | BlockState::RedstoneWire_SideSide_10NoneUp
- | BlockState::RedstoneWire_SideSide_10NoneSide
- | BlockState::RedstoneWire_SideSide_10NoneNone
- | BlockState::RedstoneWire_SideSide_11UpUp
- | BlockState::RedstoneWire_SideSide_11UpSide
- | BlockState::RedstoneWire_SideSide_11UpNone
- | BlockState::RedstoneWire_SideSide_11SideUp
- | BlockState::RedstoneWire_SideSide_11SideSide
- | BlockState::RedstoneWire_SideSide_11SideNone
- | BlockState::RedstoneWire_SideSide_11NoneUp
- | BlockState::RedstoneWire_SideSide_11NoneSide
- | BlockState::RedstoneWire_SideSide_11NoneNone
- | BlockState::RedstoneWire_SideSide_12UpUp
- | BlockState::RedstoneWire_SideSide_12UpSide
- | BlockState::RedstoneWire_SideSide_12UpNone
- | BlockState::RedstoneWire_SideSide_12SideUp
- | BlockState::RedstoneWire_SideSide_12SideSide
- | BlockState::RedstoneWire_SideSide_12SideNone
- | BlockState::RedstoneWire_SideSide_12NoneUp
- | BlockState::RedstoneWire_SideSide_12NoneSide
- | BlockState::RedstoneWire_SideSide_12NoneNone
- | BlockState::RedstoneWire_SideSide_13UpUp
- | BlockState::RedstoneWire_SideSide_13UpSide
- | BlockState::RedstoneWire_SideSide_13UpNone
- | BlockState::RedstoneWire_SideSide_13SideUp
- | BlockState::RedstoneWire_SideSide_13SideSide
- | BlockState::RedstoneWire_SideSide_13SideNone
- | BlockState::RedstoneWire_SideSide_13NoneUp
- | BlockState::RedstoneWire_SideSide_13NoneSide
- | BlockState::RedstoneWire_SideSide_13NoneNone
- | BlockState::RedstoneWire_SideSide_14UpUp
- | BlockState::RedstoneWire_SideSide_14UpSide
- | BlockState::RedstoneWire_SideSide_14UpNone
- | BlockState::RedstoneWire_SideSide_14SideUp
- | BlockState::RedstoneWire_SideSide_14SideSide
- | BlockState::RedstoneWire_SideSide_14SideNone
- | BlockState::RedstoneWire_SideSide_14NoneUp
- | BlockState::RedstoneWire_SideSide_14NoneSide
- | BlockState::RedstoneWire_SideSide_14NoneNone
- | BlockState::RedstoneWire_SideSide_15UpUp
- | BlockState::RedstoneWire_SideSide_15UpSide
- | BlockState::RedstoneWire_SideSide_15UpNone
- | BlockState::RedstoneWire_SideSide_15SideUp
- | BlockState::RedstoneWire_SideSide_15SideSide
- | BlockState::RedstoneWire_SideSide_15SideNone
- | BlockState::RedstoneWire_SideSide_15NoneUp
- | BlockState::RedstoneWire_SideSide_15NoneSide
- | BlockState::RedstoneWire_SideSide_15NoneNone
- | BlockState::RedstoneWire_SideNone_0UpUp
- | BlockState::RedstoneWire_SideNone_0UpSide
- | BlockState::RedstoneWire_SideNone_0UpNone
- | BlockState::RedstoneWire_SideNone_0SideUp
- | BlockState::RedstoneWire_SideNone_0SideSide
- | BlockState::RedstoneWire_SideNone_0SideNone
- | BlockState::RedstoneWire_SideNone_0NoneUp
- | BlockState::RedstoneWire_SideNone_0NoneSide
- | BlockState::RedstoneWire_SideNone_0NoneNone
- | BlockState::RedstoneWire_SideNone_1UpUp
- | BlockState::RedstoneWire_SideNone_1UpSide
- | BlockState::RedstoneWire_SideNone_1UpNone
- | BlockState::RedstoneWire_SideNone_1SideUp
- | BlockState::RedstoneWire_SideNone_1SideSide
- | BlockState::RedstoneWire_SideNone_1SideNone
- | BlockState::RedstoneWire_SideNone_1NoneUp
- | BlockState::RedstoneWire_SideNone_1NoneSide
- | BlockState::RedstoneWire_SideNone_1NoneNone
- | BlockState::RedstoneWire_SideNone_2UpUp
- | BlockState::RedstoneWire_SideNone_2UpSide
- | BlockState::RedstoneWire_SideNone_2UpNone
- | BlockState::RedstoneWire_SideNone_2SideUp
- | BlockState::RedstoneWire_SideNone_2SideSide
- | BlockState::RedstoneWire_SideNone_2SideNone
- | BlockState::RedstoneWire_SideNone_2NoneUp
- | BlockState::RedstoneWire_SideNone_2NoneSide
- | BlockState::RedstoneWire_SideNone_2NoneNone
- | BlockState::RedstoneWire_SideNone_3UpUp
- | BlockState::RedstoneWire_SideNone_3UpSide
- | BlockState::RedstoneWire_SideNone_3UpNone
- | BlockState::RedstoneWire_SideNone_3SideUp
- | BlockState::RedstoneWire_SideNone_3SideSide
- | BlockState::RedstoneWire_SideNone_3SideNone
- | BlockState::RedstoneWire_SideNone_3NoneUp
- | BlockState::RedstoneWire_SideNone_3NoneSide
- | BlockState::RedstoneWire_SideNone_3NoneNone
- | BlockState::RedstoneWire_SideNone_4UpUp
- | BlockState::RedstoneWire_SideNone_4UpSide
- | BlockState::RedstoneWire_SideNone_4UpNone
- | BlockState::RedstoneWire_SideNone_4SideUp
- | BlockState::RedstoneWire_SideNone_4SideSide
- | BlockState::RedstoneWire_SideNone_4SideNone
- | BlockState::RedstoneWire_SideNone_4NoneUp
- | BlockState::RedstoneWire_SideNone_4NoneSide
- | BlockState::RedstoneWire_SideNone_4NoneNone
- | BlockState::RedstoneWire_SideNone_5UpUp
- | BlockState::RedstoneWire_SideNone_5UpSide
- | BlockState::RedstoneWire_SideNone_5UpNone
- | BlockState::RedstoneWire_SideNone_5SideUp
- | BlockState::RedstoneWire_SideNone_5SideSide
- | BlockState::RedstoneWire_SideNone_5SideNone
- | BlockState::RedstoneWire_SideNone_5NoneUp
- | BlockState::RedstoneWire_SideNone_5NoneSide
- | BlockState::RedstoneWire_SideNone_5NoneNone
- | BlockState::RedstoneWire_SideNone_6UpUp
- | BlockState::RedstoneWire_SideNone_6UpSide
- | BlockState::RedstoneWire_SideNone_6UpNone
- | BlockState::RedstoneWire_SideNone_6SideUp
- | BlockState::RedstoneWire_SideNone_6SideSide
- | BlockState::RedstoneWire_SideNone_6SideNone
- | BlockState::RedstoneWire_SideNone_6NoneUp
- | BlockState::RedstoneWire_SideNone_6NoneSide
- | BlockState::RedstoneWire_SideNone_6NoneNone
- | BlockState::RedstoneWire_SideNone_7UpUp
- | BlockState::RedstoneWire_SideNone_7UpSide
- | BlockState::RedstoneWire_SideNone_7UpNone
- | BlockState::RedstoneWire_SideNone_7SideUp
- | BlockState::RedstoneWire_SideNone_7SideSide
- | BlockState::RedstoneWire_SideNone_7SideNone
- | BlockState::RedstoneWire_SideNone_7NoneUp
- | BlockState::RedstoneWire_SideNone_7NoneSide
- | BlockState::RedstoneWire_SideNone_7NoneNone
- | BlockState::RedstoneWire_SideNone_8UpUp
- | BlockState::RedstoneWire_SideNone_8UpSide
- | BlockState::RedstoneWire_SideNone_8UpNone
- | BlockState::RedstoneWire_SideNone_8SideUp
- | BlockState::RedstoneWire_SideNone_8SideSide
- | BlockState::RedstoneWire_SideNone_8SideNone
- | BlockState::RedstoneWire_SideNone_8NoneUp
- | BlockState::RedstoneWire_SideNone_8NoneSide
- | BlockState::RedstoneWire_SideNone_8NoneNone
- | BlockState::RedstoneWire_SideNone_9UpUp
- | BlockState::RedstoneWire_SideNone_9UpSide
- | BlockState::RedstoneWire_SideNone_9UpNone
- | BlockState::RedstoneWire_SideNone_9SideUp
- | BlockState::RedstoneWire_SideNone_9SideSide
- | BlockState::RedstoneWire_SideNone_9SideNone
- | BlockState::RedstoneWire_SideNone_9NoneUp
- | BlockState::RedstoneWire_SideNone_9NoneSide
- | BlockState::RedstoneWire_SideNone_9NoneNone
- | BlockState::RedstoneWire_SideNone_10UpUp
- | BlockState::RedstoneWire_SideNone_10UpSide
- | BlockState::RedstoneWire_SideNone_10UpNone
- | BlockState::RedstoneWire_SideNone_10SideUp
- | BlockState::RedstoneWire_SideNone_10SideSide
- | BlockState::RedstoneWire_SideNone_10SideNone
- | BlockState::RedstoneWire_SideNone_10NoneUp
- | BlockState::RedstoneWire_SideNone_10NoneSide
- | BlockState::RedstoneWire_SideNone_10NoneNone
- | BlockState::RedstoneWire_SideNone_11UpUp
- | BlockState::RedstoneWire_SideNone_11UpSide
- | BlockState::RedstoneWire_SideNone_11UpNone
- | BlockState::RedstoneWire_SideNone_11SideUp
- | BlockState::RedstoneWire_SideNone_11SideSide
- | BlockState::RedstoneWire_SideNone_11SideNone
- | BlockState::RedstoneWire_SideNone_11NoneUp
- | BlockState::RedstoneWire_SideNone_11NoneSide
- | BlockState::RedstoneWire_SideNone_11NoneNone
- | BlockState::RedstoneWire_SideNone_12UpUp
- | BlockState::RedstoneWire_SideNone_12UpSide
- | BlockState::RedstoneWire_SideNone_12UpNone
- | BlockState::RedstoneWire_SideNone_12SideUp
- | BlockState::RedstoneWire_SideNone_12SideSide
- | BlockState::RedstoneWire_SideNone_12SideNone
- | BlockState::RedstoneWire_SideNone_12NoneUp
- | BlockState::RedstoneWire_SideNone_12NoneSide
- | BlockState::RedstoneWire_SideNone_12NoneNone
- | BlockState::RedstoneWire_SideNone_13UpUp
- | BlockState::RedstoneWire_SideNone_13UpSide
- | BlockState::RedstoneWire_SideNone_13UpNone
- | BlockState::RedstoneWire_SideNone_13SideUp
- | BlockState::RedstoneWire_SideNone_13SideSide
- | BlockState::RedstoneWire_SideNone_13SideNone
- | BlockState::RedstoneWire_SideNone_13NoneUp
- | BlockState::RedstoneWire_SideNone_13NoneSide
- | BlockState::RedstoneWire_SideNone_13NoneNone
- | BlockState::RedstoneWire_SideNone_14UpUp
- | BlockState::RedstoneWire_SideNone_14UpSide
- | BlockState::RedstoneWire_SideNone_14UpNone
- | BlockState::RedstoneWire_SideNone_14SideUp
- | BlockState::RedstoneWire_SideNone_14SideSide
- | BlockState::RedstoneWire_SideNone_14SideNone
- | BlockState::RedstoneWire_SideNone_14NoneUp
- | BlockState::RedstoneWire_SideNone_14NoneSide
- | BlockState::RedstoneWire_SideNone_14NoneNone
- | BlockState::RedstoneWire_SideNone_15UpUp
- | BlockState::RedstoneWire_SideNone_15UpSide
- | BlockState::RedstoneWire_SideNone_15UpNone
- | BlockState::RedstoneWire_SideNone_15SideUp
- | BlockState::RedstoneWire_SideNone_15SideSide
- | BlockState::RedstoneWire_SideNone_15SideNone
- | BlockState::RedstoneWire_SideNone_15NoneUp
- | BlockState::RedstoneWire_SideNone_15NoneSide
- | BlockState::RedstoneWire_SideNone_15NoneNone
- | BlockState::RedstoneWire_NoneUp_0UpUp
- | BlockState::RedstoneWire_NoneUp_0UpSide
- | BlockState::RedstoneWire_NoneUp_0UpNone
- | BlockState::RedstoneWire_NoneUp_0SideUp
- | BlockState::RedstoneWire_NoneUp_0SideSide
- | BlockState::RedstoneWire_NoneUp_0SideNone
- | BlockState::RedstoneWire_NoneUp_0NoneUp
- | BlockState::RedstoneWire_NoneUp_0NoneSide
- | BlockState::RedstoneWire_NoneUp_0NoneNone
- | BlockState::RedstoneWire_NoneUp_1UpUp
- | BlockState::RedstoneWire_NoneUp_1UpSide
- | BlockState::RedstoneWire_NoneUp_1UpNone
- | BlockState::RedstoneWire_NoneUp_1SideUp
- | BlockState::RedstoneWire_NoneUp_1SideSide
- | BlockState::RedstoneWire_NoneUp_1SideNone
- | BlockState::RedstoneWire_NoneUp_1NoneUp
- | BlockState::RedstoneWire_NoneUp_1NoneSide
- | BlockState::RedstoneWire_NoneUp_1NoneNone
- | BlockState::RedstoneWire_NoneUp_2UpUp
- | BlockState::RedstoneWire_NoneUp_2UpSide
- | BlockState::RedstoneWire_NoneUp_2UpNone
- | BlockState::RedstoneWire_NoneUp_2SideUp
- | BlockState::RedstoneWire_NoneUp_2SideSide
- | BlockState::RedstoneWire_NoneUp_2SideNone
- | BlockState::RedstoneWire_NoneUp_2NoneUp
- | BlockState::RedstoneWire_NoneUp_2NoneSide
- | BlockState::RedstoneWire_NoneUp_2NoneNone
- | BlockState::RedstoneWire_NoneUp_3UpUp
- | BlockState::RedstoneWire_NoneUp_3UpSide
- | BlockState::RedstoneWire_NoneUp_3UpNone
- | BlockState::RedstoneWire_NoneUp_3SideUp
- | BlockState::RedstoneWire_NoneUp_3SideSide
- | BlockState::RedstoneWire_NoneUp_3SideNone
- | BlockState::RedstoneWire_NoneUp_3NoneUp
- | BlockState::RedstoneWire_NoneUp_3NoneSide
- | BlockState::RedstoneWire_NoneUp_3NoneNone
- | BlockState::RedstoneWire_NoneUp_4UpUp
- | BlockState::RedstoneWire_NoneUp_4UpSide
- | BlockState::RedstoneWire_NoneUp_4UpNone
- | BlockState::RedstoneWire_NoneUp_4SideUp
- | BlockState::RedstoneWire_NoneUp_4SideSide
- | BlockState::RedstoneWire_NoneUp_4SideNone
- | BlockState::RedstoneWire_NoneUp_4NoneUp
- | BlockState::RedstoneWire_NoneUp_4NoneSide
- | BlockState::RedstoneWire_NoneUp_4NoneNone
- | BlockState::RedstoneWire_NoneUp_5UpUp
- | BlockState::RedstoneWire_NoneUp_5UpSide
- | BlockState::RedstoneWire_NoneUp_5UpNone
- | BlockState::RedstoneWire_NoneUp_5SideUp
- | BlockState::RedstoneWire_NoneUp_5SideSide
- | BlockState::RedstoneWire_NoneUp_5SideNone
- | BlockState::RedstoneWire_NoneUp_5NoneUp
- | BlockState::RedstoneWire_NoneUp_5NoneSide
- | BlockState::RedstoneWire_NoneUp_5NoneNone
- | BlockState::RedstoneWire_NoneUp_6UpUp
- | BlockState::RedstoneWire_NoneUp_6UpSide
- | BlockState::RedstoneWire_NoneUp_6UpNone
- | BlockState::RedstoneWire_NoneUp_6SideUp
- | BlockState::RedstoneWire_NoneUp_6SideSide
- | BlockState::RedstoneWire_NoneUp_6SideNone
- | BlockState::RedstoneWire_NoneUp_6NoneUp
- | BlockState::RedstoneWire_NoneUp_6NoneSide
- | BlockState::RedstoneWire_NoneUp_6NoneNone
- | BlockState::RedstoneWire_NoneUp_7UpUp
- | BlockState::RedstoneWire_NoneUp_7UpSide
- | BlockState::RedstoneWire_NoneUp_7UpNone
- | BlockState::RedstoneWire_NoneUp_7SideUp
- | BlockState::RedstoneWire_NoneUp_7SideSide
- | BlockState::RedstoneWire_NoneUp_7SideNone
- | BlockState::RedstoneWire_NoneUp_7NoneUp
- | BlockState::RedstoneWire_NoneUp_7NoneSide
- | BlockState::RedstoneWire_NoneUp_7NoneNone
- | BlockState::RedstoneWire_NoneUp_8UpUp
- | BlockState::RedstoneWire_NoneUp_8UpSide
- | BlockState::RedstoneWire_NoneUp_8UpNone
- | BlockState::RedstoneWire_NoneUp_8SideUp
- | BlockState::RedstoneWire_NoneUp_8SideSide
- | BlockState::RedstoneWire_NoneUp_8SideNone
- | BlockState::RedstoneWire_NoneUp_8NoneUp
- | BlockState::RedstoneWire_NoneUp_8NoneSide
- | BlockState::RedstoneWire_NoneUp_8NoneNone
- | BlockState::RedstoneWire_NoneUp_9UpUp
- | BlockState::RedstoneWire_NoneUp_9UpSide
- | BlockState::RedstoneWire_NoneUp_9UpNone
- | BlockState::RedstoneWire_NoneUp_9SideUp
- | BlockState::RedstoneWire_NoneUp_9SideSide
- | BlockState::RedstoneWire_NoneUp_9SideNone
- | BlockState::RedstoneWire_NoneUp_9NoneUp
- | BlockState::RedstoneWire_NoneUp_9NoneSide
- | BlockState::RedstoneWire_NoneUp_9NoneNone
- | BlockState::RedstoneWire_NoneUp_10UpUp
- | BlockState::RedstoneWire_NoneUp_10UpSide
- | BlockState::RedstoneWire_NoneUp_10UpNone
- | BlockState::RedstoneWire_NoneUp_10SideUp
- | BlockState::RedstoneWire_NoneUp_10SideSide
- | BlockState::RedstoneWire_NoneUp_10SideNone
- | BlockState::RedstoneWire_NoneUp_10NoneUp
- | BlockState::RedstoneWire_NoneUp_10NoneSide
- | BlockState::RedstoneWire_NoneUp_10NoneNone
- | BlockState::RedstoneWire_NoneUp_11UpUp
- | BlockState::RedstoneWire_NoneUp_11UpSide
- | BlockState::RedstoneWire_NoneUp_11UpNone
- | BlockState::RedstoneWire_NoneUp_11SideUp
- | BlockState::RedstoneWire_NoneUp_11SideSide
- | BlockState::RedstoneWire_NoneUp_11SideNone
- | BlockState::RedstoneWire_NoneUp_11NoneUp
- | BlockState::RedstoneWire_NoneUp_11NoneSide
- | BlockState::RedstoneWire_NoneUp_11NoneNone
- | BlockState::RedstoneWire_NoneUp_12UpUp
- | BlockState::RedstoneWire_NoneUp_12UpSide
- | BlockState::RedstoneWire_NoneUp_12UpNone
- | BlockState::RedstoneWire_NoneUp_12SideUp
- | BlockState::RedstoneWire_NoneUp_12SideSide
- | BlockState::RedstoneWire_NoneUp_12SideNone
- | BlockState::RedstoneWire_NoneUp_12NoneUp
- | BlockState::RedstoneWire_NoneUp_12NoneSide
- | BlockState::RedstoneWire_NoneUp_12NoneNone
- | BlockState::RedstoneWire_NoneUp_13UpUp
- | BlockState::RedstoneWire_NoneUp_13UpSide
- | BlockState::RedstoneWire_NoneUp_13UpNone
- | BlockState::RedstoneWire_NoneUp_13SideUp
- | BlockState::RedstoneWire_NoneUp_13SideSide
- | BlockState::RedstoneWire_NoneUp_13SideNone
- | BlockState::RedstoneWire_NoneUp_13NoneUp
- | BlockState::RedstoneWire_NoneUp_13NoneSide
- | BlockState::RedstoneWire_NoneUp_13NoneNone
- | BlockState::RedstoneWire_NoneUp_14UpUp
- | BlockState::RedstoneWire_NoneUp_14UpSide
- | BlockState::RedstoneWire_NoneUp_14UpNone
- | BlockState::RedstoneWire_NoneUp_14SideUp
- | BlockState::RedstoneWire_NoneUp_14SideSide
- | BlockState::RedstoneWire_NoneUp_14SideNone
- | BlockState::RedstoneWire_NoneUp_14NoneUp
- | BlockState::RedstoneWire_NoneUp_14NoneSide
- | BlockState::RedstoneWire_NoneUp_14NoneNone
- | BlockState::RedstoneWire_NoneUp_15UpUp
- | BlockState::RedstoneWire_NoneUp_15UpSide
- | BlockState::RedstoneWire_NoneUp_15UpNone
- | BlockState::RedstoneWire_NoneUp_15SideUp
- | BlockState::RedstoneWire_NoneUp_15SideSide
- | BlockState::RedstoneWire_NoneUp_15SideNone
- | BlockState::RedstoneWire_NoneUp_15NoneUp
- | BlockState::RedstoneWire_NoneUp_15NoneSide
- | BlockState::RedstoneWire_NoneUp_15NoneNone
- | BlockState::RedstoneWire_NoneSide_0UpUp
- | BlockState::RedstoneWire_NoneSide_0UpSide
- | BlockState::RedstoneWire_NoneSide_0UpNone
- | BlockState::RedstoneWire_NoneSide_0SideUp
- | BlockState::RedstoneWire_NoneSide_0SideSide
- | BlockState::RedstoneWire_NoneSide_0SideNone
- | BlockState::RedstoneWire_NoneSide_0NoneUp
- | BlockState::RedstoneWire_NoneSide_0NoneSide
- | BlockState::RedstoneWire_NoneSide_0NoneNone
- | BlockState::RedstoneWire_NoneSide_1UpUp
- | BlockState::RedstoneWire_NoneSide_1UpSide
- | BlockState::RedstoneWire_NoneSide_1UpNone
- | BlockState::RedstoneWire_NoneSide_1SideUp
- | BlockState::RedstoneWire_NoneSide_1SideSide
- | BlockState::RedstoneWire_NoneSide_1SideNone
- | BlockState::RedstoneWire_NoneSide_1NoneUp
- | BlockState::RedstoneWire_NoneSide_1NoneSide
- | BlockState::RedstoneWire_NoneSide_1NoneNone
- | BlockState::RedstoneWire_NoneSide_2UpUp
- | BlockState::RedstoneWire_NoneSide_2UpSide
- | BlockState::RedstoneWire_NoneSide_2UpNone
- | BlockState::RedstoneWire_NoneSide_2SideUp
- | BlockState::RedstoneWire_NoneSide_2SideSide
- | BlockState::RedstoneWire_NoneSide_2SideNone
- | BlockState::RedstoneWire_NoneSide_2NoneUp
- | BlockState::RedstoneWire_NoneSide_2NoneSide
- | BlockState::RedstoneWire_NoneSide_2NoneNone
- | BlockState::RedstoneWire_NoneSide_3UpUp
- | BlockState::RedstoneWire_NoneSide_3UpSide
- | BlockState::RedstoneWire_NoneSide_3UpNone
- | BlockState::RedstoneWire_NoneSide_3SideUp
- | BlockState::RedstoneWire_NoneSide_3SideSide
- | BlockState::RedstoneWire_NoneSide_3SideNone
- | BlockState::RedstoneWire_NoneSide_3NoneUp
- | BlockState::RedstoneWire_NoneSide_3NoneSide
- | BlockState::RedstoneWire_NoneSide_3NoneNone
- | BlockState::RedstoneWire_NoneSide_4UpUp
- | BlockState::RedstoneWire_NoneSide_4UpSide
- | BlockState::RedstoneWire_NoneSide_4UpNone
- | BlockState::RedstoneWire_NoneSide_4SideUp
- | BlockState::RedstoneWire_NoneSide_4SideSide
- | BlockState::RedstoneWire_NoneSide_4SideNone
- | BlockState::RedstoneWire_NoneSide_4NoneUp
- | BlockState::RedstoneWire_NoneSide_4NoneSide
- | BlockState::RedstoneWire_NoneSide_4NoneNone
- | BlockState::RedstoneWire_NoneSide_5UpUp
- | BlockState::RedstoneWire_NoneSide_5UpSide
- | BlockState::RedstoneWire_NoneSide_5UpNone
- | BlockState::RedstoneWire_NoneSide_5SideUp
- | BlockState::RedstoneWire_NoneSide_5SideSide
- | BlockState::RedstoneWire_NoneSide_5SideNone
- | BlockState::RedstoneWire_NoneSide_5NoneUp
- | BlockState::RedstoneWire_NoneSide_5NoneSide
- | BlockState::RedstoneWire_NoneSide_5NoneNone
- | BlockState::RedstoneWire_NoneSide_6UpUp
- | BlockState::RedstoneWire_NoneSide_6UpSide
- | BlockState::RedstoneWire_NoneSide_6UpNone
- | BlockState::RedstoneWire_NoneSide_6SideUp
- | BlockState::RedstoneWire_NoneSide_6SideSide
- | BlockState::RedstoneWire_NoneSide_6SideNone
- | BlockState::RedstoneWire_NoneSide_6NoneUp
- | BlockState::RedstoneWire_NoneSide_6NoneSide
- | BlockState::RedstoneWire_NoneSide_6NoneNone
- | BlockState::RedstoneWire_NoneSide_7UpUp
- | BlockState::RedstoneWire_NoneSide_7UpSide
- | BlockState::RedstoneWire_NoneSide_7UpNone
- | BlockState::RedstoneWire_NoneSide_7SideUp
- | BlockState::RedstoneWire_NoneSide_7SideSide
- | BlockState::RedstoneWire_NoneSide_7SideNone
- | BlockState::RedstoneWire_NoneSide_7NoneUp
- | BlockState::RedstoneWire_NoneSide_7NoneSide
- | BlockState::RedstoneWire_NoneSide_7NoneNone
- | BlockState::RedstoneWire_NoneSide_8UpUp
- | BlockState::RedstoneWire_NoneSide_8UpSide
- | BlockState::RedstoneWire_NoneSide_8UpNone
- | BlockState::RedstoneWire_NoneSide_8SideUp
- | BlockState::RedstoneWire_NoneSide_8SideSide
- | BlockState::RedstoneWire_NoneSide_8SideNone
- | BlockState::RedstoneWire_NoneSide_8NoneUp
- | BlockState::RedstoneWire_NoneSide_8NoneSide
- | BlockState::RedstoneWire_NoneSide_8NoneNone
- | BlockState::RedstoneWire_NoneSide_9UpUp
- | BlockState::RedstoneWire_NoneSide_9UpSide
- | BlockState::RedstoneWire_NoneSide_9UpNone
- | BlockState::RedstoneWire_NoneSide_9SideUp
- | BlockState::RedstoneWire_NoneSide_9SideSide
- | BlockState::RedstoneWire_NoneSide_9SideNone
- | BlockState::RedstoneWire_NoneSide_9NoneUp
- | BlockState::RedstoneWire_NoneSide_9NoneSide
- | BlockState::RedstoneWire_NoneSide_9NoneNone
- | BlockState::RedstoneWire_NoneSide_10UpUp
- | BlockState::RedstoneWire_NoneSide_10UpSide
- | BlockState::RedstoneWire_NoneSide_10UpNone
- | BlockState::RedstoneWire_NoneSide_10SideUp
- | BlockState::RedstoneWire_NoneSide_10SideSide
- | BlockState::RedstoneWire_NoneSide_10SideNone
- | BlockState::RedstoneWire_NoneSide_10NoneUp
- | BlockState::RedstoneWire_NoneSide_10NoneSide
- | BlockState::RedstoneWire_NoneSide_10NoneNone
- | BlockState::RedstoneWire_NoneSide_11UpUp
- | BlockState::RedstoneWire_NoneSide_11UpSide
- | BlockState::RedstoneWire_NoneSide_11UpNone
- | BlockState::RedstoneWire_NoneSide_11SideUp
- | BlockState::RedstoneWire_NoneSide_11SideSide
- | BlockState::RedstoneWire_NoneSide_11SideNone
- | BlockState::RedstoneWire_NoneSide_11NoneUp
- | BlockState::RedstoneWire_NoneSide_11NoneSide
- | BlockState::RedstoneWire_NoneSide_11NoneNone
- | BlockState::RedstoneWire_NoneSide_12UpUp
- | BlockState::RedstoneWire_NoneSide_12UpSide
- | BlockState::RedstoneWire_NoneSide_12UpNone
- | BlockState::RedstoneWire_NoneSide_12SideUp
- | BlockState::RedstoneWire_NoneSide_12SideSide
- | BlockState::RedstoneWire_NoneSide_12SideNone
- | BlockState::RedstoneWire_NoneSide_12NoneUp
- | BlockState::RedstoneWire_NoneSide_12NoneSide
- | BlockState::RedstoneWire_NoneSide_12NoneNone
- | BlockState::RedstoneWire_NoneSide_13UpUp
- | BlockState::RedstoneWire_NoneSide_13UpSide
- | BlockState::RedstoneWire_NoneSide_13UpNone
- | BlockState::RedstoneWire_NoneSide_13SideUp
- | BlockState::RedstoneWire_NoneSide_13SideSide
- | BlockState::RedstoneWire_NoneSide_13SideNone
- | BlockState::RedstoneWire_NoneSide_13NoneUp
- | BlockState::RedstoneWire_NoneSide_13NoneSide
- | BlockState::RedstoneWire_NoneSide_13NoneNone
- | BlockState::RedstoneWire_NoneSide_14UpUp
- | BlockState::RedstoneWire_NoneSide_14UpSide
- | BlockState::RedstoneWire_NoneSide_14UpNone
- | BlockState::RedstoneWire_NoneSide_14SideUp
- | BlockState::RedstoneWire_NoneSide_14SideSide
- | BlockState::RedstoneWire_NoneSide_14SideNone
- | BlockState::RedstoneWire_NoneSide_14NoneUp
- | BlockState::RedstoneWire_NoneSide_14NoneSide
- | BlockState::RedstoneWire_NoneSide_14NoneNone
- | BlockState::RedstoneWire_NoneSide_15UpUp
- | BlockState::RedstoneWire_NoneSide_15UpSide
- | BlockState::RedstoneWire_NoneSide_15UpNone
- | BlockState::RedstoneWire_NoneSide_15SideUp
- | BlockState::RedstoneWire_NoneSide_15SideSide
- | BlockState::RedstoneWire_NoneSide_15SideNone
- | BlockState::RedstoneWire_NoneSide_15NoneUp
- | BlockState::RedstoneWire_NoneSide_15NoneSide
- | BlockState::RedstoneWire_NoneSide_15NoneNone
- | BlockState::RedstoneWire_NoneNone_0UpUp
- | BlockState::RedstoneWire_NoneNone_0UpSide
- | BlockState::RedstoneWire_NoneNone_0UpNone
- | BlockState::RedstoneWire_NoneNone_0SideUp
- | BlockState::RedstoneWire_NoneNone_0SideSide
- | BlockState::RedstoneWire_NoneNone_0SideNone
- | BlockState::RedstoneWire_NoneNone_0NoneUp
- | BlockState::RedstoneWire_NoneNone_0NoneSide
- | BlockState::RedstoneWire_NoneNone_0NoneNone
- | BlockState::RedstoneWire_NoneNone_1UpUp
- | BlockState::RedstoneWire_NoneNone_1UpSide
- | BlockState::RedstoneWire_NoneNone_1UpNone
- | BlockState::RedstoneWire_NoneNone_1SideUp
- | BlockState::RedstoneWire_NoneNone_1SideSide
- | BlockState::RedstoneWire_NoneNone_1SideNone
- | BlockState::RedstoneWire_NoneNone_1NoneUp
- | BlockState::RedstoneWire_NoneNone_1NoneSide
- | BlockState::RedstoneWire_NoneNone_1NoneNone
- | BlockState::RedstoneWire_NoneNone_2UpUp
- | BlockState::RedstoneWire_NoneNone_2UpSide
- | BlockState::RedstoneWire_NoneNone_2UpNone
- | BlockState::RedstoneWire_NoneNone_2SideUp
- | BlockState::RedstoneWire_NoneNone_2SideSide
- | BlockState::RedstoneWire_NoneNone_2SideNone
- | BlockState::RedstoneWire_NoneNone_2NoneUp
- | BlockState::RedstoneWire_NoneNone_2NoneSide
- | BlockState::RedstoneWire_NoneNone_2NoneNone
- | BlockState::RedstoneWire_NoneNone_3UpUp
- | BlockState::RedstoneWire_NoneNone_3UpSide
- | BlockState::RedstoneWire_NoneNone_3UpNone
- | BlockState::RedstoneWire_NoneNone_3SideUp
- | BlockState::RedstoneWire_NoneNone_3SideSide
- | BlockState::RedstoneWire_NoneNone_3SideNone
- | BlockState::RedstoneWire_NoneNone_3NoneUp
- | BlockState::RedstoneWire_NoneNone_3NoneSide
- | BlockState::RedstoneWire_NoneNone_3NoneNone
- | BlockState::RedstoneWire_NoneNone_4UpUp
- | BlockState::RedstoneWire_NoneNone_4UpSide
- | BlockState::RedstoneWire_NoneNone_4UpNone
- | BlockState::RedstoneWire_NoneNone_4SideUp
- | BlockState::RedstoneWire_NoneNone_4SideSide
- | BlockState::RedstoneWire_NoneNone_4SideNone
- | BlockState::RedstoneWire_NoneNone_4NoneUp
- | BlockState::RedstoneWire_NoneNone_4NoneSide
- | BlockState::RedstoneWire_NoneNone_4NoneNone
- | BlockState::RedstoneWire_NoneNone_5UpUp
- | BlockState::RedstoneWire_NoneNone_5UpSide
- | BlockState::RedstoneWire_NoneNone_5UpNone
- | BlockState::RedstoneWire_NoneNone_5SideUp
- | BlockState::RedstoneWire_NoneNone_5SideSide
- | BlockState::RedstoneWire_NoneNone_5SideNone
- | BlockState::RedstoneWire_NoneNone_5NoneUp
- | BlockState::RedstoneWire_NoneNone_5NoneSide
- | BlockState::RedstoneWire_NoneNone_5NoneNone
- | BlockState::RedstoneWire_NoneNone_6UpUp
- | BlockState::RedstoneWire_NoneNone_6UpSide
- | BlockState::RedstoneWire_NoneNone_6UpNone
- | BlockState::RedstoneWire_NoneNone_6SideUp
- | BlockState::RedstoneWire_NoneNone_6SideSide
- | BlockState::RedstoneWire_NoneNone_6SideNone
- | BlockState::RedstoneWire_NoneNone_6NoneUp
- | BlockState::RedstoneWire_NoneNone_6NoneSide
- | BlockState::RedstoneWire_NoneNone_6NoneNone
- | BlockState::RedstoneWire_NoneNone_7UpUp
- | BlockState::RedstoneWire_NoneNone_7UpSide
- | BlockState::RedstoneWire_NoneNone_7UpNone
- | BlockState::RedstoneWire_NoneNone_7SideUp
- | BlockState::RedstoneWire_NoneNone_7SideSide
- | BlockState::RedstoneWire_NoneNone_7SideNone
- | BlockState::RedstoneWire_NoneNone_7NoneUp
- | BlockState::RedstoneWire_NoneNone_7NoneSide
- | BlockState::RedstoneWire_NoneNone_7NoneNone
- | BlockState::RedstoneWire_NoneNone_8UpUp
- | BlockState::RedstoneWire_NoneNone_8UpSide
- | BlockState::RedstoneWire_NoneNone_8UpNone
- | BlockState::RedstoneWire_NoneNone_8SideUp
- | BlockState::RedstoneWire_NoneNone_8SideSide
- | BlockState::RedstoneWire_NoneNone_8SideNone
- | BlockState::RedstoneWire_NoneNone_8NoneUp
- | BlockState::RedstoneWire_NoneNone_8NoneSide
- | BlockState::RedstoneWire_NoneNone_8NoneNone
- | BlockState::RedstoneWire_NoneNone_9UpUp
- | BlockState::RedstoneWire_NoneNone_9UpSide
- | BlockState::RedstoneWire_NoneNone_9UpNone
- | BlockState::RedstoneWire_NoneNone_9SideUp
- | BlockState::RedstoneWire_NoneNone_9SideSide
- | BlockState::RedstoneWire_NoneNone_9SideNone
- | BlockState::RedstoneWire_NoneNone_9NoneUp
- | BlockState::RedstoneWire_NoneNone_9NoneSide
- | BlockState::RedstoneWire_NoneNone_9NoneNone
- | BlockState::RedstoneWire_NoneNone_10UpUp
- | BlockState::RedstoneWire_NoneNone_10UpSide
- | BlockState::RedstoneWire_NoneNone_10UpNone
- | BlockState::RedstoneWire_NoneNone_10SideUp
- | BlockState::RedstoneWire_NoneNone_10SideSide
- | BlockState::RedstoneWire_NoneNone_10SideNone
- | BlockState::RedstoneWire_NoneNone_10NoneUp
- | BlockState::RedstoneWire_NoneNone_10NoneSide
- | BlockState::RedstoneWire_NoneNone_10NoneNone
- | BlockState::RedstoneWire_NoneNone_11UpUp
- | BlockState::RedstoneWire_NoneNone_11UpSide
- | BlockState::RedstoneWire_NoneNone_11UpNone
- | BlockState::RedstoneWire_NoneNone_11SideUp
- | BlockState::RedstoneWire_NoneNone_11SideSide
- | BlockState::RedstoneWire_NoneNone_11SideNone
- | BlockState::RedstoneWire_NoneNone_11NoneUp
- | BlockState::RedstoneWire_NoneNone_11NoneSide
- | BlockState::RedstoneWire_NoneNone_11NoneNone
- | BlockState::RedstoneWire_NoneNone_12UpUp
- | BlockState::RedstoneWire_NoneNone_12UpSide
- | BlockState::RedstoneWire_NoneNone_12UpNone
- | BlockState::RedstoneWire_NoneNone_12SideUp
- | BlockState::RedstoneWire_NoneNone_12SideSide
- | BlockState::RedstoneWire_NoneNone_12SideNone
- | BlockState::RedstoneWire_NoneNone_12NoneUp
- | BlockState::RedstoneWire_NoneNone_12NoneSide
- | BlockState::RedstoneWire_NoneNone_12NoneNone
- | BlockState::RedstoneWire_NoneNone_13UpUp
- | BlockState::RedstoneWire_NoneNone_13UpSide
- | BlockState::RedstoneWire_NoneNone_13UpNone
- | BlockState::RedstoneWire_NoneNone_13SideUp
- | BlockState::RedstoneWire_NoneNone_13SideSide
- | BlockState::RedstoneWire_NoneNone_13SideNone
- | BlockState::RedstoneWire_NoneNone_13NoneUp
- | BlockState::RedstoneWire_NoneNone_13NoneSide
- | BlockState::RedstoneWire_NoneNone_13NoneNone
- | BlockState::RedstoneWire_NoneNone_14UpUp
- | BlockState::RedstoneWire_NoneNone_14UpSide
- | BlockState::RedstoneWire_NoneNone_14UpNone
- | BlockState::RedstoneWire_NoneNone_14SideUp
- | BlockState::RedstoneWire_NoneNone_14SideSide
- | BlockState::RedstoneWire_NoneNone_14SideNone
- | BlockState::RedstoneWire_NoneNone_14NoneUp
- | BlockState::RedstoneWire_NoneNone_14NoneSide
- | BlockState::RedstoneWire_NoneNone_14NoneNone
- | BlockState::RedstoneWire_NoneNone_15UpUp
- | BlockState::RedstoneWire_NoneNone_15UpSide
- | BlockState::RedstoneWire_NoneNone_15UpNone
- | BlockState::RedstoneWire_NoneNone_15SideUp
- | BlockState::RedstoneWire_NoneNone_15SideSide
- | BlockState::RedstoneWire_NoneNone_15SideNone
- | BlockState::RedstoneWire_NoneNone_15NoneUp
- | BlockState::RedstoneWire_NoneNone_15NoneSide
- | BlockState::RedstoneWire_NoneNone_15NoneNone
- | BlockState::Wheat__0
- | BlockState::Wheat__1
- | BlockState::Wheat__2
- | BlockState::Wheat__3
- | BlockState::Wheat__4
- | BlockState::Wheat__5
- | BlockState::Wheat__6
- | BlockState::Wheat__7
- | BlockState::OakSign__0True
- | BlockState::OakSign__0False
- | BlockState::OakSign__1True
- | BlockState::OakSign__1False
- | BlockState::OakSign__2True
- | BlockState::OakSign__2False
- | BlockState::OakSign__3True
- | BlockState::OakSign__3False
- | BlockState::OakSign__4True
- | BlockState::OakSign__4False
- | BlockState::OakSign__5True
- | BlockState::OakSign__5False
- | BlockState::OakSign__6True
- | BlockState::OakSign__6False
- | BlockState::OakSign__7True
- | BlockState::OakSign__7False
- | BlockState::OakSign__8True
- | BlockState::OakSign__8False
- | BlockState::OakSign__9True
- | BlockState::OakSign__9False
- | BlockState::OakSign__10True
- | BlockState::OakSign__10False
- | BlockState::OakSign__11True
- | BlockState::OakSign__11False
- | BlockState::OakSign__12True
- | BlockState::OakSign__12False
- | BlockState::OakSign__13True
- | BlockState::OakSign__13False
- | BlockState::OakSign__14True
- | BlockState::OakSign__14False
- | BlockState::OakSign__15True
- | BlockState::OakSign__15False
- | BlockState::SpruceSign__0True
- | BlockState::SpruceSign__0False
- | BlockState::SpruceSign__1True
- | BlockState::SpruceSign__1False
- | BlockState::SpruceSign__2True
- | BlockState::SpruceSign__2False
- | BlockState::SpruceSign__3True
- | BlockState::SpruceSign__3False
- | BlockState::SpruceSign__4True
- | BlockState::SpruceSign__4False
- | BlockState::SpruceSign__5True
- | BlockState::SpruceSign__5False
- | BlockState::SpruceSign__6True
- | BlockState::SpruceSign__6False
- | BlockState::SpruceSign__7True
- | BlockState::SpruceSign__7False
- | BlockState::SpruceSign__8True
- | BlockState::SpruceSign__8False
- | BlockState::SpruceSign__9True
- | BlockState::SpruceSign__9False
- | BlockState::SpruceSign__10True
- | BlockState::SpruceSign__10False
- | BlockState::SpruceSign__11True
- | BlockState::SpruceSign__11False
- | BlockState::SpruceSign__12True
- | BlockState::SpruceSign__12False
- | BlockState::SpruceSign__13True
- | BlockState::SpruceSign__13False
- | BlockState::SpruceSign__14True
- | BlockState::SpruceSign__14False
- | BlockState::SpruceSign__15True
- | BlockState::SpruceSign__15False
- | BlockState::BirchSign__0True
- | BlockState::BirchSign__0False
- | BlockState::BirchSign__1True
- | BlockState::BirchSign__1False
- | BlockState::BirchSign__2True
- | BlockState::BirchSign__2False
- | BlockState::BirchSign__3True
- | BlockState::BirchSign__3False
- | BlockState::BirchSign__4True
- | BlockState::BirchSign__4False
- | BlockState::BirchSign__5True
- | BlockState::BirchSign__5False
- | BlockState::BirchSign__6True
- | BlockState::BirchSign__6False
- | BlockState::BirchSign__7True
- | BlockState::BirchSign__7False
- | BlockState::BirchSign__8True
- | BlockState::BirchSign__8False
- | BlockState::BirchSign__9True
- | BlockState::BirchSign__9False
- | BlockState::BirchSign__10True
- | BlockState::BirchSign__10False
- | BlockState::BirchSign__11True
- | BlockState::BirchSign__11False
- | BlockState::BirchSign__12True
- | BlockState::BirchSign__12False
- | BlockState::BirchSign__13True
- | BlockState::BirchSign__13False
- | BlockState::BirchSign__14True
- | BlockState::BirchSign__14False
- | BlockState::BirchSign__15True
- | BlockState::BirchSign__15False
- | BlockState::AcaciaSign__0True
- | BlockState::AcaciaSign__0False
- | BlockState::AcaciaSign__1True
- | BlockState::AcaciaSign__1False
- | BlockState::AcaciaSign__2True
- | BlockState::AcaciaSign__2False
- | BlockState::AcaciaSign__3True
- | BlockState::AcaciaSign__3False
- | BlockState::AcaciaSign__4True
- | BlockState::AcaciaSign__4False
- | BlockState::AcaciaSign__5True
- | BlockState::AcaciaSign__5False
- | BlockState::AcaciaSign__6True
- | BlockState::AcaciaSign__6False
- | BlockState::AcaciaSign__7True
- | BlockState::AcaciaSign__7False
- | BlockState::AcaciaSign__8True
- | BlockState::AcaciaSign__8False
- | BlockState::AcaciaSign__9True
- | BlockState::AcaciaSign__9False
- | BlockState::AcaciaSign__10True
- | BlockState::AcaciaSign__10False
- | BlockState::AcaciaSign__11True
- | BlockState::AcaciaSign__11False
- | BlockState::AcaciaSign__12True
- | BlockState::AcaciaSign__12False
- | BlockState::AcaciaSign__13True
- | BlockState::AcaciaSign__13False
- | BlockState::AcaciaSign__14True
- | BlockState::AcaciaSign__14False
- | BlockState::AcaciaSign__15True
- | BlockState::AcaciaSign__15False
- | BlockState::JungleSign__0True
- | BlockState::JungleSign__0False
- | BlockState::JungleSign__1True
- | BlockState::JungleSign__1False
- | BlockState::JungleSign__2True
- | BlockState::JungleSign__2False
- | BlockState::JungleSign__3True
- | BlockState::JungleSign__3False
- | BlockState::JungleSign__4True
- | BlockState::JungleSign__4False
- | BlockState::JungleSign__5True
- | BlockState::JungleSign__5False
- | BlockState::JungleSign__6True
- | BlockState::JungleSign__6False
- | BlockState::JungleSign__7True
- | BlockState::JungleSign__7False
- | BlockState::JungleSign__8True
- | BlockState::JungleSign__8False
- | BlockState::JungleSign__9True
- | BlockState::JungleSign__9False
- | BlockState::JungleSign__10True
- | BlockState::JungleSign__10False
- | BlockState::JungleSign__11True
- | BlockState::JungleSign__11False
- | BlockState::JungleSign__12True
- | BlockState::JungleSign__12False
- | BlockState::JungleSign__13True
- | BlockState::JungleSign__13False
- | BlockState::JungleSign__14True
- | BlockState::JungleSign__14False
- | BlockState::JungleSign__15True
- | BlockState::JungleSign__15False
- | BlockState::DarkOakSign__0True
- | BlockState::DarkOakSign__0False
- | BlockState::DarkOakSign__1True
- | BlockState::DarkOakSign__1False
- | BlockState::DarkOakSign__2True
- | BlockState::DarkOakSign__2False
- | BlockState::DarkOakSign__3True
- | BlockState::DarkOakSign__3False
- | BlockState::DarkOakSign__4True
- | BlockState::DarkOakSign__4False
- | BlockState::DarkOakSign__5True
- | BlockState::DarkOakSign__5False
- | BlockState::DarkOakSign__6True
- | BlockState::DarkOakSign__6False
- | BlockState::DarkOakSign__7True
- | BlockState::DarkOakSign__7False
- | BlockState::DarkOakSign__8True
- | BlockState::DarkOakSign__8False
- | BlockState::DarkOakSign__9True
- | BlockState::DarkOakSign__9False
- | BlockState::DarkOakSign__10True
- | BlockState::DarkOakSign__10False
- | BlockState::DarkOakSign__11True
- | BlockState::DarkOakSign__11False
- | BlockState::DarkOakSign__12True
- | BlockState::DarkOakSign__12False
- | BlockState::DarkOakSign__13True
- | BlockState::DarkOakSign__13False
- | BlockState::DarkOakSign__14True
- | BlockState::DarkOakSign__14False
- | BlockState::DarkOakSign__15True
- | BlockState::DarkOakSign__15False
- | BlockState::MangroveSign__0True
- | BlockState::MangroveSign__0False
- | BlockState::MangroveSign__1True
- | BlockState::MangroveSign__1False
- | BlockState::MangroveSign__2True
- | BlockState::MangroveSign__2False
- | BlockState::MangroveSign__3True
- | BlockState::MangroveSign__3False
- | BlockState::MangroveSign__4True
- | BlockState::MangroveSign__4False
- | BlockState::MangroveSign__5True
- | BlockState::MangroveSign__5False
- | BlockState::MangroveSign__6True
- | BlockState::MangroveSign__6False
- | BlockState::MangroveSign__7True
- | BlockState::MangroveSign__7False
- | BlockState::MangroveSign__8True
- | BlockState::MangroveSign__8False
- | BlockState::MangroveSign__9True
- | BlockState::MangroveSign__9False
- | BlockState::MangroveSign__10True
- | BlockState::MangroveSign__10False
- | BlockState::MangroveSign__11True
- | BlockState::MangroveSign__11False
- | BlockState::MangroveSign__12True
- | BlockState::MangroveSign__12False
- | BlockState::MangroveSign__13True
- | BlockState::MangroveSign__13False
- | BlockState::MangroveSign__14True
- | BlockState::MangroveSign__14False
- | BlockState::MangroveSign__15True
- | BlockState::MangroveSign__15False
- | BlockState::BambooSign__0True
- | BlockState::BambooSign__0False
- | BlockState::BambooSign__1True
- | BlockState::BambooSign__1False
- | BlockState::BambooSign__2True
- | BlockState::BambooSign__2False
- | BlockState::BambooSign__3True
- | BlockState::BambooSign__3False
- | BlockState::BambooSign__4True
- | BlockState::BambooSign__4False
- | BlockState::BambooSign__5True
- | BlockState::BambooSign__5False
- | BlockState::BambooSign__6True
- | BlockState::BambooSign__6False
- | BlockState::BambooSign__7True
- | BlockState::BambooSign__7False
- | BlockState::BambooSign__8True
- | BlockState::BambooSign__8False
- | BlockState::BambooSign__9True
- | BlockState::BambooSign__9False
- | BlockState::BambooSign__10True
- | BlockState::BambooSign__10False
- | BlockState::BambooSign__11True
- | BlockState::BambooSign__11False
- | BlockState::BambooSign__12True
- | BlockState::BambooSign__12False
- | BlockState::BambooSign__13True
- | BlockState::BambooSign__13False
- | BlockState::BambooSign__14True
- | BlockState::BambooSign__14False
- | BlockState::BambooSign__15True
- | BlockState::BambooSign__15False
- | BlockState::Rail_NorthSouthTrue
- | BlockState::Rail_NorthSouthFalse
- | BlockState::Rail_EastWestTrue
- | BlockState::Rail_EastWestFalse
- | BlockState::Rail_AscendingEastTrue
- | BlockState::Rail_AscendingEastFalse
- | BlockState::Rail_AscendingWestTrue
- | BlockState::Rail_AscendingWestFalse
- | BlockState::Rail_AscendingNorthTrue
- | BlockState::Rail_AscendingNorthFalse
- | BlockState::Rail_AscendingSouthTrue
- | BlockState::Rail_AscendingSouthFalse
- | BlockState::Rail_SouthEastTrue
- | BlockState::Rail_SouthEastFalse
- | BlockState::Rail_SouthWestTrue
- | BlockState::Rail_SouthWestFalse
- | BlockState::Rail_NorthWestTrue
- | BlockState::Rail_NorthWestFalse
- | BlockState::Rail_NorthEastTrue
- | BlockState::Rail_NorthEastFalse
- | BlockState::OakWallSign_NorthTrue
- | BlockState::OakWallSign_NorthFalse
- | BlockState::OakWallSign_SouthTrue
- | BlockState::OakWallSign_SouthFalse
- | BlockState::OakWallSign_WestTrue
- | BlockState::OakWallSign_WestFalse
- | BlockState::OakWallSign_EastTrue
- | BlockState::OakWallSign_EastFalse
- | BlockState::SpruceWallSign_NorthTrue
- | BlockState::SpruceWallSign_NorthFalse
- | BlockState::SpruceWallSign_SouthTrue
- | BlockState::SpruceWallSign_SouthFalse
- | BlockState::SpruceWallSign_WestTrue
- | BlockState::SpruceWallSign_WestFalse
- | BlockState::SpruceWallSign_EastTrue
- | BlockState::SpruceWallSign_EastFalse
- | BlockState::BirchWallSign_NorthTrue
- | BlockState::BirchWallSign_NorthFalse
- | BlockState::BirchWallSign_SouthTrue
- | BlockState::BirchWallSign_SouthFalse
- | BlockState::BirchWallSign_WestTrue
- | BlockState::BirchWallSign_WestFalse
- | BlockState::BirchWallSign_EastTrue
- | BlockState::BirchWallSign_EastFalse
- | BlockState::AcaciaWallSign_NorthTrue
- | BlockState::AcaciaWallSign_NorthFalse
- | BlockState::AcaciaWallSign_SouthTrue
- | BlockState::AcaciaWallSign_SouthFalse
- | BlockState::AcaciaWallSign_WestTrue
- | BlockState::AcaciaWallSign_WestFalse
- | BlockState::AcaciaWallSign_EastTrue
- | BlockState::AcaciaWallSign_EastFalse
- | BlockState::JungleWallSign_NorthTrue
- | BlockState::JungleWallSign_NorthFalse
- | BlockState::JungleWallSign_SouthTrue
- | BlockState::JungleWallSign_SouthFalse
- | BlockState::JungleWallSign_WestTrue
- | BlockState::JungleWallSign_WestFalse
- | BlockState::JungleWallSign_EastTrue
- | BlockState::JungleWallSign_EastFalse
- | BlockState::DarkOakWallSign_NorthTrue
- | BlockState::DarkOakWallSign_NorthFalse
- | BlockState::DarkOakWallSign_SouthTrue
- | BlockState::DarkOakWallSign_SouthFalse
- | BlockState::DarkOakWallSign_WestTrue
- | BlockState::DarkOakWallSign_WestFalse
- | BlockState::DarkOakWallSign_EastTrue
- | BlockState::DarkOakWallSign_EastFalse
- | BlockState::MangroveWallSign_NorthTrue
- | BlockState::MangroveWallSign_NorthFalse
- | BlockState::MangroveWallSign_SouthTrue
- | BlockState::MangroveWallSign_SouthFalse
- | BlockState::MangroveWallSign_WestTrue
- | BlockState::MangroveWallSign_WestFalse
- | BlockState::MangroveWallSign_EastTrue
- | BlockState::MangroveWallSign_EastFalse
- | BlockState::BambooWallSign_NorthTrue
- | BlockState::BambooWallSign_NorthFalse
- | BlockState::BambooWallSign_SouthTrue
- | BlockState::BambooWallSign_SouthFalse
- | BlockState::BambooWallSign_WestTrue
- | BlockState::BambooWallSign_WestFalse
- | BlockState::BambooWallSign_EastTrue
- | BlockState::BambooWallSign_EastFalse
- | BlockState::OakHangingSign_True_0True
- | BlockState::OakHangingSign_True_0False
- | BlockState::OakHangingSign_True_1True
- | BlockState::OakHangingSign_True_1False
- | BlockState::OakHangingSign_True_2True
- | BlockState::OakHangingSign_True_2False
- | BlockState::OakHangingSign_True_3True
- | BlockState::OakHangingSign_True_3False
- | BlockState::OakHangingSign_True_4True
- | BlockState::OakHangingSign_True_4False
- | BlockState::OakHangingSign_True_5True
- | BlockState::OakHangingSign_True_5False
- | BlockState::OakHangingSign_True_6True
- | BlockState::OakHangingSign_True_6False
- | BlockState::OakHangingSign_True_7True
- | BlockState::OakHangingSign_True_7False
- | BlockState::OakHangingSign_True_8True
- | BlockState::OakHangingSign_True_8False
- | BlockState::OakHangingSign_True_9True
- | BlockState::OakHangingSign_True_9False
- | BlockState::OakHangingSign_True_10True
- | BlockState::OakHangingSign_True_10False
- | BlockState::OakHangingSign_True_11True
- | BlockState::OakHangingSign_True_11False
- | BlockState::OakHangingSign_True_12True
- | BlockState::OakHangingSign_True_12False
- | BlockState::OakHangingSign_True_13True
- | BlockState::OakHangingSign_True_13False
- | BlockState::OakHangingSign_True_14True
- | BlockState::OakHangingSign_True_14False
- | BlockState::OakHangingSign_True_15True
- | BlockState::OakHangingSign_True_15False
- | BlockState::OakHangingSign_False_0True
- | BlockState::OakHangingSign_False_0False
- | BlockState::OakHangingSign_False_1True
- | BlockState::OakHangingSign_False_1False
- | BlockState::OakHangingSign_False_2True
- | BlockState::OakHangingSign_False_2False
- | BlockState::OakHangingSign_False_3True
- | BlockState::OakHangingSign_False_3False
- | BlockState::OakHangingSign_False_4True
- | BlockState::OakHangingSign_False_4False
- | BlockState::OakHangingSign_False_5True
- | BlockState::OakHangingSign_False_5False
- | BlockState::OakHangingSign_False_6True
- | BlockState::OakHangingSign_False_6False
- | BlockState::OakHangingSign_False_7True
- | BlockState::OakHangingSign_False_7False
- | BlockState::OakHangingSign_False_8True
- | BlockState::OakHangingSign_False_8False
- | BlockState::OakHangingSign_False_9True
- | BlockState::OakHangingSign_False_9False
- | BlockState::OakHangingSign_False_10True
- | BlockState::OakHangingSign_False_10False
- | BlockState::OakHangingSign_False_11True
- | BlockState::OakHangingSign_False_11False
- | BlockState::OakHangingSign_False_12True
- | BlockState::OakHangingSign_False_12False
- | BlockState::OakHangingSign_False_13True
- | BlockState::OakHangingSign_False_13False
- | BlockState::OakHangingSign_False_14True
- | BlockState::OakHangingSign_False_14False
- | BlockState::OakHangingSign_False_15True
- | BlockState::OakHangingSign_False_15False
- | BlockState::SpruceHangingSign_True_0True
- | BlockState::SpruceHangingSign_True_0False
- | BlockState::SpruceHangingSign_True_1True
- | BlockState::SpruceHangingSign_True_1False
- | BlockState::SpruceHangingSign_True_2True
- | BlockState::SpruceHangingSign_True_2False
- | BlockState::SpruceHangingSign_True_3True
- | BlockState::SpruceHangingSign_True_3False
- | BlockState::SpruceHangingSign_True_4True
- | BlockState::SpruceHangingSign_True_4False
- | BlockState::SpruceHangingSign_True_5True
- | BlockState::SpruceHangingSign_True_5False
- | BlockState::SpruceHangingSign_True_6True
- | BlockState::SpruceHangingSign_True_6False
- | BlockState::SpruceHangingSign_True_7True
- | BlockState::SpruceHangingSign_True_7False
- | BlockState::SpruceHangingSign_True_8True
- | BlockState::SpruceHangingSign_True_8False
- | BlockState::SpruceHangingSign_True_9True
- | BlockState::SpruceHangingSign_True_9False
- | BlockState::SpruceHangingSign_True_10True
- | BlockState::SpruceHangingSign_True_10False
- | BlockState::SpruceHangingSign_True_11True
- | BlockState::SpruceHangingSign_True_11False
- | BlockState::SpruceHangingSign_True_12True
- | BlockState::SpruceHangingSign_True_12False
- | BlockState::SpruceHangingSign_True_13True
- | BlockState::SpruceHangingSign_True_13False
- | BlockState::SpruceHangingSign_True_14True
- | BlockState::SpruceHangingSign_True_14False
- | BlockState::SpruceHangingSign_True_15True
- | BlockState::SpruceHangingSign_True_15False
- | BlockState::SpruceHangingSign_False_0True
- | BlockState::SpruceHangingSign_False_0False
- | BlockState::SpruceHangingSign_False_1True
- | BlockState::SpruceHangingSign_False_1False
- | BlockState::SpruceHangingSign_False_2True
- | BlockState::SpruceHangingSign_False_2False
- | BlockState::SpruceHangingSign_False_3True
- | BlockState::SpruceHangingSign_False_3False
- | BlockState::SpruceHangingSign_False_4True
- | BlockState::SpruceHangingSign_False_4False
- | BlockState::SpruceHangingSign_False_5True
- | BlockState::SpruceHangingSign_False_5False
- | BlockState::SpruceHangingSign_False_6True
- | BlockState::SpruceHangingSign_False_6False
- | BlockState::SpruceHangingSign_False_7True
- | BlockState::SpruceHangingSign_False_7False
- | BlockState::SpruceHangingSign_False_8True
- | BlockState::SpruceHangingSign_False_8False
- | BlockState::SpruceHangingSign_False_9True
- | BlockState::SpruceHangingSign_False_9False
- | BlockState::SpruceHangingSign_False_10True
- | BlockState::SpruceHangingSign_False_10False
- | BlockState::SpruceHangingSign_False_11True
- | BlockState::SpruceHangingSign_False_11False
- | BlockState::SpruceHangingSign_False_12True
- | BlockState::SpruceHangingSign_False_12False
- | BlockState::SpruceHangingSign_False_13True
- | BlockState::SpruceHangingSign_False_13False
- | BlockState::SpruceHangingSign_False_14True
- | BlockState::SpruceHangingSign_False_14False
- | BlockState::SpruceHangingSign_False_15True
- | BlockState::SpruceHangingSign_False_15False
- | BlockState::BirchHangingSign_True_0True
- | BlockState::BirchHangingSign_True_0False
- | BlockState::BirchHangingSign_True_1True
- | BlockState::BirchHangingSign_True_1False
- | BlockState::BirchHangingSign_True_2True
- | BlockState::BirchHangingSign_True_2False
- | BlockState::BirchHangingSign_True_3True
- | BlockState::BirchHangingSign_True_3False
- | BlockState::BirchHangingSign_True_4True
- | BlockState::BirchHangingSign_True_4False
- | BlockState::BirchHangingSign_True_5True
- | BlockState::BirchHangingSign_True_5False
- | BlockState::BirchHangingSign_True_6True
- | BlockState::BirchHangingSign_True_6False
- | BlockState::BirchHangingSign_True_7True
- | BlockState::BirchHangingSign_True_7False
- | BlockState::BirchHangingSign_True_8True
- | BlockState::BirchHangingSign_True_8False
- | BlockState::BirchHangingSign_True_9True
- | BlockState::BirchHangingSign_True_9False
- | BlockState::BirchHangingSign_True_10True
- | BlockState::BirchHangingSign_True_10False
- | BlockState::BirchHangingSign_True_11True
- | BlockState::BirchHangingSign_True_11False
- | BlockState::BirchHangingSign_True_12True
- | BlockState::BirchHangingSign_True_12False
- | BlockState::BirchHangingSign_True_13True
- | BlockState::BirchHangingSign_True_13False
- | BlockState::BirchHangingSign_True_14True
- | BlockState::BirchHangingSign_True_14False
- | BlockState::BirchHangingSign_True_15True
- | BlockState::BirchHangingSign_True_15False
- | BlockState::BirchHangingSign_False_0True
- | BlockState::BirchHangingSign_False_0False
- | BlockState::BirchHangingSign_False_1True
- | BlockState::BirchHangingSign_False_1False
- | BlockState::BirchHangingSign_False_2True
- | BlockState::BirchHangingSign_False_2False
- | BlockState::BirchHangingSign_False_3True
- | BlockState::BirchHangingSign_False_3False
- | BlockState::BirchHangingSign_False_4True
- | BlockState::BirchHangingSign_False_4False
- | BlockState::BirchHangingSign_False_5True
- | BlockState::BirchHangingSign_False_5False
- | BlockState::BirchHangingSign_False_6True
- | BlockState::BirchHangingSign_False_6False
- | BlockState::BirchHangingSign_False_7True
- | BlockState::BirchHangingSign_False_7False
- | BlockState::BirchHangingSign_False_8True
- | BlockState::BirchHangingSign_False_8False
- | BlockState::BirchHangingSign_False_9True
- | BlockState::BirchHangingSign_False_9False
- | BlockState::BirchHangingSign_False_10True
- | BlockState::BirchHangingSign_False_10False
- | BlockState::BirchHangingSign_False_11True
- | BlockState::BirchHangingSign_False_11False
- | BlockState::BirchHangingSign_False_12True
- | BlockState::BirchHangingSign_False_12False
- | BlockState::BirchHangingSign_False_13True
- | BlockState::BirchHangingSign_False_13False
- | BlockState::BirchHangingSign_False_14True
- | BlockState::BirchHangingSign_False_14False
- | BlockState::BirchHangingSign_False_15True
- | BlockState::BirchHangingSign_False_15False
- | BlockState::AcaciaHangingSign_True_0True
- | BlockState::AcaciaHangingSign_True_0False
- | BlockState::AcaciaHangingSign_True_1True
- | BlockState::AcaciaHangingSign_True_1False
- | BlockState::AcaciaHangingSign_True_2True
- | BlockState::AcaciaHangingSign_True_2False
- | BlockState::AcaciaHangingSign_True_3True
- | BlockState::AcaciaHangingSign_True_3False
- | BlockState::AcaciaHangingSign_True_4True
- | BlockState::AcaciaHangingSign_True_4False
- | BlockState::AcaciaHangingSign_True_5True
- | BlockState::AcaciaHangingSign_True_5False
- | BlockState::AcaciaHangingSign_True_6True
- | BlockState::AcaciaHangingSign_True_6False
- | BlockState::AcaciaHangingSign_True_7True
- | BlockState::AcaciaHangingSign_True_7False
- | BlockState::AcaciaHangingSign_True_8True
- | BlockState::AcaciaHangingSign_True_8False
- | BlockState::AcaciaHangingSign_True_9True
- | BlockState::AcaciaHangingSign_True_9False
- | BlockState::AcaciaHangingSign_True_10True
- | BlockState::AcaciaHangingSign_True_10False
- | BlockState::AcaciaHangingSign_True_11True
- | BlockState::AcaciaHangingSign_True_11False
- | BlockState::AcaciaHangingSign_True_12True
- | BlockState::AcaciaHangingSign_True_12False
- | BlockState::AcaciaHangingSign_True_13True
- | BlockState::AcaciaHangingSign_True_13False
- | BlockState::AcaciaHangingSign_True_14True
- | BlockState::AcaciaHangingSign_True_14False
- | BlockState::AcaciaHangingSign_True_15True
- | BlockState::AcaciaHangingSign_True_15False
- | BlockState::AcaciaHangingSign_False_0True
- | BlockState::AcaciaHangingSign_False_0False
- | BlockState::AcaciaHangingSign_False_1True
- | BlockState::AcaciaHangingSign_False_1False
- | BlockState::AcaciaHangingSign_False_2True
- | BlockState::AcaciaHangingSign_False_2False
- | BlockState::AcaciaHangingSign_False_3True
- | BlockState::AcaciaHangingSign_False_3False
- | BlockState::AcaciaHangingSign_False_4True
- | BlockState::AcaciaHangingSign_False_4False
- | BlockState::AcaciaHangingSign_False_5True
- | BlockState::AcaciaHangingSign_False_5False
- | BlockState::AcaciaHangingSign_False_6True
- | BlockState::AcaciaHangingSign_False_6False
- | BlockState::AcaciaHangingSign_False_7True
- | BlockState::AcaciaHangingSign_False_7False
- | BlockState::AcaciaHangingSign_False_8True
- | BlockState::AcaciaHangingSign_False_8False
- | BlockState::AcaciaHangingSign_False_9True
- | BlockState::AcaciaHangingSign_False_9False
- | BlockState::AcaciaHangingSign_False_10True
- | BlockState::AcaciaHangingSign_False_10False
- | BlockState::AcaciaHangingSign_False_11True
- | BlockState::AcaciaHangingSign_False_11False
- | BlockState::AcaciaHangingSign_False_12True
- | BlockState::AcaciaHangingSign_False_12False
- | BlockState::AcaciaHangingSign_False_13True
- | BlockState::AcaciaHangingSign_False_13False
- | BlockState::AcaciaHangingSign_False_14True
- | BlockState::AcaciaHangingSign_False_14False
- | BlockState::AcaciaHangingSign_False_15True
- | BlockState::AcaciaHangingSign_False_15False
- | BlockState::JungleHangingSign_True_0True
- | BlockState::JungleHangingSign_True_0False
- | BlockState::JungleHangingSign_True_1True
- | BlockState::JungleHangingSign_True_1False
- | BlockState::JungleHangingSign_True_2True
- | BlockState::JungleHangingSign_True_2False
- | BlockState::JungleHangingSign_True_3True
- | BlockState::JungleHangingSign_True_3False
- | BlockState::JungleHangingSign_True_4True
- | BlockState::JungleHangingSign_True_4False
- | BlockState::JungleHangingSign_True_5True
- | BlockState::JungleHangingSign_True_5False
- | BlockState::JungleHangingSign_True_6True
- | BlockState::JungleHangingSign_True_6False
- | BlockState::JungleHangingSign_True_7True
- | BlockState::JungleHangingSign_True_7False
- | BlockState::JungleHangingSign_True_8True
- | BlockState::JungleHangingSign_True_8False
- | BlockState::JungleHangingSign_True_9True
- | BlockState::JungleHangingSign_True_9False
- | BlockState::JungleHangingSign_True_10True
- | BlockState::JungleHangingSign_True_10False
- | BlockState::JungleHangingSign_True_11True
- | BlockState::JungleHangingSign_True_11False
- | BlockState::JungleHangingSign_True_12True
- | BlockState::JungleHangingSign_True_12False
- | BlockState::JungleHangingSign_True_13True
- | BlockState::JungleHangingSign_True_13False
- | BlockState::JungleHangingSign_True_14True
- | BlockState::JungleHangingSign_True_14False
- | BlockState::JungleHangingSign_True_15True
- | BlockState::JungleHangingSign_True_15False
- | BlockState::JungleHangingSign_False_0True
- | BlockState::JungleHangingSign_False_0False
- | BlockState::JungleHangingSign_False_1True
- | BlockState::JungleHangingSign_False_1False
- | BlockState::JungleHangingSign_False_2True
- | BlockState::JungleHangingSign_False_2False
- | BlockState::JungleHangingSign_False_3True
- | BlockState::JungleHangingSign_False_3False
- | BlockState::JungleHangingSign_False_4True
- | BlockState::JungleHangingSign_False_4False
- | BlockState::JungleHangingSign_False_5True
- | BlockState::JungleHangingSign_False_5False
- | BlockState::JungleHangingSign_False_6True
- | BlockState::JungleHangingSign_False_6False
- | BlockState::JungleHangingSign_False_7True
- | BlockState::JungleHangingSign_False_7False
- | BlockState::JungleHangingSign_False_8True
- | BlockState::JungleHangingSign_False_8False
- | BlockState::JungleHangingSign_False_9True
- | BlockState::JungleHangingSign_False_9False
- | BlockState::JungleHangingSign_False_10True
- | BlockState::JungleHangingSign_False_10False
- | BlockState::JungleHangingSign_False_11True
- | BlockState::JungleHangingSign_False_11False
- | BlockState::JungleHangingSign_False_12True
- | BlockState::JungleHangingSign_False_12False
- | BlockState::JungleHangingSign_False_13True
- | BlockState::JungleHangingSign_False_13False
- | BlockState::JungleHangingSign_False_14True
- | BlockState::JungleHangingSign_False_14False
- | BlockState::JungleHangingSign_False_15True
- | BlockState::JungleHangingSign_False_15False
- | BlockState::DarkOakHangingSign_True_0True
- | BlockState::DarkOakHangingSign_True_0False
- | BlockState::DarkOakHangingSign_True_1True
- | BlockState::DarkOakHangingSign_True_1False
- | BlockState::DarkOakHangingSign_True_2True
- | BlockState::DarkOakHangingSign_True_2False
- | BlockState::DarkOakHangingSign_True_3True
- | BlockState::DarkOakHangingSign_True_3False
- | BlockState::DarkOakHangingSign_True_4True
- | BlockState::DarkOakHangingSign_True_4False
- | BlockState::DarkOakHangingSign_True_5True
- | BlockState::DarkOakHangingSign_True_5False
- | BlockState::DarkOakHangingSign_True_6True
- | BlockState::DarkOakHangingSign_True_6False
- | BlockState::DarkOakHangingSign_True_7True
- | BlockState::DarkOakHangingSign_True_7False
- | BlockState::DarkOakHangingSign_True_8True
- | BlockState::DarkOakHangingSign_True_8False
- | BlockState::DarkOakHangingSign_True_9True
- | BlockState::DarkOakHangingSign_True_9False
- | BlockState::DarkOakHangingSign_True_10True
- | BlockState::DarkOakHangingSign_True_10False
- | BlockState::DarkOakHangingSign_True_11True
- | BlockState::DarkOakHangingSign_True_11False
- | BlockState::DarkOakHangingSign_True_12True
- | BlockState::DarkOakHangingSign_True_12False
- | BlockState::DarkOakHangingSign_True_13True
- | BlockState::DarkOakHangingSign_True_13False
- | BlockState::DarkOakHangingSign_True_14True
- | BlockState::DarkOakHangingSign_True_14False
- | BlockState::DarkOakHangingSign_True_15True
- | BlockState::DarkOakHangingSign_True_15False
- | BlockState::DarkOakHangingSign_False_0True
- | BlockState::DarkOakHangingSign_False_0False
- | BlockState::DarkOakHangingSign_False_1True
- | BlockState::DarkOakHangingSign_False_1False
- | BlockState::DarkOakHangingSign_False_2True
- | BlockState::DarkOakHangingSign_False_2False
- | BlockState::DarkOakHangingSign_False_3True
- | BlockState::DarkOakHangingSign_False_3False
- | BlockState::DarkOakHangingSign_False_4True
- | BlockState::DarkOakHangingSign_False_4False
- | BlockState::DarkOakHangingSign_False_5True
- | BlockState::DarkOakHangingSign_False_5False
- | BlockState::DarkOakHangingSign_False_6True
- | BlockState::DarkOakHangingSign_False_6False
- | BlockState::DarkOakHangingSign_False_7True
- | BlockState::DarkOakHangingSign_False_7False
- | BlockState::DarkOakHangingSign_False_8True
- | BlockState::DarkOakHangingSign_False_8False
- | BlockState::DarkOakHangingSign_False_9True
- | BlockState::DarkOakHangingSign_False_9False
- | BlockState::DarkOakHangingSign_False_10True
- | BlockState::DarkOakHangingSign_False_10False
- | BlockState::DarkOakHangingSign_False_11True
- | BlockState::DarkOakHangingSign_False_11False
- | BlockState::DarkOakHangingSign_False_12True
- | BlockState::DarkOakHangingSign_False_12False
- | BlockState::DarkOakHangingSign_False_13True
- | BlockState::DarkOakHangingSign_False_13False
- | BlockState::DarkOakHangingSign_False_14True
- | BlockState::DarkOakHangingSign_False_14False
- | BlockState::DarkOakHangingSign_False_15True
- | BlockState::DarkOakHangingSign_False_15False
- | BlockState::CrimsonHangingSign_True_0True
- | BlockState::CrimsonHangingSign_True_0False
- | BlockState::CrimsonHangingSign_True_1True
- | BlockState::CrimsonHangingSign_True_1False
- | BlockState::CrimsonHangingSign_True_2True
- | BlockState::CrimsonHangingSign_True_2False
- | BlockState::CrimsonHangingSign_True_3True
- | BlockState::CrimsonHangingSign_True_3False
- | BlockState::CrimsonHangingSign_True_4True
- | BlockState::CrimsonHangingSign_True_4False
- | BlockState::CrimsonHangingSign_True_5True
- | BlockState::CrimsonHangingSign_True_5False
- | BlockState::CrimsonHangingSign_True_6True
- | BlockState::CrimsonHangingSign_True_6False
- | BlockState::CrimsonHangingSign_True_7True
- | BlockState::CrimsonHangingSign_True_7False
- | BlockState::CrimsonHangingSign_True_8True
- | BlockState::CrimsonHangingSign_True_8False
- | BlockState::CrimsonHangingSign_True_9True
- | BlockState::CrimsonHangingSign_True_9False
- | BlockState::CrimsonHangingSign_True_10True
- | BlockState::CrimsonHangingSign_True_10False
- | BlockState::CrimsonHangingSign_True_11True
- | BlockState::CrimsonHangingSign_True_11False
- | BlockState::CrimsonHangingSign_True_12True
- | BlockState::CrimsonHangingSign_True_12False
- | BlockState::CrimsonHangingSign_True_13True
- | BlockState::CrimsonHangingSign_True_13False
- | BlockState::CrimsonHangingSign_True_14True
- | BlockState::CrimsonHangingSign_True_14False
- | BlockState::CrimsonHangingSign_True_15True
- | BlockState::CrimsonHangingSign_True_15False
- | BlockState::CrimsonHangingSign_False_0True
- | BlockState::CrimsonHangingSign_False_0False
- | BlockState::CrimsonHangingSign_False_1True
- | BlockState::CrimsonHangingSign_False_1False
- | BlockState::CrimsonHangingSign_False_2True
- | BlockState::CrimsonHangingSign_False_2False
- | BlockState::CrimsonHangingSign_False_3True
- | BlockState::CrimsonHangingSign_False_3False
- | BlockState::CrimsonHangingSign_False_4True
- | BlockState::CrimsonHangingSign_False_4False
- | BlockState::CrimsonHangingSign_False_5True
- | BlockState::CrimsonHangingSign_False_5False
- | BlockState::CrimsonHangingSign_False_6True
- | BlockState::CrimsonHangingSign_False_6False
- | BlockState::CrimsonHangingSign_False_7True
- | BlockState::CrimsonHangingSign_False_7False
- | BlockState::CrimsonHangingSign_False_8True
- | BlockState::CrimsonHangingSign_False_8False
- | BlockState::CrimsonHangingSign_False_9True
- | BlockState::CrimsonHangingSign_False_9False
- | BlockState::CrimsonHangingSign_False_10True
- | BlockState::CrimsonHangingSign_False_10False
- | BlockState::CrimsonHangingSign_False_11True
- | BlockState::CrimsonHangingSign_False_11False
- | BlockState::CrimsonHangingSign_False_12True
- | BlockState::CrimsonHangingSign_False_12False
- | BlockState::CrimsonHangingSign_False_13True
- | BlockState::CrimsonHangingSign_False_13False
- | BlockState::CrimsonHangingSign_False_14True
- | BlockState::CrimsonHangingSign_False_14False
- | BlockState::CrimsonHangingSign_False_15True
- | BlockState::CrimsonHangingSign_False_15False
- | BlockState::WarpedHangingSign_True_0True
- | BlockState::WarpedHangingSign_True_0False
- | BlockState::WarpedHangingSign_True_1True
- | BlockState::WarpedHangingSign_True_1False
- | BlockState::WarpedHangingSign_True_2True
- | BlockState::WarpedHangingSign_True_2False
- | BlockState::WarpedHangingSign_True_3True
- | BlockState::WarpedHangingSign_True_3False
- | BlockState::WarpedHangingSign_True_4True
- | BlockState::WarpedHangingSign_True_4False
- | BlockState::WarpedHangingSign_True_5True
- | BlockState::WarpedHangingSign_True_5False
- | BlockState::WarpedHangingSign_True_6True
- | BlockState::WarpedHangingSign_True_6False
- | BlockState::WarpedHangingSign_True_7True
- | BlockState::WarpedHangingSign_True_7False
- | BlockState::WarpedHangingSign_True_8True
- | BlockState::WarpedHangingSign_True_8False
- | BlockState::WarpedHangingSign_True_9True
- | BlockState::WarpedHangingSign_True_9False
- | BlockState::WarpedHangingSign_True_10True
- | BlockState::WarpedHangingSign_True_10False
- | BlockState::WarpedHangingSign_True_11True
- | BlockState::WarpedHangingSign_True_11False
- | BlockState::WarpedHangingSign_True_12True
- | BlockState::WarpedHangingSign_True_12False
- | BlockState::WarpedHangingSign_True_13True
- | BlockState::WarpedHangingSign_True_13False
- | BlockState::WarpedHangingSign_True_14True
- | BlockState::WarpedHangingSign_True_14False
- | BlockState::WarpedHangingSign_True_15True
- | BlockState::WarpedHangingSign_True_15False
- | BlockState::WarpedHangingSign_False_0True
- | BlockState::WarpedHangingSign_False_0False
- | BlockState::WarpedHangingSign_False_1True
- | BlockState::WarpedHangingSign_False_1False
- | BlockState::WarpedHangingSign_False_2True
- | BlockState::WarpedHangingSign_False_2False
- | BlockState::WarpedHangingSign_False_3True
- | BlockState::WarpedHangingSign_False_3False
- | BlockState::WarpedHangingSign_False_4True
- | BlockState::WarpedHangingSign_False_4False
- | BlockState::WarpedHangingSign_False_5True
- | BlockState::WarpedHangingSign_False_5False
- | BlockState::WarpedHangingSign_False_6True
- | BlockState::WarpedHangingSign_False_6False
- | BlockState::WarpedHangingSign_False_7True
- | BlockState::WarpedHangingSign_False_7False
- | BlockState::WarpedHangingSign_False_8True
- | BlockState::WarpedHangingSign_False_8False
- | BlockState::WarpedHangingSign_False_9True
- | BlockState::WarpedHangingSign_False_9False
- | BlockState::WarpedHangingSign_False_10True
- | BlockState::WarpedHangingSign_False_10False
- | BlockState::WarpedHangingSign_False_11True
- | BlockState::WarpedHangingSign_False_11False
- | BlockState::WarpedHangingSign_False_12True
- | BlockState::WarpedHangingSign_False_12False
- | BlockState::WarpedHangingSign_False_13True
- | BlockState::WarpedHangingSign_False_13False
- | BlockState::WarpedHangingSign_False_14True
- | BlockState::WarpedHangingSign_False_14False
- | BlockState::WarpedHangingSign_False_15True
- | BlockState::WarpedHangingSign_False_15False
- | BlockState::MangroveHangingSign_True_0True
- | BlockState::MangroveHangingSign_True_0False
- | BlockState::MangroveHangingSign_True_1True
- | BlockState::MangroveHangingSign_True_1False
- | BlockState::MangroveHangingSign_True_2True
- | BlockState::MangroveHangingSign_True_2False
- | BlockState::MangroveHangingSign_True_3True
- | BlockState::MangroveHangingSign_True_3False
- | BlockState::MangroveHangingSign_True_4True
- | BlockState::MangroveHangingSign_True_4False
- | BlockState::MangroveHangingSign_True_5True
- | BlockState::MangroveHangingSign_True_5False
- | BlockState::MangroveHangingSign_True_6True
- | BlockState::MangroveHangingSign_True_6False
- | BlockState::MangroveHangingSign_True_7True
- | BlockState::MangroveHangingSign_True_7False
- | BlockState::MangroveHangingSign_True_8True
- | BlockState::MangroveHangingSign_True_8False
- | BlockState::MangroveHangingSign_True_9True
- | BlockState::MangroveHangingSign_True_9False
- | BlockState::MangroveHangingSign_True_10True
- | BlockState::MangroveHangingSign_True_10False
- | BlockState::MangroveHangingSign_True_11True
- | BlockState::MangroveHangingSign_True_11False
- | BlockState::MangroveHangingSign_True_12True
- | BlockState::MangroveHangingSign_True_12False
- | BlockState::MangroveHangingSign_True_13True
- | BlockState::MangroveHangingSign_True_13False
- | BlockState::MangroveHangingSign_True_14True
- | BlockState::MangroveHangingSign_True_14False
- | BlockState::MangroveHangingSign_True_15True
- | BlockState::MangroveHangingSign_True_15False
- | BlockState::MangroveHangingSign_False_0True
- | BlockState::MangroveHangingSign_False_0False
- | BlockState::MangroveHangingSign_False_1True
- | BlockState::MangroveHangingSign_False_1False
- | BlockState::MangroveHangingSign_False_2True
- | BlockState::MangroveHangingSign_False_2False
- | BlockState::MangroveHangingSign_False_3True
- | BlockState::MangroveHangingSign_False_3False
- | BlockState::MangroveHangingSign_False_4True
- | BlockState::MangroveHangingSign_False_4False
- | BlockState::MangroveHangingSign_False_5True
- | BlockState::MangroveHangingSign_False_5False
- | BlockState::MangroveHangingSign_False_6True
- | BlockState::MangroveHangingSign_False_6False
- | BlockState::MangroveHangingSign_False_7True
- | BlockState::MangroveHangingSign_False_7False
- | BlockState::MangroveHangingSign_False_8True
- | BlockState::MangroveHangingSign_False_8False
- | BlockState::MangroveHangingSign_False_9True
- | BlockState::MangroveHangingSign_False_9False
- | BlockState::MangroveHangingSign_False_10True
- | BlockState::MangroveHangingSign_False_10False
- | BlockState::MangroveHangingSign_False_11True
- | BlockState::MangroveHangingSign_False_11False
- | BlockState::MangroveHangingSign_False_12True
- | BlockState::MangroveHangingSign_False_12False
- | BlockState::MangroveHangingSign_False_13True
- | BlockState::MangroveHangingSign_False_13False
- | BlockState::MangroveHangingSign_False_14True
- | BlockState::MangroveHangingSign_False_14False
- | BlockState::MangroveHangingSign_False_15True
- | BlockState::MangroveHangingSign_False_15False
- | BlockState::BambooHangingSign_True_0True
- | BlockState::BambooHangingSign_True_0False
- | BlockState::BambooHangingSign_True_1True
- | BlockState::BambooHangingSign_True_1False
- | BlockState::BambooHangingSign_True_2True
- | BlockState::BambooHangingSign_True_2False
- | BlockState::BambooHangingSign_True_3True
- | BlockState::BambooHangingSign_True_3False
- | BlockState::BambooHangingSign_True_4True
- | BlockState::BambooHangingSign_True_4False
- | BlockState::BambooHangingSign_True_5True
- | BlockState::BambooHangingSign_True_5False
- | BlockState::BambooHangingSign_True_6True
- | BlockState::BambooHangingSign_True_6False
- | BlockState::BambooHangingSign_True_7True
- | BlockState::BambooHangingSign_True_7False
- | BlockState::BambooHangingSign_True_8True
- | BlockState::BambooHangingSign_True_8False
- | BlockState::BambooHangingSign_True_9True
- | BlockState::BambooHangingSign_True_9False
- | BlockState::BambooHangingSign_True_10True
- | BlockState::BambooHangingSign_True_10False
- | BlockState::BambooHangingSign_True_11True
- | BlockState::BambooHangingSign_True_11False
- | BlockState::BambooHangingSign_True_12True
- | BlockState::BambooHangingSign_True_12False
- | BlockState::BambooHangingSign_True_13True
- | BlockState::BambooHangingSign_True_13False
- | BlockState::BambooHangingSign_True_14True
- | BlockState::BambooHangingSign_True_14False
- | BlockState::BambooHangingSign_True_15True
- | BlockState::BambooHangingSign_True_15False
- | BlockState::BambooHangingSign_False_0True
- | BlockState::BambooHangingSign_False_0False
- | BlockState::BambooHangingSign_False_1True
- | BlockState::BambooHangingSign_False_1False
- | BlockState::BambooHangingSign_False_2True
- | BlockState::BambooHangingSign_False_2False
- | BlockState::BambooHangingSign_False_3True
- | BlockState::BambooHangingSign_False_3False
- | BlockState::BambooHangingSign_False_4True
- | BlockState::BambooHangingSign_False_4False
- | BlockState::BambooHangingSign_False_5True
- | BlockState::BambooHangingSign_False_5False
- | BlockState::BambooHangingSign_False_6True
- | BlockState::BambooHangingSign_False_6False
- | BlockState::BambooHangingSign_False_7True
- | BlockState::BambooHangingSign_False_7False
- | BlockState::BambooHangingSign_False_8True
- | BlockState::BambooHangingSign_False_8False
- | BlockState::BambooHangingSign_False_9True
- | BlockState::BambooHangingSign_False_9False
- | BlockState::BambooHangingSign_False_10True
- | BlockState::BambooHangingSign_False_10False
- | BlockState::BambooHangingSign_False_11True
- | BlockState::BambooHangingSign_False_11False
- | BlockState::BambooHangingSign_False_12True
- | BlockState::BambooHangingSign_False_12False
- | BlockState::BambooHangingSign_False_13True
- | BlockState::BambooHangingSign_False_13False
- | BlockState::BambooHangingSign_False_14True
- | BlockState::BambooHangingSign_False_14False
- | BlockState::BambooHangingSign_False_15True
- | BlockState::BambooHangingSign_False_15False
- | BlockState::Lever_FloorNorthTrue
- | BlockState::Lever_FloorNorthFalse
- | BlockState::Lever_FloorSouthTrue
- | BlockState::Lever_FloorSouthFalse
- | BlockState::Lever_FloorWestTrue
- | BlockState::Lever_FloorWestFalse
- | BlockState::Lever_FloorEastTrue
- | BlockState::Lever_FloorEastFalse
- | BlockState::Lever_WallNorthTrue
- | BlockState::Lever_WallNorthFalse
- | BlockState::Lever_WallSouthTrue
- | BlockState::Lever_WallSouthFalse
- | BlockState::Lever_WallWestTrue
- | BlockState::Lever_WallWestFalse
- | BlockState::Lever_WallEastTrue
- | BlockState::Lever_WallEastFalse
- | BlockState::Lever_CeilingNorthTrue
- | BlockState::Lever_CeilingNorthFalse
- | BlockState::Lever_CeilingSouthTrue
- | BlockState::Lever_CeilingSouthFalse
- | BlockState::Lever_CeilingWestTrue
- | BlockState::Lever_CeilingWestFalse
- | BlockState::Lever_CeilingEastTrue
- | BlockState::Lever_CeilingEastFalse
- | BlockState::StonePressurePlate_True
- | BlockState::StonePressurePlate_False
- | BlockState::OakPressurePlate_True
- | BlockState::OakPressurePlate_False
- | BlockState::SprucePressurePlate_True
- | BlockState::SprucePressurePlate_False
- | BlockState::BirchPressurePlate_True
- | BlockState::BirchPressurePlate_False
- | BlockState::JunglePressurePlate_True
- | BlockState::JunglePressurePlate_False
- | BlockState::AcaciaPressurePlate_True
- | BlockState::AcaciaPressurePlate_False
- | BlockState::DarkOakPressurePlate_True
- | BlockState::DarkOakPressurePlate_False
- | BlockState::MangrovePressurePlate_True
- | BlockState::MangrovePressurePlate_False
- | BlockState::BambooPressurePlate_True
- | BlockState::BambooPressurePlate_False
- | BlockState::RedstoneTorch_True
- | BlockState::RedstoneTorch_False
- | BlockState::RedstoneWallTorch_NorthTrue
- | BlockState::RedstoneWallTorch_NorthFalse
- | BlockState::RedstoneWallTorch_SouthTrue
- | BlockState::RedstoneWallTorch_SouthFalse
- | BlockState::RedstoneWallTorch_WestTrue
- | BlockState::RedstoneWallTorch_WestFalse
- | BlockState::RedstoneWallTorch_EastTrue
- | BlockState::RedstoneWallTorch_EastFalse
- | BlockState::StoneButton_FloorNorthTrue
- | BlockState::StoneButton_FloorNorthFalse
- | BlockState::StoneButton_FloorSouthTrue
- | BlockState::StoneButton_FloorSouthFalse
- | BlockState::StoneButton_FloorWestTrue
- | BlockState::StoneButton_FloorWestFalse
- | BlockState::StoneButton_FloorEastTrue
- | BlockState::StoneButton_FloorEastFalse
- | BlockState::StoneButton_WallNorthTrue
- | BlockState::StoneButton_WallNorthFalse
- | BlockState::StoneButton_WallSouthTrue
- | BlockState::StoneButton_WallSouthFalse
- | BlockState::StoneButton_WallWestTrue
- | BlockState::StoneButton_WallWestFalse
- | BlockState::StoneButton_WallEastTrue
- | BlockState::StoneButton_WallEastFalse
- | BlockState::StoneButton_CeilingNorthTrue
- | BlockState::StoneButton_CeilingNorthFalse
- | BlockState::StoneButton_CeilingSouthTrue
- | BlockState::StoneButton_CeilingSouthFalse
- | BlockState::StoneButton_CeilingWestTrue
- | BlockState::StoneButton_CeilingWestFalse
- | BlockState::StoneButton_CeilingEastTrue
- | BlockState::StoneButton_CeilingEastFalse
- | BlockState::Snow__1
- | BlockState::SugarCane__0
- | BlockState::SugarCane__1
- | BlockState::SugarCane__2
- | BlockState::SugarCane__3
- | BlockState::SugarCane__4
- | BlockState::SugarCane__5
- | BlockState::SugarCane__6
- | BlockState::SugarCane__7
- | BlockState::SugarCane__8
- | BlockState::SugarCane__9
- | BlockState::SugarCane__10
- | BlockState::SugarCane__11
- | BlockState::SugarCane__12
- | BlockState::SugarCane__13
- | BlockState::SugarCane__14
- | BlockState::SugarCane__15
- | BlockState::SoulTorch
- | BlockState::SoulWallTorch_North
- | BlockState::SoulWallTorch_South
- | BlockState::SoulWallTorch_West
- | BlockState::SoulWallTorch_East
- | BlockState::NetherPortal_X
- | BlockState::NetherPortal_Z
- | BlockState::AttachedPumpkinStem_North
- | BlockState::AttachedPumpkinStem_South
- | BlockState::AttachedPumpkinStem_West
- | BlockState::AttachedPumpkinStem_East
- | BlockState::AttachedMelonStem_North
- | BlockState::AttachedMelonStem_South
- | BlockState::AttachedMelonStem_West
- | BlockState::AttachedMelonStem_East
- | BlockState::PumpkinStem__0
- | BlockState::PumpkinStem__1
- | BlockState::PumpkinStem__2
- | BlockState::PumpkinStem__3
- | BlockState::PumpkinStem__4
- | BlockState::PumpkinStem__5
- | BlockState::PumpkinStem__6
- | BlockState::PumpkinStem__7
- | BlockState::MelonStem__0
- | BlockState::MelonStem__1
- | BlockState::MelonStem__2
- | BlockState::MelonStem__3
- | BlockState::MelonStem__4
- | BlockState::MelonStem__5
- | BlockState::MelonStem__6
- | BlockState::MelonStem__7
- | BlockState::Vine_TrueTrueTrueTrueTrue
- | BlockState::Vine_TrueTrueTrueTrueFalse
- | BlockState::Vine_TrueTrueTrueFalseTrue
- | BlockState::Vine_TrueTrueTrueFalseFalse
- | BlockState::Vine_TrueTrueFalseTrueTrue
- | BlockState::Vine_TrueTrueFalseTrueFalse
- | BlockState::Vine_TrueTrueFalseFalseTrue
- | BlockState::Vine_TrueTrueFalseFalseFalse
- | BlockState::Vine_TrueFalseTrueTrueTrue
- | BlockState::Vine_TrueFalseTrueTrueFalse
- | BlockState::Vine_TrueFalseTrueFalseTrue
- | BlockState::Vine_TrueFalseTrueFalseFalse
- | BlockState::Vine_TrueFalseFalseTrueTrue
- | BlockState::Vine_TrueFalseFalseTrueFalse
- | BlockState::Vine_TrueFalseFalseFalseTrue
- | BlockState::Vine_TrueFalseFalseFalseFalse
- | BlockState::Vine_FalseTrueTrueTrueTrue
- | BlockState::Vine_FalseTrueTrueTrueFalse
- | BlockState::Vine_FalseTrueTrueFalseTrue
- | BlockState::Vine_FalseTrueTrueFalseFalse
- | BlockState::Vine_FalseTrueFalseTrueTrue
- | BlockState::Vine_FalseTrueFalseTrueFalse
- | BlockState::Vine_FalseTrueFalseFalseTrue
- | BlockState::Vine_FalseTrueFalseFalseFalse
- | BlockState::Vine_FalseFalseTrueTrueTrue
- | BlockState::Vine_FalseFalseTrueTrueFalse
- | BlockState::Vine_FalseFalseTrueFalseTrue
- | BlockState::Vine_FalseFalseTrueFalseFalse
- | BlockState::Vine_FalseFalseFalseTrueTrue
- | BlockState::Vine_FalseFalseFalseTrueFalse
- | BlockState::Vine_FalseFalseFalseFalseTrue
- | BlockState::Vine_FalseFalseFalseFalseFalse
- | BlockState::GlowLichen_TrueTrueTrueTrueTrueTrueTrue
- | BlockState::GlowLichen_TrueTrueTrueTrueTrueTrueFalse
- | BlockState::GlowLichen_TrueTrueTrueTrueTrueFalseTrue
- | BlockState::GlowLichen_TrueTrueTrueTrueTrueFalseFalse
- | BlockState::GlowLichen_TrueTrueTrueTrueFalseTrueTrue
- | BlockState::GlowLichen_TrueTrueTrueTrueFalseTrueFalse
- | BlockState::GlowLichen_TrueTrueTrueTrueFalseFalseTrue
- | BlockState::GlowLichen_TrueTrueTrueTrueFalseFalseFalse
- | BlockState::GlowLichen_TrueTrueTrueFalseTrueTrueTrue
- | BlockState::GlowLichen_TrueTrueTrueFalseTrueTrueFalse
- | BlockState::GlowLichen_TrueTrueTrueFalseTrueFalseTrue
- | BlockState::GlowLichen_TrueTrueTrueFalseTrueFalseFalse
- | BlockState::GlowLichen_TrueTrueTrueFalseFalseTrueTrue
- | BlockState::GlowLichen_TrueTrueTrueFalseFalseTrueFalse
- | BlockState::GlowLichen_TrueTrueTrueFalseFalseFalseTrue
- | BlockState::GlowLichen_TrueTrueTrueFalseFalseFalseFalse
- | BlockState::GlowLichen_TrueTrueFalseTrueTrueTrueTrue
- | BlockState::GlowLichen_TrueTrueFalseTrueTrueTrueFalse
- | BlockState::GlowLichen_TrueTrueFalseTrueTrueFalseTrue
- | BlockState::GlowLichen_TrueTrueFalseTrueTrueFalseFalse
- | BlockState::GlowLichen_TrueTrueFalseTrueFalseTrueTrue
- | BlockState::GlowLichen_TrueTrueFalseTrueFalseTrueFalse
- | BlockState::GlowLichen_TrueTrueFalseTrueFalseFalseTrue
- | BlockState::GlowLichen_TrueTrueFalseTrueFalseFalseFalse
- | BlockState::GlowLichen_TrueTrueFalseFalseTrueTrueTrue
- | BlockState::GlowLichen_TrueTrueFalseFalseTrueTrueFalse
- | BlockState::GlowLichen_TrueTrueFalseFalseTrueFalseTrue
- | BlockState::GlowLichen_TrueTrueFalseFalseTrueFalseFalse
- | BlockState::GlowLichen_TrueTrueFalseFalseFalseTrueTrue
- | BlockState::GlowLichen_TrueTrueFalseFalseFalseTrueFalse
- | BlockState::GlowLichen_TrueTrueFalseFalseFalseFalseTrue
- | BlockState::GlowLichen_TrueTrueFalseFalseFalseFalseFalse
- | BlockState::GlowLichen_TrueFalseTrueTrueTrueTrueTrue
- | BlockState::GlowLichen_TrueFalseTrueTrueTrueTrueFalse
- | BlockState::GlowLichen_TrueFalseTrueTrueTrueFalseTrue
- | BlockState::GlowLichen_TrueFalseTrueTrueTrueFalseFalse
- | BlockState::GlowLichen_TrueFalseTrueTrueFalseTrueTrue
- | BlockState::GlowLichen_TrueFalseTrueTrueFalseTrueFalse
- | BlockState::GlowLichen_TrueFalseTrueTrueFalseFalseTrue
- | BlockState::GlowLichen_TrueFalseTrueTrueFalseFalseFalse
- | BlockState::GlowLichen_TrueFalseTrueFalseTrueTrueTrue
- | BlockState::GlowLichen_TrueFalseTrueFalseTrueTrueFalse
- | BlockState::GlowLichen_TrueFalseTrueFalseTrueFalseTrue
- | BlockState::GlowLichen_TrueFalseTrueFalseTrueFalseFalse
- | BlockState::GlowLichen_TrueFalseTrueFalseFalseTrueTrue
- | BlockState::GlowLichen_TrueFalseTrueFalseFalseTrueFalse
- | BlockState::GlowLichen_TrueFalseTrueFalseFalseFalseTrue
- | BlockState::GlowLichen_TrueFalseTrueFalseFalseFalseFalse
- | BlockState::GlowLichen_TrueFalseFalseTrueTrueTrueTrue
- | BlockState::GlowLichen_TrueFalseFalseTrueTrueTrueFalse
- | BlockState::GlowLichen_TrueFalseFalseTrueTrueFalseTrue
- | BlockState::GlowLichen_TrueFalseFalseTrueTrueFalseFalse
- | BlockState::GlowLichen_TrueFalseFalseTrueFalseTrueTrue
- | BlockState::GlowLichen_TrueFalseFalseTrueFalseTrueFalse
- | BlockState::GlowLichen_TrueFalseFalseTrueFalseFalseTrue
- | BlockState::GlowLichen_TrueFalseFalseTrueFalseFalseFalse
- | BlockState::GlowLichen_TrueFalseFalseFalseTrueTrueTrue
- | BlockState::GlowLichen_TrueFalseFalseFalseTrueTrueFalse
- | BlockState::GlowLichen_TrueFalseFalseFalseTrueFalseTrue
- | BlockState::GlowLichen_TrueFalseFalseFalseTrueFalseFalse
- | BlockState::GlowLichen_TrueFalseFalseFalseFalseTrueTrue
- | BlockState::GlowLichen_TrueFalseFalseFalseFalseTrueFalse
- | BlockState::GlowLichen_TrueFalseFalseFalseFalseFalseTrue
- | BlockState::GlowLichen_TrueFalseFalseFalseFalseFalseFalse
- | BlockState::GlowLichen_FalseTrueTrueTrueTrueTrueTrue
- | BlockState::GlowLichen_FalseTrueTrueTrueTrueTrueFalse
- | BlockState::GlowLichen_FalseTrueTrueTrueTrueFalseTrue
- | BlockState::GlowLichen_FalseTrueTrueTrueTrueFalseFalse
- | BlockState::GlowLichen_FalseTrueTrueTrueFalseTrueTrue
- | BlockState::GlowLichen_FalseTrueTrueTrueFalseTrueFalse
- | BlockState::GlowLichen_FalseTrueTrueTrueFalseFalseTrue
- | BlockState::GlowLichen_FalseTrueTrueTrueFalseFalseFalse
- | BlockState::GlowLichen_FalseTrueTrueFalseTrueTrueTrue
- | BlockState::GlowLichen_FalseTrueTrueFalseTrueTrueFalse
- | BlockState::GlowLichen_FalseTrueTrueFalseTrueFalseTrue
- | BlockState::GlowLichen_FalseTrueTrueFalseTrueFalseFalse
- | BlockState::GlowLichen_FalseTrueTrueFalseFalseTrueTrue
- | BlockState::GlowLichen_FalseTrueTrueFalseFalseTrueFalse
- | BlockState::GlowLichen_FalseTrueTrueFalseFalseFalseTrue
- | BlockState::GlowLichen_FalseTrueTrueFalseFalseFalseFalse
- | BlockState::GlowLichen_FalseTrueFalseTrueTrueTrueTrue
- | BlockState::GlowLichen_FalseTrueFalseTrueTrueTrueFalse
- | BlockState::GlowLichen_FalseTrueFalseTrueTrueFalseTrue
- | BlockState::GlowLichen_FalseTrueFalseTrueTrueFalseFalse
- | BlockState::GlowLichen_FalseTrueFalseTrueFalseTrueTrue
- | BlockState::GlowLichen_FalseTrueFalseTrueFalseTrueFalse
- | BlockState::GlowLichen_FalseTrueFalseTrueFalseFalseTrue
- | BlockState::GlowLichen_FalseTrueFalseTrueFalseFalseFalse
- | BlockState::GlowLichen_FalseTrueFalseFalseTrueTrueTrue
- | BlockState::GlowLichen_FalseTrueFalseFalseTrueTrueFalse
- | BlockState::GlowLichen_FalseTrueFalseFalseTrueFalseTrue
- | BlockState::GlowLichen_FalseTrueFalseFalseTrueFalseFalse
- | BlockState::GlowLichen_FalseTrueFalseFalseFalseTrueTrue
- | BlockState::GlowLichen_FalseTrueFalseFalseFalseTrueFalse
- | BlockState::GlowLichen_FalseTrueFalseFalseFalseFalseTrue
- | BlockState::GlowLichen_FalseTrueFalseFalseFalseFalseFalse
- | BlockState::GlowLichen_FalseFalseTrueTrueTrueTrueTrue
- | BlockState::GlowLichen_FalseFalseTrueTrueTrueTrueFalse
- | BlockState::GlowLichen_FalseFalseTrueTrueTrueFalseTrue
- | BlockState::GlowLichen_FalseFalseTrueTrueTrueFalseFalse
- | BlockState::GlowLichen_FalseFalseTrueTrueFalseTrueTrue
- | BlockState::GlowLichen_FalseFalseTrueTrueFalseTrueFalse
- | BlockState::GlowLichen_FalseFalseTrueTrueFalseFalseTrue
- | BlockState::GlowLichen_FalseFalseTrueTrueFalseFalseFalse
- | BlockState::GlowLichen_FalseFalseTrueFalseTrueTrueTrue
- | BlockState::GlowLichen_FalseFalseTrueFalseTrueTrueFalse
- | BlockState::GlowLichen_FalseFalseTrueFalseTrueFalseTrue
- | BlockState::GlowLichen_FalseFalseTrueFalseTrueFalseFalse
- | BlockState::GlowLichen_FalseFalseTrueFalseFalseTrueTrue
- | BlockState::GlowLichen_FalseFalseTrueFalseFalseTrueFalse
- | BlockState::GlowLichen_FalseFalseTrueFalseFalseFalseTrue
- | BlockState::GlowLichen_FalseFalseTrueFalseFalseFalseFalse
- | BlockState::GlowLichen_FalseFalseFalseTrueTrueTrueTrue
- | BlockState::GlowLichen_FalseFalseFalseTrueTrueTrueFalse
- | BlockState::GlowLichen_FalseFalseFalseTrueTrueFalseTrue
- | BlockState::GlowLichen_FalseFalseFalseTrueTrueFalseFalse
- | BlockState::GlowLichen_FalseFalseFalseTrueFalseTrueTrue
- | BlockState::GlowLichen_FalseFalseFalseTrueFalseTrueFalse
- | BlockState::GlowLichen_FalseFalseFalseTrueFalseFalseTrue
- | BlockState::GlowLichen_FalseFalseFalseTrueFalseFalseFalse
- | BlockState::GlowLichen_FalseFalseFalseFalseTrueTrueTrue
- | BlockState::GlowLichen_FalseFalseFalseFalseTrueTrueFalse
- | BlockState::GlowLichen_FalseFalseFalseFalseTrueFalseTrue
- | BlockState::GlowLichen_FalseFalseFalseFalseTrueFalseFalse
- | BlockState::GlowLichen_FalseFalseFalseFalseFalseTrueTrue
- | BlockState::GlowLichen_FalseFalseFalseFalseFalseTrueFalse
- | BlockState::GlowLichen_FalseFalseFalseFalseFalseFalseTrue
- | BlockState::GlowLichen_FalseFalseFalseFalseFalseFalseFalse
- | BlockState::OakFenceGate_NorthTrueTrueTrue
- | BlockState::OakFenceGate_NorthTrueTrueFalse
- | BlockState::OakFenceGate_NorthFalseTrueTrue
- | BlockState::OakFenceGate_NorthFalseTrueFalse
- | BlockState::OakFenceGate_SouthTrueTrueTrue
- | BlockState::OakFenceGate_SouthTrueTrueFalse
- | BlockState::OakFenceGate_SouthFalseTrueTrue
- | BlockState::OakFenceGate_SouthFalseTrueFalse
- | BlockState::OakFenceGate_WestTrueTrueTrue
- | BlockState::OakFenceGate_WestTrueTrueFalse
- | BlockState::OakFenceGate_WestFalseTrueTrue
- | BlockState::OakFenceGate_WestFalseTrueFalse
- | BlockState::OakFenceGate_EastTrueTrueTrue
- | BlockState::OakFenceGate_EastTrueTrueFalse
- | BlockState::OakFenceGate_EastFalseTrueTrue
- | BlockState::OakFenceGate_EastFalseTrueFalse
- | BlockState::NetherWart__0
- | BlockState::NetherWart__1
- | BlockState::NetherWart__2
- | BlockState::NetherWart__3
- | BlockState::EndPortal
- | BlockState::TripwireHook_TrueNorthTrue
- | BlockState::TripwireHook_TrueNorthFalse
- | BlockState::TripwireHook_TrueSouthTrue
- | BlockState::TripwireHook_TrueSouthFalse
- | BlockState::TripwireHook_TrueWestTrue
- | BlockState::TripwireHook_TrueWestFalse
- | BlockState::TripwireHook_TrueEastTrue
- | BlockState::TripwireHook_TrueEastFalse
- | BlockState::TripwireHook_FalseNorthTrue
- | BlockState::TripwireHook_FalseNorthFalse
- | BlockState::TripwireHook_FalseSouthTrue
- | BlockState::TripwireHook_FalseSouthFalse
- | BlockState::TripwireHook_FalseWestTrue
- | BlockState::TripwireHook_FalseWestFalse
- | BlockState::TripwireHook_FalseEastTrue
- | BlockState::TripwireHook_FalseEastFalse
- | BlockState::Tripwire_TrueTrueTrueTrueTrueTrueTrue
- | BlockState::Tripwire_TrueTrueTrueTrueTrueTrueFalse
- | BlockState::Tripwire_TrueTrueTrueTrueTrueFalseTrue
- | BlockState::Tripwire_TrueTrueTrueTrueTrueFalseFalse
- | BlockState::Tripwire_TrueTrueTrueTrueFalseTrueTrue
- | BlockState::Tripwire_TrueTrueTrueTrueFalseTrueFalse
- | BlockState::Tripwire_TrueTrueTrueTrueFalseFalseTrue
- | BlockState::Tripwire_TrueTrueTrueTrueFalseFalseFalse
- | BlockState::Tripwire_TrueTrueTrueFalseTrueTrueTrue
- | BlockState::Tripwire_TrueTrueTrueFalseTrueTrueFalse
- | BlockState::Tripwire_TrueTrueTrueFalseTrueFalseTrue
- | BlockState::Tripwire_TrueTrueTrueFalseTrueFalseFalse
- | BlockState::Tripwire_TrueTrueTrueFalseFalseTrueTrue
- | BlockState::Tripwire_TrueTrueTrueFalseFalseTrueFalse
- | BlockState::Tripwire_TrueTrueTrueFalseFalseFalseTrue
- | BlockState::Tripwire_TrueTrueTrueFalseFalseFalseFalse
- | BlockState::Tripwire_TrueTrueFalseTrueTrueTrueTrue
- | BlockState::Tripwire_TrueTrueFalseTrueTrueTrueFalse
- | BlockState::Tripwire_TrueTrueFalseTrueTrueFalseTrue
- | BlockState::Tripwire_TrueTrueFalseTrueTrueFalseFalse
- | BlockState::Tripwire_TrueTrueFalseTrueFalseTrueTrue
- | BlockState::Tripwire_TrueTrueFalseTrueFalseTrueFalse
- | BlockState::Tripwire_TrueTrueFalseTrueFalseFalseTrue
- | BlockState::Tripwire_TrueTrueFalseTrueFalseFalseFalse
- | BlockState::Tripwire_TrueTrueFalseFalseTrueTrueTrue
- | BlockState::Tripwire_TrueTrueFalseFalseTrueTrueFalse
- | BlockState::Tripwire_TrueTrueFalseFalseTrueFalseTrue
- | BlockState::Tripwire_TrueTrueFalseFalseTrueFalseFalse
- | BlockState::Tripwire_TrueTrueFalseFalseFalseTrueTrue
- | BlockState::Tripwire_TrueTrueFalseFalseFalseTrueFalse
- | BlockState::Tripwire_TrueTrueFalseFalseFalseFalseTrue
- | BlockState::Tripwire_TrueTrueFalseFalseFalseFalseFalse
- | BlockState::Tripwire_TrueFalseTrueTrueTrueTrueTrue
- | BlockState::Tripwire_TrueFalseTrueTrueTrueTrueFalse
- | BlockState::Tripwire_TrueFalseTrueTrueTrueFalseTrue
- | BlockState::Tripwire_TrueFalseTrueTrueTrueFalseFalse
- | BlockState::Tripwire_TrueFalseTrueTrueFalseTrueTrue
- | BlockState::Tripwire_TrueFalseTrueTrueFalseTrueFalse
- | BlockState::Tripwire_TrueFalseTrueTrueFalseFalseTrue
- | BlockState::Tripwire_TrueFalseTrueTrueFalseFalseFalse
- | BlockState::Tripwire_TrueFalseTrueFalseTrueTrueTrue
- | BlockState::Tripwire_TrueFalseTrueFalseTrueTrueFalse
- | BlockState::Tripwire_TrueFalseTrueFalseTrueFalseTrue
- | BlockState::Tripwire_TrueFalseTrueFalseTrueFalseFalse
- | BlockState::Tripwire_TrueFalseTrueFalseFalseTrueTrue
- | BlockState::Tripwire_TrueFalseTrueFalseFalseTrueFalse
- | BlockState::Tripwire_TrueFalseTrueFalseFalseFalseTrue
- | BlockState::Tripwire_TrueFalseTrueFalseFalseFalseFalse
- | BlockState::Tripwire_TrueFalseFalseTrueTrueTrueTrue
- | BlockState::Tripwire_TrueFalseFalseTrueTrueTrueFalse
- | BlockState::Tripwire_TrueFalseFalseTrueTrueFalseTrue
- | BlockState::Tripwire_TrueFalseFalseTrueTrueFalseFalse
- | BlockState::Tripwire_TrueFalseFalseTrueFalseTrueTrue
- | BlockState::Tripwire_TrueFalseFalseTrueFalseTrueFalse
- | BlockState::Tripwire_TrueFalseFalseTrueFalseFalseTrue
- | BlockState::Tripwire_TrueFalseFalseTrueFalseFalseFalse
- | BlockState::Tripwire_TrueFalseFalseFalseTrueTrueTrue
- | BlockState::Tripwire_TrueFalseFalseFalseTrueTrueFalse
- | BlockState::Tripwire_TrueFalseFalseFalseTrueFalseTrue
- | BlockState::Tripwire_TrueFalseFalseFalseTrueFalseFalse
- | BlockState::Tripwire_TrueFalseFalseFalseFalseTrueTrue
- | BlockState::Tripwire_TrueFalseFalseFalseFalseTrueFalse
- | BlockState::Tripwire_TrueFalseFalseFalseFalseFalseTrue
- | BlockState::Tripwire_TrueFalseFalseFalseFalseFalseFalse
- | BlockState::Tripwire_FalseTrueTrueTrueTrueTrueTrue
- | BlockState::Tripwire_FalseTrueTrueTrueTrueTrueFalse
- | BlockState::Tripwire_FalseTrueTrueTrueTrueFalseTrue
- | BlockState::Tripwire_FalseTrueTrueTrueTrueFalseFalse
- | BlockState::Tripwire_FalseTrueTrueTrueFalseTrueTrue
- | BlockState::Tripwire_FalseTrueTrueTrueFalseTrueFalse
- | BlockState::Tripwire_FalseTrueTrueTrueFalseFalseTrue
- | BlockState::Tripwire_FalseTrueTrueTrueFalseFalseFalse
- | BlockState::Tripwire_FalseTrueTrueFalseTrueTrueTrue
- | BlockState::Tripwire_FalseTrueTrueFalseTrueTrueFalse
- | BlockState::Tripwire_FalseTrueTrueFalseTrueFalseTrue
- | BlockState::Tripwire_FalseTrueTrueFalseTrueFalseFalse
- | BlockState::Tripwire_FalseTrueTrueFalseFalseTrueTrue
- | BlockState::Tripwire_FalseTrueTrueFalseFalseTrueFalse
- | BlockState::Tripwire_FalseTrueTrueFalseFalseFalseTrue
- | BlockState::Tripwire_FalseTrueTrueFalseFalseFalseFalse
- | BlockState::Tripwire_FalseTrueFalseTrueTrueTrueTrue
- | BlockState::Tripwire_FalseTrueFalseTrueTrueTrueFalse
- | BlockState::Tripwire_FalseTrueFalseTrueTrueFalseTrue
- | BlockState::Tripwire_FalseTrueFalseTrueTrueFalseFalse
- | BlockState::Tripwire_FalseTrueFalseTrueFalseTrueTrue
- | BlockState::Tripwire_FalseTrueFalseTrueFalseTrueFalse
- | BlockState::Tripwire_FalseTrueFalseTrueFalseFalseTrue
- | BlockState::Tripwire_FalseTrueFalseTrueFalseFalseFalse
- | BlockState::Tripwire_FalseTrueFalseFalseTrueTrueTrue
- | BlockState::Tripwire_FalseTrueFalseFalseTrueTrueFalse
- | BlockState::Tripwire_FalseTrueFalseFalseTrueFalseTrue
- | BlockState::Tripwire_FalseTrueFalseFalseTrueFalseFalse
- | BlockState::Tripwire_FalseTrueFalseFalseFalseTrueTrue
- | BlockState::Tripwire_FalseTrueFalseFalseFalseTrueFalse
- | BlockState::Tripwire_FalseTrueFalseFalseFalseFalseTrue
- | BlockState::Tripwire_FalseTrueFalseFalseFalseFalseFalse
- | BlockState::Tripwire_FalseFalseTrueTrueTrueTrueTrue
- | BlockState::Tripwire_FalseFalseTrueTrueTrueTrueFalse
- | BlockState::Tripwire_FalseFalseTrueTrueTrueFalseTrue
- | BlockState::Tripwire_FalseFalseTrueTrueTrueFalseFalse
- | BlockState::Tripwire_FalseFalseTrueTrueFalseTrueTrue
- | BlockState::Tripwire_FalseFalseTrueTrueFalseTrueFalse
- | BlockState::Tripwire_FalseFalseTrueTrueFalseFalseTrue
- | BlockState::Tripwire_FalseFalseTrueTrueFalseFalseFalse
- | BlockState::Tripwire_FalseFalseTrueFalseTrueTrueTrue
- | BlockState::Tripwire_FalseFalseTrueFalseTrueTrueFalse
- | BlockState::Tripwire_FalseFalseTrueFalseTrueFalseTrue
- | BlockState::Tripwire_FalseFalseTrueFalseTrueFalseFalse
- | BlockState::Tripwire_FalseFalseTrueFalseFalseTrueTrue
- | BlockState::Tripwire_FalseFalseTrueFalseFalseTrueFalse
- | BlockState::Tripwire_FalseFalseTrueFalseFalseFalseTrue
- | BlockState::Tripwire_FalseFalseTrueFalseFalseFalseFalse
- | BlockState::Tripwire_FalseFalseFalseTrueTrueTrueTrue
- | BlockState::Tripwire_FalseFalseFalseTrueTrueTrueFalse
- | BlockState::Tripwire_FalseFalseFalseTrueTrueFalseTrue
- | BlockState::Tripwire_FalseFalseFalseTrueTrueFalseFalse
- | BlockState::Tripwire_FalseFalseFalseTrueFalseTrueTrue
- | BlockState::Tripwire_FalseFalseFalseTrueFalseTrueFalse
- | BlockState::Tripwire_FalseFalseFalseTrueFalseFalseTrue
- | BlockState::Tripwire_FalseFalseFalseTrueFalseFalseFalse
- | BlockState::Tripwire_FalseFalseFalseFalseTrueTrueTrue
- | BlockState::Tripwire_FalseFalseFalseFalseTrueTrueFalse
- | BlockState::Tripwire_FalseFalseFalseFalseTrueFalseTrue
- | BlockState::Tripwire_FalseFalseFalseFalseTrueFalseFalse
- | BlockState::Tripwire_FalseFalseFalseFalseFalseTrueTrue
- | BlockState::Tripwire_FalseFalseFalseFalseFalseTrueFalse
- | BlockState::Tripwire_FalseFalseFalseFalseFalseFalseTrue
- | BlockState::Tripwire_FalseFalseFalseFalseFalseFalseFalse
- | BlockState::CobblestoneWall_NoneNoneNoneFalseTrueNone
- | BlockState::CobblestoneWall_NoneNoneNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneNoneNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneNoneNoneFalseFalseNone
- | BlockState::Carrots__0
- | BlockState::Carrots__1
- | BlockState::Carrots__2
- | BlockState::Carrots__3
- | BlockState::Carrots__4
- | BlockState::Carrots__5
- | BlockState::Carrots__6
- | BlockState::Carrots__7
- | BlockState::Potatoes__0
- | BlockState::Potatoes__1
- | BlockState::Potatoes__2
- | BlockState::Potatoes__3
- | BlockState::Potatoes__4
- | BlockState::Potatoes__5
- | BlockState::Potatoes__6
- | BlockState::Potatoes__7
- | BlockState::OakButton_FloorNorthTrue
- | BlockState::OakButton_FloorNorthFalse
- | BlockState::OakButton_FloorSouthTrue
- | BlockState::OakButton_FloorSouthFalse
- | BlockState::OakButton_FloorWestTrue
- | BlockState::OakButton_FloorWestFalse
- | BlockState::OakButton_FloorEastTrue
- | BlockState::OakButton_FloorEastFalse
- | BlockState::OakButton_WallNorthTrue
- | BlockState::OakButton_WallNorthFalse
- | BlockState::OakButton_WallSouthTrue
- | BlockState::OakButton_WallSouthFalse
- | BlockState::OakButton_WallWestTrue
- | BlockState::OakButton_WallWestFalse
- | BlockState::OakButton_WallEastTrue
- | BlockState::OakButton_WallEastFalse
- | BlockState::OakButton_CeilingNorthTrue
- | BlockState::OakButton_CeilingNorthFalse
- | BlockState::OakButton_CeilingSouthTrue
- | BlockState::OakButton_CeilingSouthFalse
- | BlockState::OakButton_CeilingWestTrue
- | BlockState::OakButton_CeilingWestFalse
- | BlockState::OakButton_CeilingEastTrue
- | BlockState::OakButton_CeilingEastFalse
- | BlockState::SpruceButton_FloorNorthTrue
- | BlockState::SpruceButton_FloorNorthFalse
- | BlockState::SpruceButton_FloorSouthTrue
- | BlockState::SpruceButton_FloorSouthFalse
- | BlockState::SpruceButton_FloorWestTrue
- | BlockState::SpruceButton_FloorWestFalse
- | BlockState::SpruceButton_FloorEastTrue
- | BlockState::SpruceButton_FloorEastFalse
- | BlockState::SpruceButton_WallNorthTrue
- | BlockState::SpruceButton_WallNorthFalse
- | BlockState::SpruceButton_WallSouthTrue
- | BlockState::SpruceButton_WallSouthFalse
- | BlockState::SpruceButton_WallWestTrue
- | BlockState::SpruceButton_WallWestFalse
- | BlockState::SpruceButton_WallEastTrue
- | BlockState::SpruceButton_WallEastFalse
- | BlockState::SpruceButton_CeilingNorthTrue
- | BlockState::SpruceButton_CeilingNorthFalse
- | BlockState::SpruceButton_CeilingSouthTrue
- | BlockState::SpruceButton_CeilingSouthFalse
- | BlockState::SpruceButton_CeilingWestTrue
- | BlockState::SpruceButton_CeilingWestFalse
- | BlockState::SpruceButton_CeilingEastTrue
- | BlockState::SpruceButton_CeilingEastFalse
- | BlockState::BirchButton_FloorNorthTrue
- | BlockState::BirchButton_FloorNorthFalse
- | BlockState::BirchButton_FloorSouthTrue
- | BlockState::BirchButton_FloorSouthFalse
- | BlockState::BirchButton_FloorWestTrue
- | BlockState::BirchButton_FloorWestFalse
- | BlockState::BirchButton_FloorEastTrue
- | BlockState::BirchButton_FloorEastFalse
- | BlockState::BirchButton_WallNorthTrue
- | BlockState::BirchButton_WallNorthFalse
- | BlockState::BirchButton_WallSouthTrue
- | BlockState::BirchButton_WallSouthFalse
- | BlockState::BirchButton_WallWestTrue
- | BlockState::BirchButton_WallWestFalse
- | BlockState::BirchButton_WallEastTrue
- | BlockState::BirchButton_WallEastFalse
- | BlockState::BirchButton_CeilingNorthTrue
- | BlockState::BirchButton_CeilingNorthFalse
- | BlockState::BirchButton_CeilingSouthTrue
- | BlockState::BirchButton_CeilingSouthFalse
- | BlockState::BirchButton_CeilingWestTrue
- | BlockState::BirchButton_CeilingWestFalse
- | BlockState::BirchButton_CeilingEastTrue
- | BlockState::BirchButton_CeilingEastFalse
- | BlockState::JungleButton_FloorNorthTrue
- | BlockState::JungleButton_FloorNorthFalse
- | BlockState::JungleButton_FloorSouthTrue
- | BlockState::JungleButton_FloorSouthFalse
- | BlockState::JungleButton_FloorWestTrue
- | BlockState::JungleButton_FloorWestFalse
- | BlockState::JungleButton_FloorEastTrue
- | BlockState::JungleButton_FloorEastFalse
- | BlockState::JungleButton_WallNorthTrue
- | BlockState::JungleButton_WallNorthFalse
- | BlockState::JungleButton_WallSouthTrue
- | BlockState::JungleButton_WallSouthFalse
- | BlockState::JungleButton_WallWestTrue
- | BlockState::JungleButton_WallWestFalse
- | BlockState::JungleButton_WallEastTrue
- | BlockState::JungleButton_WallEastFalse
- | BlockState::JungleButton_CeilingNorthTrue
- | BlockState::JungleButton_CeilingNorthFalse
- | BlockState::JungleButton_CeilingSouthTrue
- | BlockState::JungleButton_CeilingSouthFalse
- | BlockState::JungleButton_CeilingWestTrue
- | BlockState::JungleButton_CeilingWestFalse
- | BlockState::JungleButton_CeilingEastTrue
- | BlockState::JungleButton_CeilingEastFalse
- | BlockState::AcaciaButton_FloorNorthTrue
- | BlockState::AcaciaButton_FloorNorthFalse
- | BlockState::AcaciaButton_FloorSouthTrue
- | BlockState::AcaciaButton_FloorSouthFalse
- | BlockState::AcaciaButton_FloorWestTrue
- | BlockState::AcaciaButton_FloorWestFalse
- | BlockState::AcaciaButton_FloorEastTrue
- | BlockState::AcaciaButton_FloorEastFalse
- | BlockState::AcaciaButton_WallNorthTrue
- | BlockState::AcaciaButton_WallNorthFalse
- | BlockState::AcaciaButton_WallSouthTrue
- | BlockState::AcaciaButton_WallSouthFalse
- | BlockState::AcaciaButton_WallWestTrue
- | BlockState::AcaciaButton_WallWestFalse
- | BlockState::AcaciaButton_WallEastTrue
- | BlockState::AcaciaButton_WallEastFalse
- | BlockState::AcaciaButton_CeilingNorthTrue
- | BlockState::AcaciaButton_CeilingNorthFalse
- | BlockState::AcaciaButton_CeilingSouthTrue
- | BlockState::AcaciaButton_CeilingSouthFalse
- | BlockState::AcaciaButton_CeilingWestTrue
- | BlockState::AcaciaButton_CeilingWestFalse
- | BlockState::AcaciaButton_CeilingEastTrue
- | BlockState::AcaciaButton_CeilingEastFalse
- | BlockState::DarkOakButton_FloorNorthTrue
- | BlockState::DarkOakButton_FloorNorthFalse
- | BlockState::DarkOakButton_FloorSouthTrue
- | BlockState::DarkOakButton_FloorSouthFalse
- | BlockState::DarkOakButton_FloorWestTrue
- | BlockState::DarkOakButton_FloorWestFalse
- | BlockState::DarkOakButton_FloorEastTrue
- | BlockState::DarkOakButton_FloorEastFalse
- | BlockState::DarkOakButton_WallNorthTrue
- | BlockState::DarkOakButton_WallNorthFalse
- | BlockState::DarkOakButton_WallSouthTrue
- | BlockState::DarkOakButton_WallSouthFalse
- | BlockState::DarkOakButton_WallWestTrue
- | BlockState::DarkOakButton_WallWestFalse
- | BlockState::DarkOakButton_WallEastTrue
- | BlockState::DarkOakButton_WallEastFalse
- | BlockState::DarkOakButton_CeilingNorthTrue
- | BlockState::DarkOakButton_CeilingNorthFalse
- | BlockState::DarkOakButton_CeilingSouthTrue
- | BlockState::DarkOakButton_CeilingSouthFalse
- | BlockState::DarkOakButton_CeilingWestTrue
- | BlockState::DarkOakButton_CeilingWestFalse
- | BlockState::DarkOakButton_CeilingEastTrue
- | BlockState::DarkOakButton_CeilingEastFalse
- | BlockState::MangroveButton_FloorNorthTrue
- | BlockState::MangroveButton_FloorNorthFalse
- | BlockState::MangroveButton_FloorSouthTrue
- | BlockState::MangroveButton_FloorSouthFalse
- | BlockState::MangroveButton_FloorWestTrue
- | BlockState::MangroveButton_FloorWestFalse
- | BlockState::MangroveButton_FloorEastTrue
- | BlockState::MangroveButton_FloorEastFalse
- | BlockState::MangroveButton_WallNorthTrue
- | BlockState::MangroveButton_WallNorthFalse
- | BlockState::MangroveButton_WallSouthTrue
- | BlockState::MangroveButton_WallSouthFalse
- | BlockState::MangroveButton_WallWestTrue
- | BlockState::MangroveButton_WallWestFalse
- | BlockState::MangroveButton_WallEastTrue
- | BlockState::MangroveButton_WallEastFalse
- | BlockState::MangroveButton_CeilingNorthTrue
- | BlockState::MangroveButton_CeilingNorthFalse
- | BlockState::MangroveButton_CeilingSouthTrue
- | BlockState::MangroveButton_CeilingSouthFalse
- | BlockState::MangroveButton_CeilingWestTrue
- | BlockState::MangroveButton_CeilingWestFalse
- | BlockState::MangroveButton_CeilingEastTrue
- | BlockState::MangroveButton_CeilingEastFalse
- | BlockState::BambooButton_FloorNorthTrue
- | BlockState::BambooButton_FloorNorthFalse
- | BlockState::BambooButton_FloorSouthTrue
- | BlockState::BambooButton_FloorSouthFalse
- | BlockState::BambooButton_FloorWestTrue
- | BlockState::BambooButton_FloorWestFalse
- | BlockState::BambooButton_FloorEastTrue
- | BlockState::BambooButton_FloorEastFalse
- | BlockState::BambooButton_WallNorthTrue
- | BlockState::BambooButton_WallNorthFalse
- | BlockState::BambooButton_WallSouthTrue
- | BlockState::BambooButton_WallSouthFalse
- | BlockState::BambooButton_WallWestTrue
- | BlockState::BambooButton_WallWestFalse
- | BlockState::BambooButton_WallEastTrue
- | BlockState::BambooButton_WallEastFalse
- | BlockState::BambooButton_CeilingNorthTrue
- | BlockState::BambooButton_CeilingNorthFalse
- | BlockState::BambooButton_CeilingSouthTrue
- | BlockState::BambooButton_CeilingSouthFalse
- | BlockState::BambooButton_CeilingWestTrue
- | BlockState::BambooButton_CeilingWestFalse
- | BlockState::BambooButton_CeilingEastTrue
- | BlockState::BambooButton_CeilingEastFalse
- | BlockState::LightWeightedPressurePlate__0
- | BlockState::LightWeightedPressurePlate__1
- | BlockState::LightWeightedPressurePlate__2
- | BlockState::LightWeightedPressurePlate__3
- | BlockState::LightWeightedPressurePlate__4
- | BlockState::LightWeightedPressurePlate__5
- | BlockState::LightWeightedPressurePlate__6
- | BlockState::LightWeightedPressurePlate__7
- | BlockState::LightWeightedPressurePlate__8
- | BlockState::LightWeightedPressurePlate__9
- | BlockState::LightWeightedPressurePlate__10
- | BlockState::LightWeightedPressurePlate__11
- | BlockState::LightWeightedPressurePlate__12
- | BlockState::LightWeightedPressurePlate__13
- | BlockState::LightWeightedPressurePlate__14
- | BlockState::LightWeightedPressurePlate__15
- | BlockState::HeavyWeightedPressurePlate__0
- | BlockState::HeavyWeightedPressurePlate__1
- | BlockState::HeavyWeightedPressurePlate__2
- | BlockState::HeavyWeightedPressurePlate__3
- | BlockState::HeavyWeightedPressurePlate__4
- | BlockState::HeavyWeightedPressurePlate__5
- | BlockState::HeavyWeightedPressurePlate__6
- | BlockState::HeavyWeightedPressurePlate__7
- | BlockState::HeavyWeightedPressurePlate__8
- | BlockState::HeavyWeightedPressurePlate__9
- | BlockState::HeavyWeightedPressurePlate__10
- | BlockState::HeavyWeightedPressurePlate__11
- | BlockState::HeavyWeightedPressurePlate__12
- | BlockState::HeavyWeightedPressurePlate__13
- | BlockState::HeavyWeightedPressurePlate__14
- | BlockState::HeavyWeightedPressurePlate__15
- | BlockState::ActivatorRail_TrueNorthSouthTrue
- | BlockState::ActivatorRail_TrueNorthSouthFalse
- | BlockState::ActivatorRail_TrueEastWestTrue
- | BlockState::ActivatorRail_TrueEastWestFalse
- | BlockState::ActivatorRail_TrueAscendingEastTrue
- | BlockState::ActivatorRail_TrueAscendingEastFalse
- | BlockState::ActivatorRail_TrueAscendingWestTrue
- | BlockState::ActivatorRail_TrueAscendingWestFalse
- | BlockState::ActivatorRail_TrueAscendingNorthTrue
- | BlockState::ActivatorRail_TrueAscendingNorthFalse
- | BlockState::ActivatorRail_TrueAscendingSouthTrue
- | BlockState::ActivatorRail_TrueAscendingSouthFalse
- | BlockState::ActivatorRail_FalseNorthSouthTrue
- | BlockState::ActivatorRail_FalseNorthSouthFalse
- | BlockState::ActivatorRail_FalseEastWestTrue
- | BlockState::ActivatorRail_FalseEastWestFalse
- | BlockState::ActivatorRail_FalseAscendingEastTrue
- | BlockState::ActivatorRail_FalseAscendingEastFalse
- | BlockState::ActivatorRail_FalseAscendingWestTrue
- | BlockState::ActivatorRail_FalseAscendingWestFalse
- | BlockState::ActivatorRail_FalseAscendingNorthTrue
- | BlockState::ActivatorRail_FalseAscendingNorthFalse
- | BlockState::ActivatorRail_FalseAscendingSouthTrue
- | BlockState::ActivatorRail_FalseAscendingSouthFalse
- | BlockState::Light__0True
- | BlockState::Light__0False
- | BlockState::Light__1True
- | BlockState::Light__1False
- | BlockState::Light__2True
- | BlockState::Light__2False
- | BlockState::Light__3True
- | BlockState::Light__3False
- | BlockState::Light__4True
- | BlockState::Light__4False
- | BlockState::Light__5True
- | BlockState::Light__5False
- | BlockState::Light__6True
- | BlockState::Light__6False
- | BlockState::Light__7True
- | BlockState::Light__7False
- | BlockState::Light__8True
- | BlockState::Light__8False
- | BlockState::Light__9True
- | BlockState::Light__9False
- | BlockState::Light__10True
- | BlockState::Light__10False
- | BlockState::Light__11True
- | BlockState::Light__11False
- | BlockState::Light__12True
- | BlockState::Light__12False
- | BlockState::Light__13True
- | BlockState::Light__13False
- | BlockState::Light__14True
- | BlockState::Light__14False
- | BlockState::Light__15True
- | BlockState::Light__15False
- | BlockState::Sunflower_Upper
- | BlockState::Sunflower_Lower
- | BlockState::Lilac_Upper
- | BlockState::Lilac_Lower
- | BlockState::RoseBush_Upper
- | BlockState::RoseBush_Lower
- | BlockState::Peony_Upper
- | BlockState::Peony_Lower
- | BlockState::TallGrass_Upper
- | BlockState::TallGrass_Lower
- | BlockState::LargeFern_Upper
- | BlockState::LargeFern_Lower
- | BlockState::WhiteBanner__0
- | BlockState::WhiteBanner__1
- | BlockState::WhiteBanner__2
- | BlockState::WhiteBanner__3
- | BlockState::WhiteBanner__4
- | BlockState::WhiteBanner__5
- | BlockState::WhiteBanner__6
- | BlockState::WhiteBanner__7
- | BlockState::WhiteBanner__8
- | BlockState::WhiteBanner__9
- | BlockState::WhiteBanner__10
- | BlockState::WhiteBanner__11
- | BlockState::WhiteBanner__12
- | BlockState::WhiteBanner__13
- | BlockState::WhiteBanner__14
- | BlockState::WhiteBanner__15
- | BlockState::OrangeBanner__0
- | BlockState::OrangeBanner__1
- | BlockState::OrangeBanner__2
- | BlockState::OrangeBanner__3
- | BlockState::OrangeBanner__4
- | BlockState::OrangeBanner__5
- | BlockState::OrangeBanner__6
- | BlockState::OrangeBanner__7
- | BlockState::OrangeBanner__8
- | BlockState::OrangeBanner__9
- | BlockState::OrangeBanner__10
- | BlockState::OrangeBanner__11
- | BlockState::OrangeBanner__12
- | BlockState::OrangeBanner__13
- | BlockState::OrangeBanner__14
- | BlockState::OrangeBanner__15
- | BlockState::MagentaBanner__0
- | BlockState::MagentaBanner__1
- | BlockState::MagentaBanner__2
- | BlockState::MagentaBanner__3
- | BlockState::MagentaBanner__4
- | BlockState::MagentaBanner__5
- | BlockState::MagentaBanner__6
- | BlockState::MagentaBanner__7
- | BlockState::MagentaBanner__8
- | BlockState::MagentaBanner__9
- | BlockState::MagentaBanner__10
- | BlockState::MagentaBanner__11
- | BlockState::MagentaBanner__12
- | BlockState::MagentaBanner__13
- | BlockState::MagentaBanner__14
- | BlockState::MagentaBanner__15
- | BlockState::LightBlueBanner__0
- | BlockState::LightBlueBanner__1
- | BlockState::LightBlueBanner__2
- | BlockState::LightBlueBanner__3
- | BlockState::LightBlueBanner__4
- | BlockState::LightBlueBanner__5
- | BlockState::LightBlueBanner__6
- | BlockState::LightBlueBanner__7
- | BlockState::LightBlueBanner__8
- | BlockState::LightBlueBanner__9
- | BlockState::LightBlueBanner__10
- | BlockState::LightBlueBanner__11
- | BlockState::LightBlueBanner__12
- | BlockState::LightBlueBanner__13
- | BlockState::LightBlueBanner__14
- | BlockState::LightBlueBanner__15
- | BlockState::YellowBanner__0
- | BlockState::YellowBanner__1
- | BlockState::YellowBanner__2
- | BlockState::YellowBanner__3
- | BlockState::YellowBanner__4
- | BlockState::YellowBanner__5
- | BlockState::YellowBanner__6
- | BlockState::YellowBanner__7
- | BlockState::YellowBanner__8
- | BlockState::YellowBanner__9
- | BlockState::YellowBanner__10
- | BlockState::YellowBanner__11
- | BlockState::YellowBanner__12
- | BlockState::YellowBanner__13
- | BlockState::YellowBanner__14
- | BlockState::YellowBanner__15
- | BlockState::LimeBanner__0
- | BlockState::LimeBanner__1
- | BlockState::LimeBanner__2
- | BlockState::LimeBanner__3
- | BlockState::LimeBanner__4
- | BlockState::LimeBanner__5
- | BlockState::LimeBanner__6
- | BlockState::LimeBanner__7
- | BlockState::LimeBanner__8
- | BlockState::LimeBanner__9
- | BlockState::LimeBanner__10
- | BlockState::LimeBanner__11
- | BlockState::LimeBanner__12
- | BlockState::LimeBanner__13
- | BlockState::LimeBanner__14
- | BlockState::LimeBanner__15
- | BlockState::PinkBanner__0
- | BlockState::PinkBanner__1
- | BlockState::PinkBanner__2
- | BlockState::PinkBanner__3
- | BlockState::PinkBanner__4
- | BlockState::PinkBanner__5
- | BlockState::PinkBanner__6
- | BlockState::PinkBanner__7
- | BlockState::PinkBanner__8
- | BlockState::PinkBanner__9
- | BlockState::PinkBanner__10
- | BlockState::PinkBanner__11
- | BlockState::PinkBanner__12
- | BlockState::PinkBanner__13
- | BlockState::PinkBanner__14
- | BlockState::PinkBanner__15
- | BlockState::GrayBanner__0
- | BlockState::GrayBanner__1
- | BlockState::GrayBanner__2
- | BlockState::GrayBanner__3
- | BlockState::GrayBanner__4
- | BlockState::GrayBanner__5
- | BlockState::GrayBanner__6
- | BlockState::GrayBanner__7
- | BlockState::GrayBanner__8
- | BlockState::GrayBanner__9
- | BlockState::GrayBanner__10
- | BlockState::GrayBanner__11
- | BlockState::GrayBanner__12
- | BlockState::GrayBanner__13
- | BlockState::GrayBanner__14
- | BlockState::GrayBanner__15
- | BlockState::LightGrayBanner__0
- | BlockState::LightGrayBanner__1
- | BlockState::LightGrayBanner__2
- | BlockState::LightGrayBanner__3
- | BlockState::LightGrayBanner__4
- | BlockState::LightGrayBanner__5
- | BlockState::LightGrayBanner__6
- | BlockState::LightGrayBanner__7
- | BlockState::LightGrayBanner__8
- | BlockState::LightGrayBanner__9
- | BlockState::LightGrayBanner__10
- | BlockState::LightGrayBanner__11
- | BlockState::LightGrayBanner__12
- | BlockState::LightGrayBanner__13
- | BlockState::LightGrayBanner__14
- | BlockState::LightGrayBanner__15
- | BlockState::CyanBanner__0
- | BlockState::CyanBanner__1
- | BlockState::CyanBanner__2
- | BlockState::CyanBanner__3
- | BlockState::CyanBanner__4
- | BlockState::CyanBanner__5
- | BlockState::CyanBanner__6
- | BlockState::CyanBanner__7
- | BlockState::CyanBanner__8
- | BlockState::CyanBanner__9
- | BlockState::CyanBanner__10
- | BlockState::CyanBanner__11
- | BlockState::CyanBanner__12
- | BlockState::CyanBanner__13
- | BlockState::CyanBanner__14
- | BlockState::CyanBanner__15
- | BlockState::PurpleBanner__0
- | BlockState::PurpleBanner__1
- | BlockState::PurpleBanner__2
- | BlockState::PurpleBanner__3
- | BlockState::PurpleBanner__4
- | BlockState::PurpleBanner__5
- | BlockState::PurpleBanner__6
- | BlockState::PurpleBanner__7
- | BlockState::PurpleBanner__8
- | BlockState::PurpleBanner__9
- | BlockState::PurpleBanner__10
- | BlockState::PurpleBanner__11
- | BlockState::PurpleBanner__12
- | BlockState::PurpleBanner__13
- | BlockState::PurpleBanner__14
- | BlockState::PurpleBanner__15
- | BlockState::BlueBanner__0
- | BlockState::BlueBanner__1
- | BlockState::BlueBanner__2
- | BlockState::BlueBanner__3
- | BlockState::BlueBanner__4
- | BlockState::BlueBanner__5
- | BlockState::BlueBanner__6
- | BlockState::BlueBanner__7
- | BlockState::BlueBanner__8
- | BlockState::BlueBanner__9
- | BlockState::BlueBanner__10
- | BlockState::BlueBanner__11
- | BlockState::BlueBanner__12
- | BlockState::BlueBanner__13
- | BlockState::BlueBanner__14
- | BlockState::BlueBanner__15
- | BlockState::BrownBanner__0
- | BlockState::BrownBanner__1
- | BlockState::BrownBanner__2
- | BlockState::BrownBanner__3
- | BlockState::BrownBanner__4
- | BlockState::BrownBanner__5
- | BlockState::BrownBanner__6
- | BlockState::BrownBanner__7
- | BlockState::BrownBanner__8
- | BlockState::BrownBanner__9
- | BlockState::BrownBanner__10
- | BlockState::BrownBanner__11
- | BlockState::BrownBanner__12
- | BlockState::BrownBanner__13
- | BlockState::BrownBanner__14
- | BlockState::BrownBanner__15
- | BlockState::GreenBanner__0
- | BlockState::GreenBanner__1
- | BlockState::GreenBanner__2
- | BlockState::GreenBanner__3
- | BlockState::GreenBanner__4
- | BlockState::GreenBanner__5
- | BlockState::GreenBanner__6
- | BlockState::GreenBanner__7
- | BlockState::GreenBanner__8
- | BlockState::GreenBanner__9
- | BlockState::GreenBanner__10
- | BlockState::GreenBanner__11
- | BlockState::GreenBanner__12
- | BlockState::GreenBanner__13
- | BlockState::GreenBanner__14
- | BlockState::GreenBanner__15
- | BlockState::RedBanner__0
- | BlockState::RedBanner__1
- | BlockState::RedBanner__2
- | BlockState::RedBanner__3
- | BlockState::RedBanner__4
- | BlockState::RedBanner__5
- | BlockState::RedBanner__6
- | BlockState::RedBanner__7
- | BlockState::RedBanner__8
- | BlockState::RedBanner__9
- | BlockState::RedBanner__10
- | BlockState::RedBanner__11
- | BlockState::RedBanner__12
- | BlockState::RedBanner__13
- | BlockState::RedBanner__14
- | BlockState::RedBanner__15
- | BlockState::BlackBanner__0
- | BlockState::BlackBanner__1
- | BlockState::BlackBanner__2
- | BlockState::BlackBanner__3
- | BlockState::BlackBanner__4
- | BlockState::BlackBanner__5
- | BlockState::BlackBanner__6
- | BlockState::BlackBanner__7
- | BlockState::BlackBanner__8
- | BlockState::BlackBanner__9
- | BlockState::BlackBanner__10
- | BlockState::BlackBanner__11
- | BlockState::BlackBanner__12
- | BlockState::BlackBanner__13
- | BlockState::BlackBanner__14
- | BlockState::BlackBanner__15
- | BlockState::WhiteWallBanner_North
- | BlockState::WhiteWallBanner_South
- | BlockState::WhiteWallBanner_West
- | BlockState::WhiteWallBanner_East
- | BlockState::OrangeWallBanner_North
- | BlockState::OrangeWallBanner_South
- | BlockState::OrangeWallBanner_West
- | BlockState::OrangeWallBanner_East
- | BlockState::MagentaWallBanner_North
- | BlockState::MagentaWallBanner_South
- | BlockState::MagentaWallBanner_West
- | BlockState::MagentaWallBanner_East
- | BlockState::LightBlueWallBanner_North
- | BlockState::LightBlueWallBanner_South
- | BlockState::LightBlueWallBanner_West
- | BlockState::LightBlueWallBanner_East
- | BlockState::YellowWallBanner_North
- | BlockState::YellowWallBanner_South
- | BlockState::YellowWallBanner_West
- | BlockState::YellowWallBanner_East
- | BlockState::LimeWallBanner_North
- | BlockState::LimeWallBanner_South
- | BlockState::LimeWallBanner_West
- | BlockState::LimeWallBanner_East
- | BlockState::PinkWallBanner_North
- | BlockState::PinkWallBanner_South
- | BlockState::PinkWallBanner_West
- | BlockState::PinkWallBanner_East
- | BlockState::GrayWallBanner_North
- | BlockState::GrayWallBanner_South
- | BlockState::GrayWallBanner_West
- | BlockState::GrayWallBanner_East
- | BlockState::LightGrayWallBanner_North
- | BlockState::LightGrayWallBanner_South
- | BlockState::LightGrayWallBanner_West
- | BlockState::LightGrayWallBanner_East
- | BlockState::CyanWallBanner_North
- | BlockState::CyanWallBanner_South
- | BlockState::CyanWallBanner_West
- | BlockState::CyanWallBanner_East
- | BlockState::PurpleWallBanner_North
- | BlockState::PurpleWallBanner_South
- | BlockState::PurpleWallBanner_West
- | BlockState::PurpleWallBanner_East
- | BlockState::BlueWallBanner_North
- | BlockState::BlueWallBanner_South
- | BlockState::BlueWallBanner_West
- | BlockState::BlueWallBanner_East
- | BlockState::BrownWallBanner_North
- | BlockState::BrownWallBanner_South
- | BlockState::BrownWallBanner_West
- | BlockState::BrownWallBanner_East
- | BlockState::GreenWallBanner_North
- | BlockState::GreenWallBanner_South
- | BlockState::GreenWallBanner_West
- | BlockState::GreenWallBanner_East
- | BlockState::RedWallBanner_North
- | BlockState::RedWallBanner_South
- | BlockState::RedWallBanner_West
- | BlockState::RedWallBanner_East
- | BlockState::BlackWallBanner_North
- | BlockState::BlackWallBanner_South
- | BlockState::BlackWallBanner_West
- | BlockState::BlackWallBanner_East
- | BlockState::SpruceFenceGate_NorthTrueTrueTrue
- | BlockState::SpruceFenceGate_NorthTrueTrueFalse
- | BlockState::SpruceFenceGate_NorthFalseTrueTrue
- | BlockState::SpruceFenceGate_NorthFalseTrueFalse
- | BlockState::SpruceFenceGate_SouthTrueTrueTrue
- | BlockState::SpruceFenceGate_SouthTrueTrueFalse
- | BlockState::SpruceFenceGate_SouthFalseTrueTrue
- | BlockState::SpruceFenceGate_SouthFalseTrueFalse
- | BlockState::SpruceFenceGate_WestTrueTrueTrue
- | BlockState::SpruceFenceGate_WestTrueTrueFalse
- | BlockState::SpruceFenceGate_WestFalseTrueTrue
- | BlockState::SpruceFenceGate_WestFalseTrueFalse
- | BlockState::SpruceFenceGate_EastTrueTrueTrue
- | BlockState::SpruceFenceGate_EastTrueTrueFalse
- | BlockState::SpruceFenceGate_EastFalseTrueTrue
- | BlockState::SpruceFenceGate_EastFalseTrueFalse
- | BlockState::BirchFenceGate_NorthTrueTrueTrue
- | BlockState::BirchFenceGate_NorthTrueTrueFalse
- | BlockState::BirchFenceGate_NorthFalseTrueTrue
- | BlockState::BirchFenceGate_NorthFalseTrueFalse
- | BlockState::BirchFenceGate_SouthTrueTrueTrue
- | BlockState::BirchFenceGate_SouthTrueTrueFalse
- | BlockState::BirchFenceGate_SouthFalseTrueTrue
- | BlockState::BirchFenceGate_SouthFalseTrueFalse
- | BlockState::BirchFenceGate_WestTrueTrueTrue
- | BlockState::BirchFenceGate_WestTrueTrueFalse
- | BlockState::BirchFenceGate_WestFalseTrueTrue
- | BlockState::BirchFenceGate_WestFalseTrueFalse
- | BlockState::BirchFenceGate_EastTrueTrueTrue
- | BlockState::BirchFenceGate_EastTrueTrueFalse
- | BlockState::BirchFenceGate_EastFalseTrueTrue
- | BlockState::BirchFenceGate_EastFalseTrueFalse
- | BlockState::JungleFenceGate_NorthTrueTrueTrue
- | BlockState::JungleFenceGate_NorthTrueTrueFalse
- | BlockState::JungleFenceGate_NorthFalseTrueTrue
- | BlockState::JungleFenceGate_NorthFalseTrueFalse
- | BlockState::JungleFenceGate_SouthTrueTrueTrue
- | BlockState::JungleFenceGate_SouthTrueTrueFalse
- | BlockState::JungleFenceGate_SouthFalseTrueTrue
- | BlockState::JungleFenceGate_SouthFalseTrueFalse
- | BlockState::JungleFenceGate_WestTrueTrueTrue
- | BlockState::JungleFenceGate_WestTrueTrueFalse
- | BlockState::JungleFenceGate_WestFalseTrueTrue
- | BlockState::JungleFenceGate_WestFalseTrueFalse
- | BlockState::JungleFenceGate_EastTrueTrueTrue
- | BlockState::JungleFenceGate_EastTrueTrueFalse
- | BlockState::JungleFenceGate_EastFalseTrueTrue
- | BlockState::JungleFenceGate_EastFalseTrueFalse
- | BlockState::AcaciaFenceGate_NorthTrueTrueTrue
- | BlockState::AcaciaFenceGate_NorthTrueTrueFalse
- | BlockState::AcaciaFenceGate_NorthFalseTrueTrue
- | BlockState::AcaciaFenceGate_NorthFalseTrueFalse
- | BlockState::AcaciaFenceGate_SouthTrueTrueTrue
- | BlockState::AcaciaFenceGate_SouthTrueTrueFalse
- | BlockState::AcaciaFenceGate_SouthFalseTrueTrue
- | BlockState::AcaciaFenceGate_SouthFalseTrueFalse
- | BlockState::AcaciaFenceGate_WestTrueTrueTrue
- | BlockState::AcaciaFenceGate_WestTrueTrueFalse
- | BlockState::AcaciaFenceGate_WestFalseTrueTrue
- | BlockState::AcaciaFenceGate_WestFalseTrueFalse
- | BlockState::AcaciaFenceGate_EastTrueTrueTrue
- | BlockState::AcaciaFenceGate_EastTrueTrueFalse
- | BlockState::AcaciaFenceGate_EastFalseTrueTrue
- | BlockState::AcaciaFenceGate_EastFalseTrueFalse
- | BlockState::DarkOakFenceGate_NorthTrueTrueTrue
- | BlockState::DarkOakFenceGate_NorthTrueTrueFalse
- | BlockState::DarkOakFenceGate_NorthFalseTrueTrue
- | BlockState::DarkOakFenceGate_NorthFalseTrueFalse
- | BlockState::DarkOakFenceGate_SouthTrueTrueTrue
- | BlockState::DarkOakFenceGate_SouthTrueTrueFalse
- | BlockState::DarkOakFenceGate_SouthFalseTrueTrue
- | BlockState::DarkOakFenceGate_SouthFalseTrueFalse
- | BlockState::DarkOakFenceGate_WestTrueTrueTrue
- | BlockState::DarkOakFenceGate_WestTrueTrueFalse
- | BlockState::DarkOakFenceGate_WestFalseTrueTrue
- | BlockState::DarkOakFenceGate_WestFalseTrueFalse
- | BlockState::DarkOakFenceGate_EastTrueTrueTrue
- | BlockState::DarkOakFenceGate_EastTrueTrueFalse
- | BlockState::DarkOakFenceGate_EastFalseTrueTrue
- | BlockState::DarkOakFenceGate_EastFalseTrueFalse
- | BlockState::MangroveFenceGate_NorthTrueTrueTrue
- | BlockState::MangroveFenceGate_NorthTrueTrueFalse
- | BlockState::MangroveFenceGate_NorthFalseTrueTrue
- | BlockState::MangroveFenceGate_NorthFalseTrueFalse
- | BlockState::MangroveFenceGate_SouthTrueTrueTrue
- | BlockState::MangroveFenceGate_SouthTrueTrueFalse
- | BlockState::MangroveFenceGate_SouthFalseTrueTrue
- | BlockState::MangroveFenceGate_SouthFalseTrueFalse
- | BlockState::MangroveFenceGate_WestTrueTrueTrue
- | BlockState::MangroveFenceGate_WestTrueTrueFalse
- | BlockState::MangroveFenceGate_WestFalseTrueTrue
- | BlockState::MangroveFenceGate_WestFalseTrueFalse
- | BlockState::MangroveFenceGate_EastTrueTrueTrue
- | BlockState::MangroveFenceGate_EastTrueTrueFalse
- | BlockState::MangroveFenceGate_EastFalseTrueTrue
- | BlockState::MangroveFenceGate_EastFalseTrueFalse
- | BlockState::BambooFenceGate_NorthTrueTrueTrue
- | BlockState::BambooFenceGate_NorthTrueTrueFalse
- | BlockState::BambooFenceGate_NorthFalseTrueTrue
- | BlockState::BambooFenceGate_NorthFalseTrueFalse
- | BlockState::BambooFenceGate_SouthTrueTrueTrue
- | BlockState::BambooFenceGate_SouthTrueTrueFalse
- | BlockState::BambooFenceGate_SouthFalseTrueTrue
- | BlockState::BambooFenceGate_SouthFalseTrueFalse
- | BlockState::BambooFenceGate_WestTrueTrueTrue
- | BlockState::BambooFenceGate_WestTrueTrueFalse
- | BlockState::BambooFenceGate_WestFalseTrueTrue
- | BlockState::BambooFenceGate_WestFalseTrueFalse
- | BlockState::BambooFenceGate_EastTrueTrueTrue
- | BlockState::BambooFenceGate_EastTrueTrueFalse
- | BlockState::BambooFenceGate_EastFalseTrueTrue
- | BlockState::BambooFenceGate_EastFalseTrueFalse
- | BlockState::Beetroots__0
- | BlockState::Beetroots__1
- | BlockState::Beetroots__2
- | BlockState::Beetroots__3
- | BlockState::EndGateway
- | BlockState::StructureVoid
- | BlockState::Kelp__0
- | BlockState::Kelp__1
- | BlockState::Kelp__2
- | BlockState::Kelp__3
- | BlockState::Kelp__4
- | BlockState::Kelp__5
- | BlockState::Kelp__6
- | BlockState::Kelp__7
- | BlockState::Kelp__8
- | BlockState::Kelp__9
- | BlockState::Kelp__10
- | BlockState::Kelp__11
- | BlockState::Kelp__12
- | BlockState::Kelp__13
- | BlockState::Kelp__14
- | BlockState::Kelp__15
- | BlockState::Kelp__16
- | BlockState::Kelp__17
- | BlockState::Kelp__18
- | BlockState::Kelp__19
- | BlockState::Kelp__20
- | BlockState::Kelp__21
- | BlockState::Kelp__22
- | BlockState::Kelp__23
- | BlockState::Kelp__24
- | BlockState::Kelp__25
- | BlockState::KelpPlant
- | BlockState::DeadTubeCoral_True
- | BlockState::DeadTubeCoral_False
- | BlockState::DeadBrainCoral_True
- | BlockState::DeadBrainCoral_False
- | BlockState::DeadBubbleCoral_True
- | BlockState::DeadBubbleCoral_False
- | BlockState::DeadFireCoral_True
- | BlockState::DeadFireCoral_False
- | BlockState::DeadHornCoral_True
- | BlockState::DeadHornCoral_False
- | BlockState::TubeCoral_True
- | BlockState::TubeCoral_False
- | BlockState::BrainCoral_True
- | BlockState::BrainCoral_False
- | BlockState::BubbleCoral_True
- | BlockState::BubbleCoral_False
- | BlockState::FireCoral_True
- | BlockState::FireCoral_False
- | BlockState::HornCoral_True
- | BlockState::HornCoral_False
- | BlockState::DeadTubeCoralFan_True
- | BlockState::DeadTubeCoralFan_False
- | BlockState::DeadBrainCoralFan_True
- | BlockState::DeadBrainCoralFan_False
- | BlockState::DeadBubbleCoralFan_True
- | BlockState::DeadBubbleCoralFan_False
- | BlockState::DeadFireCoralFan_True
- | BlockState::DeadFireCoralFan_False
- | BlockState::DeadHornCoralFan_True
- | BlockState::DeadHornCoralFan_False
- | BlockState::TubeCoralFan_True
- | BlockState::TubeCoralFan_False
- | BlockState::BrainCoralFan_True
- | BlockState::BrainCoralFan_False
- | BlockState::BubbleCoralFan_True
- | BlockState::BubbleCoralFan_False
- | BlockState::FireCoralFan_True
- | BlockState::FireCoralFan_False
- | BlockState::HornCoralFan_True
- | BlockState::HornCoralFan_False
- | BlockState::DeadTubeCoralWallFan_NorthTrue
- | BlockState::DeadTubeCoralWallFan_NorthFalse
- | BlockState::DeadTubeCoralWallFan_SouthTrue
- | BlockState::DeadTubeCoralWallFan_SouthFalse
- | BlockState::DeadTubeCoralWallFan_WestTrue
- | BlockState::DeadTubeCoralWallFan_WestFalse
- | BlockState::DeadTubeCoralWallFan_EastTrue
- | BlockState::DeadTubeCoralWallFan_EastFalse
- | BlockState::DeadBrainCoralWallFan_NorthTrue
- | BlockState::DeadBrainCoralWallFan_NorthFalse
- | BlockState::DeadBrainCoralWallFan_SouthTrue
- | BlockState::DeadBrainCoralWallFan_SouthFalse
- | BlockState::DeadBrainCoralWallFan_WestTrue
- | BlockState::DeadBrainCoralWallFan_WestFalse
- | BlockState::DeadBrainCoralWallFan_EastTrue
- | BlockState::DeadBrainCoralWallFan_EastFalse
- | BlockState::DeadBubbleCoralWallFan_NorthTrue
- | BlockState::DeadBubbleCoralWallFan_NorthFalse
- | BlockState::DeadBubbleCoralWallFan_SouthTrue
- | BlockState::DeadBubbleCoralWallFan_SouthFalse
- | BlockState::DeadBubbleCoralWallFan_WestTrue
- | BlockState::DeadBubbleCoralWallFan_WestFalse
- | BlockState::DeadBubbleCoralWallFan_EastTrue
- | BlockState::DeadBubbleCoralWallFan_EastFalse
- | BlockState::DeadFireCoralWallFan_NorthTrue
- | BlockState::DeadFireCoralWallFan_NorthFalse
- | BlockState::DeadFireCoralWallFan_SouthTrue
- | BlockState::DeadFireCoralWallFan_SouthFalse
- | BlockState::DeadFireCoralWallFan_WestTrue
- | BlockState::DeadFireCoralWallFan_WestFalse
- | BlockState::DeadFireCoralWallFan_EastTrue
- | BlockState::DeadFireCoralWallFan_EastFalse
- | BlockState::DeadHornCoralWallFan_NorthTrue
- | BlockState::DeadHornCoralWallFan_NorthFalse
- | BlockState::DeadHornCoralWallFan_SouthTrue
- | BlockState::DeadHornCoralWallFan_SouthFalse
- | BlockState::DeadHornCoralWallFan_WestTrue
- | BlockState::DeadHornCoralWallFan_WestFalse
- | BlockState::DeadHornCoralWallFan_EastTrue
- | BlockState::DeadHornCoralWallFan_EastFalse
- | BlockState::TubeCoralWallFan_NorthTrue
- | BlockState::TubeCoralWallFan_NorthFalse
- | BlockState::TubeCoralWallFan_SouthTrue
- | BlockState::TubeCoralWallFan_SouthFalse
- | BlockState::TubeCoralWallFan_WestTrue
- | BlockState::TubeCoralWallFan_WestFalse
- | BlockState::TubeCoralWallFan_EastTrue
- | BlockState::TubeCoralWallFan_EastFalse
- | BlockState::BrainCoralWallFan_NorthTrue
- | BlockState::BrainCoralWallFan_NorthFalse
- | BlockState::BrainCoralWallFan_SouthTrue
- | BlockState::BrainCoralWallFan_SouthFalse
- | BlockState::BrainCoralWallFan_WestTrue
- | BlockState::BrainCoralWallFan_WestFalse
- | BlockState::BrainCoralWallFan_EastTrue
- | BlockState::BrainCoralWallFan_EastFalse
- | BlockState::BubbleCoralWallFan_NorthTrue
- | BlockState::BubbleCoralWallFan_NorthFalse
- | BlockState::BubbleCoralWallFan_SouthTrue
- | BlockState::BubbleCoralWallFan_SouthFalse
- | BlockState::BubbleCoralWallFan_WestTrue
- | BlockState::BubbleCoralWallFan_WestFalse
- | BlockState::BubbleCoralWallFan_EastTrue
- | BlockState::BubbleCoralWallFan_EastFalse
- | BlockState::FireCoralWallFan_NorthTrue
- | BlockState::FireCoralWallFan_NorthFalse
- | BlockState::FireCoralWallFan_SouthTrue
- | BlockState::FireCoralWallFan_SouthFalse
- | BlockState::FireCoralWallFan_WestTrue
- | BlockState::FireCoralWallFan_WestFalse
- | BlockState::FireCoralWallFan_EastTrue
- | BlockState::FireCoralWallFan_EastFalse
- | BlockState::HornCoralWallFan_NorthTrue
- | BlockState::HornCoralWallFan_NorthFalse
- | BlockState::HornCoralWallFan_SouthTrue
- | BlockState::HornCoralWallFan_SouthFalse
- | BlockState::HornCoralWallFan_WestTrue
- | BlockState::HornCoralWallFan_WestFalse
- | BlockState::HornCoralWallFan_EastTrue
- | BlockState::HornCoralWallFan_EastFalse
- | BlockState::BambooSapling
- | BlockState::VoidAir
- | BlockState::CaveAir
- | BlockState::BubbleColumn_True
- | BlockState::BubbleColumn_False
- | BlockState::BrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::BrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::PrismarineWall_NoneNoneNoneFalseTrueNone
- | BlockState::PrismarineWall_NoneNoneNoneFalseFalseNone
- | BlockState::RedSandstoneWall_NoneNoneNoneFalseTrueNone
- | BlockState::RedSandstoneWall_NoneNoneNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::GraniteWall_NoneNoneNoneFalseTrueNone
- | BlockState::GraniteWall_NoneNoneNoneFalseFalseNone
- | BlockState::StoneBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::StoneBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::MudBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::MudBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::NetherBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::NetherBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::AndesiteWall_NoneNoneNoneFalseTrueNone
- | BlockState::AndesiteWall_NoneNoneNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::SandstoneWall_NoneNoneNoneFalseTrueNone
- | BlockState::SandstoneWall_NoneNoneNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::DioriteWall_NoneNoneNoneFalseTrueNone
- | BlockState::DioriteWall_NoneNoneNoneFalseFalseNone
- | BlockState::SweetBerryBush__0
- | BlockState::SweetBerryBush__1
- | BlockState::SweetBerryBush__2
- | BlockState::SweetBerryBush__3
- | BlockState::WarpedFungus
- | BlockState::WarpedRoots
- | BlockState::NetherSprouts
- | BlockState::CrimsonFungus
- | BlockState::WeepingVines__0
- | BlockState::WeepingVines__1
- | BlockState::WeepingVines__2
- | BlockState::WeepingVines__3
- | BlockState::WeepingVines__4
- | BlockState::WeepingVines__5
- | BlockState::WeepingVines__6
- | BlockState::WeepingVines__7
- | BlockState::WeepingVines__8
- | BlockState::WeepingVines__9
- | BlockState::WeepingVines__10
- | BlockState::WeepingVines__11
- | BlockState::WeepingVines__12
- | BlockState::WeepingVines__13
- | BlockState::WeepingVines__14
- | BlockState::WeepingVines__15
- | BlockState::WeepingVines__16
- | BlockState::WeepingVines__17
- | BlockState::WeepingVines__18
- | BlockState::WeepingVines__19
- | BlockState::WeepingVines__20
- | BlockState::WeepingVines__21
- | BlockState::WeepingVines__22
- | BlockState::WeepingVines__23
- | BlockState::WeepingVines__24
- | BlockState::WeepingVines__25
- | BlockState::WeepingVinesPlant
- | BlockState::TwistingVines__0
- | BlockState::TwistingVines__1
- | BlockState::TwistingVines__2
- | BlockState::TwistingVines__3
- | BlockState::TwistingVines__4
- | BlockState::TwistingVines__5
- | BlockState::TwistingVines__6
- | BlockState::TwistingVines__7
- | BlockState::TwistingVines__8
- | BlockState::TwistingVines__9
- | BlockState::TwistingVines__10
- | BlockState::TwistingVines__11
- | BlockState::TwistingVines__12
- | BlockState::TwistingVines__13
- | BlockState::TwistingVines__14
- | BlockState::TwistingVines__15
- | BlockState::TwistingVines__16
- | BlockState::TwistingVines__17
- | BlockState::TwistingVines__18
- | BlockState::TwistingVines__19
- | BlockState::TwistingVines__20
- | BlockState::TwistingVines__21
- | BlockState::TwistingVines__22
- | BlockState::TwistingVines__23
- | BlockState::TwistingVines__24
- | BlockState::TwistingVines__25
- | BlockState::TwistingVinesPlant
- | BlockState::CrimsonRoots
- | BlockState::CrimsonPressurePlate_True
- | BlockState::CrimsonPressurePlate_False
- | BlockState::WarpedPressurePlate_True
- | BlockState::WarpedPressurePlate_False
- | BlockState::CrimsonFenceGate_NorthTrueTrueTrue
- | BlockState::CrimsonFenceGate_NorthTrueTrueFalse
- | BlockState::CrimsonFenceGate_NorthFalseTrueTrue
- | BlockState::CrimsonFenceGate_NorthFalseTrueFalse
- | BlockState::CrimsonFenceGate_SouthTrueTrueTrue
- | BlockState::CrimsonFenceGate_SouthTrueTrueFalse
- | BlockState::CrimsonFenceGate_SouthFalseTrueTrue
- | BlockState::CrimsonFenceGate_SouthFalseTrueFalse
- | BlockState::CrimsonFenceGate_WestTrueTrueTrue
- | BlockState::CrimsonFenceGate_WestTrueTrueFalse
- | BlockState::CrimsonFenceGate_WestFalseTrueTrue
- | BlockState::CrimsonFenceGate_WestFalseTrueFalse
- | BlockState::CrimsonFenceGate_EastTrueTrueTrue
- | BlockState::CrimsonFenceGate_EastTrueTrueFalse
- | BlockState::CrimsonFenceGate_EastFalseTrueTrue
- | BlockState::CrimsonFenceGate_EastFalseTrueFalse
- | BlockState::WarpedFenceGate_NorthTrueTrueTrue
- | BlockState::WarpedFenceGate_NorthTrueTrueFalse
- | BlockState::WarpedFenceGate_NorthFalseTrueTrue
- | BlockState::WarpedFenceGate_NorthFalseTrueFalse
- | BlockState::WarpedFenceGate_SouthTrueTrueTrue
- | BlockState::WarpedFenceGate_SouthTrueTrueFalse
- | BlockState::WarpedFenceGate_SouthFalseTrueTrue
- | BlockState::WarpedFenceGate_SouthFalseTrueFalse
- | BlockState::WarpedFenceGate_WestTrueTrueTrue
- | BlockState::WarpedFenceGate_WestTrueTrueFalse
- | BlockState::WarpedFenceGate_WestFalseTrueTrue
- | BlockState::WarpedFenceGate_WestFalseTrueFalse
- | BlockState::WarpedFenceGate_EastTrueTrueTrue
- | BlockState::WarpedFenceGate_EastTrueTrueFalse
- | BlockState::WarpedFenceGate_EastFalseTrueTrue
- | BlockState::WarpedFenceGate_EastFalseTrueFalse
- | BlockState::CrimsonButton_FloorNorthTrue
- | BlockState::CrimsonButton_FloorNorthFalse
- | BlockState::CrimsonButton_FloorSouthTrue
- | BlockState::CrimsonButton_FloorSouthFalse
- | BlockState::CrimsonButton_FloorWestTrue
- | BlockState::CrimsonButton_FloorWestFalse
- | BlockState::CrimsonButton_FloorEastTrue
- | BlockState::CrimsonButton_FloorEastFalse
- | BlockState::CrimsonButton_WallNorthTrue
- | BlockState::CrimsonButton_WallNorthFalse
- | BlockState::CrimsonButton_WallSouthTrue
- | BlockState::CrimsonButton_WallSouthFalse
- | BlockState::CrimsonButton_WallWestTrue
- | BlockState::CrimsonButton_WallWestFalse
- | BlockState::CrimsonButton_WallEastTrue
- | BlockState::CrimsonButton_WallEastFalse
- | BlockState::CrimsonButton_CeilingNorthTrue
- | BlockState::CrimsonButton_CeilingNorthFalse
- | BlockState::CrimsonButton_CeilingSouthTrue
- | BlockState::CrimsonButton_CeilingSouthFalse
- | BlockState::CrimsonButton_CeilingWestTrue
- | BlockState::CrimsonButton_CeilingWestFalse
- | BlockState::CrimsonButton_CeilingEastTrue
- | BlockState::CrimsonButton_CeilingEastFalse
- | BlockState::WarpedButton_FloorNorthTrue
- | BlockState::WarpedButton_FloorNorthFalse
- | BlockState::WarpedButton_FloorSouthTrue
- | BlockState::WarpedButton_FloorSouthFalse
- | BlockState::WarpedButton_FloorWestTrue
- | BlockState::WarpedButton_FloorWestFalse
- | BlockState::WarpedButton_FloorEastTrue
- | BlockState::WarpedButton_FloorEastFalse
- | BlockState::WarpedButton_WallNorthTrue
- | BlockState::WarpedButton_WallNorthFalse
- | BlockState::WarpedButton_WallSouthTrue
- | BlockState::WarpedButton_WallSouthFalse
- | BlockState::WarpedButton_WallWestTrue
- | BlockState::WarpedButton_WallWestFalse
- | BlockState::WarpedButton_WallEastTrue
- | BlockState::WarpedButton_WallEastFalse
- | BlockState::WarpedButton_CeilingNorthTrue
- | BlockState::WarpedButton_CeilingNorthFalse
- | BlockState::WarpedButton_CeilingSouthTrue
- | BlockState::WarpedButton_CeilingSouthFalse
- | BlockState::WarpedButton_CeilingWestTrue
- | BlockState::WarpedButton_CeilingWestFalse
- | BlockState::WarpedButton_CeilingEastTrue
- | BlockState::WarpedButton_CeilingEastFalse
- | BlockState::CrimsonSign__0True
- | BlockState::CrimsonSign__0False
- | BlockState::CrimsonSign__1True
- | BlockState::CrimsonSign__1False
- | BlockState::CrimsonSign__2True
- | BlockState::CrimsonSign__2False
- | BlockState::CrimsonSign__3True
- | BlockState::CrimsonSign__3False
- | BlockState::CrimsonSign__4True
- | BlockState::CrimsonSign__4False
- | BlockState::CrimsonSign__5True
- | BlockState::CrimsonSign__5False
- | BlockState::CrimsonSign__6True
- | BlockState::CrimsonSign__6False
- | BlockState::CrimsonSign__7True
- | BlockState::CrimsonSign__7False
- | BlockState::CrimsonSign__8True
- | BlockState::CrimsonSign__8False
- | BlockState::CrimsonSign__9True
- | BlockState::CrimsonSign__9False
- | BlockState::CrimsonSign__10True
- | BlockState::CrimsonSign__10False
- | BlockState::CrimsonSign__11True
- | BlockState::CrimsonSign__11False
- | BlockState::CrimsonSign__12True
- | BlockState::CrimsonSign__12False
- | BlockState::CrimsonSign__13True
- | BlockState::CrimsonSign__13False
- | BlockState::CrimsonSign__14True
- | BlockState::CrimsonSign__14False
- | BlockState::CrimsonSign__15True
- | BlockState::CrimsonSign__15False
- | BlockState::WarpedSign__0True
- | BlockState::WarpedSign__0False
- | BlockState::WarpedSign__1True
- | BlockState::WarpedSign__1False
- | BlockState::WarpedSign__2True
- | BlockState::WarpedSign__2False
- | BlockState::WarpedSign__3True
- | BlockState::WarpedSign__3False
- | BlockState::WarpedSign__4True
- | BlockState::WarpedSign__4False
- | BlockState::WarpedSign__5True
- | BlockState::WarpedSign__5False
- | BlockState::WarpedSign__6True
- | BlockState::WarpedSign__6False
- | BlockState::WarpedSign__7True
- | BlockState::WarpedSign__7False
- | BlockState::WarpedSign__8True
- | BlockState::WarpedSign__8False
- | BlockState::WarpedSign__9True
- | BlockState::WarpedSign__9False
- | BlockState::WarpedSign__10True
- | BlockState::WarpedSign__10False
- | BlockState::WarpedSign__11True
- | BlockState::WarpedSign__11False
- | BlockState::WarpedSign__12True
- | BlockState::WarpedSign__12False
- | BlockState::WarpedSign__13True
- | BlockState::WarpedSign__13False
- | BlockState::WarpedSign__14True
- | BlockState::WarpedSign__14False
- | BlockState::WarpedSign__15True
- | BlockState::WarpedSign__15False
- | BlockState::CrimsonWallSign_NorthTrue
- | BlockState::CrimsonWallSign_NorthFalse
- | BlockState::CrimsonWallSign_SouthTrue
- | BlockState::CrimsonWallSign_SouthFalse
- | BlockState::CrimsonWallSign_WestTrue
- | BlockState::CrimsonWallSign_WestFalse
- | BlockState::CrimsonWallSign_EastTrue
- | BlockState::CrimsonWallSign_EastFalse
- | BlockState::WarpedWallSign_NorthTrue
- | BlockState::WarpedWallSign_NorthFalse
- | BlockState::WarpedWallSign_SouthTrue
- | BlockState::WarpedWallSign_SouthFalse
- | BlockState::WarpedWallSign_WestTrue
- | BlockState::WarpedWallSign_WestFalse
- | BlockState::WarpedWallSign_EastTrue
- | BlockState::WarpedWallSign_EastFalse
- | BlockState::BlackstoneWall_NoneNoneNoneFalseTrueNone
- | BlockState::BlackstoneWall_NoneNoneNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::PolishedBlackstonePressurePlate_True
- | BlockState::PolishedBlackstonePressurePlate_False
- | BlockState::PolishedBlackstoneButton_FloorNorthTrue
- | BlockState::PolishedBlackstoneButton_FloorNorthFalse
- | BlockState::PolishedBlackstoneButton_FloorSouthTrue
- | BlockState::PolishedBlackstoneButton_FloorSouthFalse
- | BlockState::PolishedBlackstoneButton_FloorWestTrue
- | BlockState::PolishedBlackstoneButton_FloorWestFalse
- | BlockState::PolishedBlackstoneButton_FloorEastTrue
- | BlockState::PolishedBlackstoneButton_FloorEastFalse
- | BlockState::PolishedBlackstoneButton_WallNorthTrue
- | BlockState::PolishedBlackstoneButton_WallNorthFalse
- | BlockState::PolishedBlackstoneButton_WallSouthTrue
- | BlockState::PolishedBlackstoneButton_WallSouthFalse
- | BlockState::PolishedBlackstoneButton_WallWestTrue
- | BlockState::PolishedBlackstoneButton_WallWestFalse
- | BlockState::PolishedBlackstoneButton_WallEastTrue
- | BlockState::PolishedBlackstoneButton_WallEastFalse
- | BlockState::PolishedBlackstoneButton_CeilingNorthTrue
- | BlockState::PolishedBlackstoneButton_CeilingNorthFalse
- | BlockState::PolishedBlackstoneButton_CeilingSouthTrue
- | BlockState::PolishedBlackstoneButton_CeilingSouthFalse
- | BlockState::PolishedBlackstoneButton_CeilingWestTrue
- | BlockState::PolishedBlackstoneButton_CeilingWestFalse
- | BlockState::PolishedBlackstoneButton_CeilingEastTrue
- | BlockState::PolishedBlackstoneButton_CeilingEastFalse
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneFalseFalseNone
- | BlockState::PowderSnow
- | BlockState::SculkVein_TrueTrueTrueTrueTrueTrueTrue
- | BlockState::SculkVein_TrueTrueTrueTrueTrueTrueFalse
- | BlockState::SculkVein_TrueTrueTrueTrueTrueFalseTrue
- | BlockState::SculkVein_TrueTrueTrueTrueTrueFalseFalse
- | BlockState::SculkVein_TrueTrueTrueTrueFalseTrueTrue
- | BlockState::SculkVein_TrueTrueTrueTrueFalseTrueFalse
- | BlockState::SculkVein_TrueTrueTrueTrueFalseFalseTrue
- | BlockState::SculkVein_TrueTrueTrueTrueFalseFalseFalse
- | BlockState::SculkVein_TrueTrueTrueFalseTrueTrueTrue
- | BlockState::SculkVein_TrueTrueTrueFalseTrueTrueFalse
- | BlockState::SculkVein_TrueTrueTrueFalseTrueFalseTrue
- | BlockState::SculkVein_TrueTrueTrueFalseTrueFalseFalse
- | BlockState::SculkVein_TrueTrueTrueFalseFalseTrueTrue
- | BlockState::SculkVein_TrueTrueTrueFalseFalseTrueFalse
- | BlockState::SculkVein_TrueTrueTrueFalseFalseFalseTrue
- | BlockState::SculkVein_TrueTrueTrueFalseFalseFalseFalse
- | BlockState::SculkVein_TrueTrueFalseTrueTrueTrueTrue
- | BlockState::SculkVein_TrueTrueFalseTrueTrueTrueFalse
- | BlockState::SculkVein_TrueTrueFalseTrueTrueFalseTrue
- | BlockState::SculkVein_TrueTrueFalseTrueTrueFalseFalse
- | BlockState::SculkVein_TrueTrueFalseTrueFalseTrueTrue
- | BlockState::SculkVein_TrueTrueFalseTrueFalseTrueFalse
- | BlockState::SculkVein_TrueTrueFalseTrueFalseFalseTrue
- | BlockState::SculkVein_TrueTrueFalseTrueFalseFalseFalse
- | BlockState::SculkVein_TrueTrueFalseFalseTrueTrueTrue
- | BlockState::SculkVein_TrueTrueFalseFalseTrueTrueFalse
- | BlockState::SculkVein_TrueTrueFalseFalseTrueFalseTrue
- | BlockState::SculkVein_TrueTrueFalseFalseTrueFalseFalse
- | BlockState::SculkVein_TrueTrueFalseFalseFalseTrueTrue
- | BlockState::SculkVein_TrueTrueFalseFalseFalseTrueFalse
- | BlockState::SculkVein_TrueTrueFalseFalseFalseFalseTrue
- | BlockState::SculkVein_TrueTrueFalseFalseFalseFalseFalse
- | BlockState::SculkVein_TrueFalseTrueTrueTrueTrueTrue
- | BlockState::SculkVein_TrueFalseTrueTrueTrueTrueFalse
- | BlockState::SculkVein_TrueFalseTrueTrueTrueFalseTrue
- | BlockState::SculkVein_TrueFalseTrueTrueTrueFalseFalse
- | BlockState::SculkVein_TrueFalseTrueTrueFalseTrueTrue
- | BlockState::SculkVein_TrueFalseTrueTrueFalseTrueFalse
- | BlockState::SculkVein_TrueFalseTrueTrueFalseFalseTrue
- | BlockState::SculkVein_TrueFalseTrueTrueFalseFalseFalse
- | BlockState::SculkVein_TrueFalseTrueFalseTrueTrueTrue
- | BlockState::SculkVein_TrueFalseTrueFalseTrueTrueFalse
- | BlockState::SculkVein_TrueFalseTrueFalseTrueFalseTrue
- | BlockState::SculkVein_TrueFalseTrueFalseTrueFalseFalse
- | BlockState::SculkVein_TrueFalseTrueFalseFalseTrueTrue
- | BlockState::SculkVein_TrueFalseTrueFalseFalseTrueFalse
- | BlockState::SculkVein_TrueFalseTrueFalseFalseFalseTrue
- | BlockState::SculkVein_TrueFalseTrueFalseFalseFalseFalse
- | BlockState::SculkVein_TrueFalseFalseTrueTrueTrueTrue
- | BlockState::SculkVein_TrueFalseFalseTrueTrueTrueFalse
- | BlockState::SculkVein_TrueFalseFalseTrueTrueFalseTrue
- | BlockState::SculkVein_TrueFalseFalseTrueTrueFalseFalse
- | BlockState::SculkVein_TrueFalseFalseTrueFalseTrueTrue
- | BlockState::SculkVein_TrueFalseFalseTrueFalseTrueFalse
- | BlockState::SculkVein_TrueFalseFalseTrueFalseFalseTrue
- | BlockState::SculkVein_TrueFalseFalseTrueFalseFalseFalse
- | BlockState::SculkVein_TrueFalseFalseFalseTrueTrueTrue
- | BlockState::SculkVein_TrueFalseFalseFalseTrueTrueFalse
- | BlockState::SculkVein_TrueFalseFalseFalseTrueFalseTrue
- | BlockState::SculkVein_TrueFalseFalseFalseTrueFalseFalse
- | BlockState::SculkVein_TrueFalseFalseFalseFalseTrueTrue
- | BlockState::SculkVein_TrueFalseFalseFalseFalseTrueFalse
- | BlockState::SculkVein_TrueFalseFalseFalseFalseFalseTrue
- | BlockState::SculkVein_TrueFalseFalseFalseFalseFalseFalse
- | BlockState::SculkVein_FalseTrueTrueTrueTrueTrueTrue
- | BlockState::SculkVein_FalseTrueTrueTrueTrueTrueFalse
- | BlockState::SculkVein_FalseTrueTrueTrueTrueFalseTrue
- | BlockState::SculkVein_FalseTrueTrueTrueTrueFalseFalse
- | BlockState::SculkVein_FalseTrueTrueTrueFalseTrueTrue
- | BlockState::SculkVein_FalseTrueTrueTrueFalseTrueFalse
- | BlockState::SculkVein_FalseTrueTrueTrueFalseFalseTrue
- | BlockState::SculkVein_FalseTrueTrueTrueFalseFalseFalse
- | BlockState::SculkVein_FalseTrueTrueFalseTrueTrueTrue
- | BlockState::SculkVein_FalseTrueTrueFalseTrueTrueFalse
- | BlockState::SculkVein_FalseTrueTrueFalseTrueFalseTrue
- | BlockState::SculkVein_FalseTrueTrueFalseTrueFalseFalse
- | BlockState::SculkVein_FalseTrueTrueFalseFalseTrueTrue
- | BlockState::SculkVein_FalseTrueTrueFalseFalseTrueFalse
- | BlockState::SculkVein_FalseTrueTrueFalseFalseFalseTrue
- | BlockState::SculkVein_FalseTrueTrueFalseFalseFalseFalse
- | BlockState::SculkVein_FalseTrueFalseTrueTrueTrueTrue
- | BlockState::SculkVein_FalseTrueFalseTrueTrueTrueFalse
- | BlockState::SculkVein_FalseTrueFalseTrueTrueFalseTrue
- | BlockState::SculkVein_FalseTrueFalseTrueTrueFalseFalse
- | BlockState::SculkVein_FalseTrueFalseTrueFalseTrueTrue
- | BlockState::SculkVein_FalseTrueFalseTrueFalseTrueFalse
- | BlockState::SculkVein_FalseTrueFalseTrueFalseFalseTrue
- | BlockState::SculkVein_FalseTrueFalseTrueFalseFalseFalse
- | BlockState::SculkVein_FalseTrueFalseFalseTrueTrueTrue
- | BlockState::SculkVein_FalseTrueFalseFalseTrueTrueFalse
- | BlockState::SculkVein_FalseTrueFalseFalseTrueFalseTrue
- | BlockState::SculkVein_FalseTrueFalseFalseTrueFalseFalse
- | BlockState::SculkVein_FalseTrueFalseFalseFalseTrueTrue
- | BlockState::SculkVein_FalseTrueFalseFalseFalseTrueFalse
- | BlockState::SculkVein_FalseTrueFalseFalseFalseFalseTrue
- | BlockState::SculkVein_FalseTrueFalseFalseFalseFalseFalse
- | BlockState::SculkVein_FalseFalseTrueTrueTrueTrueTrue
- | BlockState::SculkVein_FalseFalseTrueTrueTrueTrueFalse
- | BlockState::SculkVein_FalseFalseTrueTrueTrueFalseTrue
- | BlockState::SculkVein_FalseFalseTrueTrueTrueFalseFalse
- | BlockState::SculkVein_FalseFalseTrueTrueFalseTrueTrue
- | BlockState::SculkVein_FalseFalseTrueTrueFalseTrueFalse
- | BlockState::SculkVein_FalseFalseTrueTrueFalseFalseTrue
- | BlockState::SculkVein_FalseFalseTrueTrueFalseFalseFalse
- | BlockState::SculkVein_FalseFalseTrueFalseTrueTrueTrue
- | BlockState::SculkVein_FalseFalseTrueFalseTrueTrueFalse
- | BlockState::SculkVein_FalseFalseTrueFalseTrueFalseTrue
- | BlockState::SculkVein_FalseFalseTrueFalseTrueFalseFalse
- | BlockState::SculkVein_FalseFalseTrueFalseFalseTrueTrue
- | BlockState::SculkVein_FalseFalseTrueFalseFalseTrueFalse
- | BlockState::SculkVein_FalseFalseTrueFalseFalseFalseTrue
- | BlockState::SculkVein_FalseFalseTrueFalseFalseFalseFalse
- | BlockState::SculkVein_FalseFalseFalseTrueTrueTrueTrue
- | BlockState::SculkVein_FalseFalseFalseTrueTrueTrueFalse
- | BlockState::SculkVein_FalseFalseFalseTrueTrueFalseTrue
- | BlockState::SculkVein_FalseFalseFalseTrueTrueFalseFalse
- | BlockState::SculkVein_FalseFalseFalseTrueFalseTrueTrue
- | BlockState::SculkVein_FalseFalseFalseTrueFalseTrueFalse
- | BlockState::SculkVein_FalseFalseFalseTrueFalseFalseTrue
- | BlockState::SculkVein_FalseFalseFalseTrueFalseFalseFalse
- | BlockState::SculkVein_FalseFalseFalseFalseTrueTrueTrue
- | BlockState::SculkVein_FalseFalseFalseFalseTrueTrueFalse
- | BlockState::SculkVein_FalseFalseFalseFalseTrueFalseTrue
- | BlockState::SculkVein_FalseFalseFalseFalseTrueFalseFalse
- | BlockState::SculkVein_FalseFalseFalseFalseFalseTrueTrue
- | BlockState::SculkVein_FalseFalseFalseFalseFalseTrueFalse
- | BlockState::SculkVein_FalseFalseFalseFalseFalseFalseTrue
- | BlockState::SculkVein_FalseFalseFalseFalseFalseFalseFalse
- | BlockState::CaveVines__0True
- | BlockState::CaveVines__0False
- | BlockState::CaveVines__1True
- | BlockState::CaveVines__1False
- | BlockState::CaveVines__2True
- | BlockState::CaveVines__2False
- | BlockState::CaveVines__3True
- | BlockState::CaveVines__3False
- | BlockState::CaveVines__4True
- | BlockState::CaveVines__4False
- | BlockState::CaveVines__5True
- | BlockState::CaveVines__5False
- | BlockState::CaveVines__6True
- | BlockState::CaveVines__6False
- | BlockState::CaveVines__7True
- | BlockState::CaveVines__7False
- | BlockState::CaveVines__8True
- | BlockState::CaveVines__8False
- | BlockState::CaveVines__9True
- | BlockState::CaveVines__9False
- | BlockState::CaveVines__10True
- | BlockState::CaveVines__10False
- | BlockState::CaveVines__11True
- | BlockState::CaveVines__11False
- | BlockState::CaveVines__12True
- | BlockState::CaveVines__12False
- | BlockState::CaveVines__13True
- | BlockState::CaveVines__13False
- | BlockState::CaveVines__14True
- | BlockState::CaveVines__14False
- | BlockState::CaveVines__15True
- | BlockState::CaveVines__15False
- | BlockState::CaveVines__16True
- | BlockState::CaveVines__16False
- | BlockState::CaveVines__17True
- | BlockState::CaveVines__17False
- | BlockState::CaveVines__18True
- | BlockState::CaveVines__18False
- | BlockState::CaveVines__19True
- | BlockState::CaveVines__19False
- | BlockState::CaveVines__20True
- | BlockState::CaveVines__20False
- | BlockState::CaveVines__21True
- | BlockState::CaveVines__21False
- | BlockState::CaveVines__22True
- | BlockState::CaveVines__22False
- | BlockState::CaveVines__23True
- | BlockState::CaveVines__23False
- | BlockState::CaveVines__24True
- | BlockState::CaveVines__24False
- | BlockState::CaveVines__25True
- | BlockState::CaveVines__25False
- | BlockState::CaveVinesPlant_True
- | BlockState::CaveVinesPlant_False
- | BlockState::SporeBlossom
- | BlockState::BigDripleaf_NorthFullTrue
- | BlockState::BigDripleaf_NorthFullFalse
- | BlockState::BigDripleaf_SouthFullTrue
- | BlockState::BigDripleaf_SouthFullFalse
- | BlockState::BigDripleaf_WestFullTrue
- | BlockState::BigDripleaf_WestFullFalse
- | BlockState::BigDripleaf_EastFullTrue
- | BlockState::BigDripleaf_EastFullFalse
- | BlockState::BigDripleafStem_NorthTrue
- | BlockState::BigDripleafStem_NorthFalse
- | BlockState::BigDripleafStem_SouthTrue
- | BlockState::BigDripleafStem_SouthFalse
- | BlockState::BigDripleafStem_WestTrue
- | BlockState::BigDripleafStem_WestFalse
- | BlockState::BigDripleafStem_EastTrue
- | BlockState::BigDripleafStem_EastFalse
- | BlockState::SmallDripleaf_NorthUpperTrue
- | BlockState::SmallDripleaf_NorthUpperFalse
- | BlockState::SmallDripleaf_NorthLowerTrue
- | BlockState::SmallDripleaf_NorthLowerFalse
- | BlockState::SmallDripleaf_SouthUpperTrue
- | BlockState::SmallDripleaf_SouthUpperFalse
- | BlockState::SmallDripleaf_SouthLowerTrue
- | BlockState::SmallDripleaf_SouthLowerFalse
- | BlockState::SmallDripleaf_WestUpperTrue
- | BlockState::SmallDripleaf_WestUpperFalse
- | BlockState::SmallDripleaf_WestLowerTrue
- | BlockState::SmallDripleaf_WestLowerFalse
- | BlockState::SmallDripleaf_EastUpperTrue
- | BlockState::SmallDripleaf_EastUpperFalse
- | BlockState::SmallDripleaf_EastLowerTrue
- | BlockState::SmallDripleaf_EastLowerFalse
- | BlockState::HangingRoots_True
- | BlockState::HangingRoots_False
- | BlockState::CobbledDeepslateWall_NoneNoneNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneNoneNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneNoneNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneNoneNoneFalseFalseNone
- | BlockState::DeepslateTileWall_NoneNoneNoneFalseTrueNone
- | BlockState::DeepslateTileWall_NoneNoneNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneNoneNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneNoneNoneFalseFalseNone
- | BlockState::Frogspawn => &SHAPE0,
- BlockState::WhiteBed_NorthTrueHead
- | BlockState::WhiteBed_NorthFalseHead
- | BlockState::WhiteBed_SouthTrueFoot
- | BlockState::WhiteBed_SouthFalseFoot
- | BlockState::OrangeBed_NorthTrueHead
- | BlockState::OrangeBed_NorthFalseHead
- | BlockState::OrangeBed_SouthTrueFoot
- | BlockState::OrangeBed_SouthFalseFoot
- | BlockState::MagentaBed_NorthTrueHead
- | BlockState::MagentaBed_NorthFalseHead
- | BlockState::MagentaBed_SouthTrueFoot
- | BlockState::MagentaBed_SouthFalseFoot
- | BlockState::LightBlueBed_NorthTrueHead
- | BlockState::LightBlueBed_NorthFalseHead
- | BlockState::LightBlueBed_SouthTrueFoot
- | BlockState::LightBlueBed_SouthFalseFoot
- | BlockState::YellowBed_NorthTrueHead
- | BlockState::YellowBed_NorthFalseHead
- | BlockState::YellowBed_SouthTrueFoot
- | BlockState::YellowBed_SouthFalseFoot
- | BlockState::LimeBed_NorthTrueHead
- | BlockState::LimeBed_NorthFalseHead
- | BlockState::LimeBed_SouthTrueFoot
- | BlockState::LimeBed_SouthFalseFoot
- | BlockState::PinkBed_NorthTrueHead
- | BlockState::PinkBed_NorthFalseHead
- | BlockState::PinkBed_SouthTrueFoot
- | BlockState::PinkBed_SouthFalseFoot
- | BlockState::GrayBed_NorthTrueHead
- | BlockState::GrayBed_NorthFalseHead
- | BlockState::GrayBed_SouthTrueFoot
- | BlockState::GrayBed_SouthFalseFoot
- | BlockState::LightGrayBed_NorthTrueHead
- | BlockState::LightGrayBed_NorthFalseHead
- | BlockState::LightGrayBed_SouthTrueFoot
- | BlockState::LightGrayBed_SouthFalseFoot
- | BlockState::CyanBed_NorthTrueHead
- | BlockState::CyanBed_NorthFalseHead
- | BlockState::CyanBed_SouthTrueFoot
- | BlockState::CyanBed_SouthFalseFoot
- | BlockState::PurpleBed_NorthTrueHead
- | BlockState::PurpleBed_NorthFalseHead
- | BlockState::PurpleBed_SouthTrueFoot
- | BlockState::PurpleBed_SouthFalseFoot
- | BlockState::BlueBed_NorthTrueHead
- | BlockState::BlueBed_NorthFalseHead
- | BlockState::BlueBed_SouthTrueFoot
- | BlockState::BlueBed_SouthFalseFoot
- | BlockState::BrownBed_NorthTrueHead
- | BlockState::BrownBed_NorthFalseHead
- | BlockState::BrownBed_SouthTrueFoot
- | BlockState::BrownBed_SouthFalseFoot
- | BlockState::GreenBed_NorthTrueHead
- | BlockState::GreenBed_NorthFalseHead
- | BlockState::GreenBed_SouthTrueFoot
- | BlockState::GreenBed_SouthFalseFoot
- | BlockState::RedBed_NorthTrueHead
- | BlockState::RedBed_NorthFalseHead
- | BlockState::RedBed_SouthTrueFoot
- | BlockState::RedBed_SouthFalseFoot
- | BlockState::BlackBed_NorthTrueHead
- | BlockState::BlackBed_NorthFalseHead
- | BlockState::BlackBed_SouthTrueFoot
- | BlockState::BlackBed_SouthFalseFoot => &SHAPE3,
- BlockState::WhiteBed_NorthTrueFoot
- | BlockState::WhiteBed_NorthFalseFoot
- | BlockState::WhiteBed_SouthTrueHead
- | BlockState::WhiteBed_SouthFalseHead
- | BlockState::OrangeBed_NorthTrueFoot
- | BlockState::OrangeBed_NorthFalseFoot
- | BlockState::OrangeBed_SouthTrueHead
- | BlockState::OrangeBed_SouthFalseHead
- | BlockState::MagentaBed_NorthTrueFoot
- | BlockState::MagentaBed_NorthFalseFoot
- | BlockState::MagentaBed_SouthTrueHead
- | BlockState::MagentaBed_SouthFalseHead
- | BlockState::LightBlueBed_NorthTrueFoot
- | BlockState::LightBlueBed_NorthFalseFoot
- | BlockState::LightBlueBed_SouthTrueHead
- | BlockState::LightBlueBed_SouthFalseHead
- | BlockState::YellowBed_NorthTrueFoot
- | BlockState::YellowBed_NorthFalseFoot
- | BlockState::YellowBed_SouthTrueHead
- | BlockState::YellowBed_SouthFalseHead
- | BlockState::LimeBed_NorthTrueFoot
- | BlockState::LimeBed_NorthFalseFoot
- | BlockState::LimeBed_SouthTrueHead
- | BlockState::LimeBed_SouthFalseHead
- | BlockState::PinkBed_NorthTrueFoot
- | BlockState::PinkBed_NorthFalseFoot
- | BlockState::PinkBed_SouthTrueHead
- | BlockState::PinkBed_SouthFalseHead
- | BlockState::GrayBed_NorthTrueFoot
- | BlockState::GrayBed_NorthFalseFoot
- | BlockState::GrayBed_SouthTrueHead
- | BlockState::GrayBed_SouthFalseHead
- | BlockState::LightGrayBed_NorthTrueFoot
- | BlockState::LightGrayBed_NorthFalseFoot
- | BlockState::LightGrayBed_SouthTrueHead
- | BlockState::LightGrayBed_SouthFalseHead
- | BlockState::CyanBed_NorthTrueFoot
- | BlockState::CyanBed_NorthFalseFoot
- | BlockState::CyanBed_SouthTrueHead
- | BlockState::CyanBed_SouthFalseHead
- | BlockState::PurpleBed_NorthTrueFoot
- | BlockState::PurpleBed_NorthFalseFoot
- | BlockState::PurpleBed_SouthTrueHead
- | BlockState::PurpleBed_SouthFalseHead
- | BlockState::BlueBed_NorthTrueFoot
- | BlockState::BlueBed_NorthFalseFoot
- | BlockState::BlueBed_SouthTrueHead
- | BlockState::BlueBed_SouthFalseHead
- | BlockState::BrownBed_NorthTrueFoot
- | BlockState::BrownBed_NorthFalseFoot
- | BlockState::BrownBed_SouthTrueHead
- | BlockState::BrownBed_SouthFalseHead
- | BlockState::GreenBed_NorthTrueFoot
- | BlockState::GreenBed_NorthFalseFoot
- | BlockState::GreenBed_SouthTrueHead
- | BlockState::GreenBed_SouthFalseHead
- | BlockState::RedBed_NorthTrueFoot
- | BlockState::RedBed_NorthFalseFoot
- | BlockState::RedBed_SouthTrueHead
- | BlockState::RedBed_SouthFalseHead
- | BlockState::BlackBed_NorthTrueFoot
- | BlockState::BlackBed_NorthFalseFoot
- | BlockState::BlackBed_SouthTrueHead
- | BlockState::BlackBed_SouthFalseHead => &SHAPE4,
- BlockState::WhiteBed_WestTrueHead
- | BlockState::WhiteBed_WestFalseHead
- | BlockState::WhiteBed_EastTrueFoot
- | BlockState::WhiteBed_EastFalseFoot
- | BlockState::OrangeBed_WestTrueHead
- | BlockState::OrangeBed_WestFalseHead
- | BlockState::OrangeBed_EastTrueFoot
- | BlockState::OrangeBed_EastFalseFoot
- | BlockState::MagentaBed_WestTrueHead
- | BlockState::MagentaBed_WestFalseHead
- | BlockState::MagentaBed_EastTrueFoot
- | BlockState::MagentaBed_EastFalseFoot
- | BlockState::LightBlueBed_WestTrueHead
- | BlockState::LightBlueBed_WestFalseHead
- | BlockState::LightBlueBed_EastTrueFoot
- | BlockState::LightBlueBed_EastFalseFoot
- | BlockState::YellowBed_WestTrueHead
- | BlockState::YellowBed_WestFalseHead
- | BlockState::YellowBed_EastTrueFoot
- | BlockState::YellowBed_EastFalseFoot
- | BlockState::LimeBed_WestTrueHead
- | BlockState::LimeBed_WestFalseHead
- | BlockState::LimeBed_EastTrueFoot
- | BlockState::LimeBed_EastFalseFoot
- | BlockState::PinkBed_WestTrueHead
- | BlockState::PinkBed_WestFalseHead
- | BlockState::PinkBed_EastTrueFoot
- | BlockState::PinkBed_EastFalseFoot
- | BlockState::GrayBed_WestTrueHead
- | BlockState::GrayBed_WestFalseHead
- | BlockState::GrayBed_EastTrueFoot
- | BlockState::GrayBed_EastFalseFoot
- | BlockState::LightGrayBed_WestTrueHead
- | BlockState::LightGrayBed_WestFalseHead
- | BlockState::LightGrayBed_EastTrueFoot
- | BlockState::LightGrayBed_EastFalseFoot
- | BlockState::CyanBed_WestTrueHead
- | BlockState::CyanBed_WestFalseHead
- | BlockState::CyanBed_EastTrueFoot
- | BlockState::CyanBed_EastFalseFoot
- | BlockState::PurpleBed_WestTrueHead
- | BlockState::PurpleBed_WestFalseHead
- | BlockState::PurpleBed_EastTrueFoot
- | BlockState::PurpleBed_EastFalseFoot
- | BlockState::BlueBed_WestTrueHead
- | BlockState::BlueBed_WestFalseHead
- | BlockState::BlueBed_EastTrueFoot
- | BlockState::BlueBed_EastFalseFoot
- | BlockState::BrownBed_WestTrueHead
- | BlockState::BrownBed_WestFalseHead
- | BlockState::BrownBed_EastTrueFoot
- | BlockState::BrownBed_EastFalseFoot
- | BlockState::GreenBed_WestTrueHead
- | BlockState::GreenBed_WestFalseHead
- | BlockState::GreenBed_EastTrueFoot
- | BlockState::GreenBed_EastFalseFoot
- | BlockState::RedBed_WestTrueHead
- | BlockState::RedBed_WestFalseHead
- | BlockState::RedBed_EastTrueFoot
- | BlockState::RedBed_EastFalseFoot
- | BlockState::BlackBed_WestTrueHead
- | BlockState::BlackBed_WestFalseHead
- | BlockState::BlackBed_EastTrueFoot
- | BlockState::BlackBed_EastFalseFoot => &SHAPE5,
- BlockState::WhiteBed_WestTrueFoot
- | BlockState::WhiteBed_WestFalseFoot
- | BlockState::WhiteBed_EastTrueHead
- | BlockState::WhiteBed_EastFalseHead
- | BlockState::OrangeBed_WestTrueFoot
- | BlockState::OrangeBed_WestFalseFoot
- | BlockState::OrangeBed_EastTrueHead
- | BlockState::OrangeBed_EastFalseHead
- | BlockState::MagentaBed_WestTrueFoot
- | BlockState::MagentaBed_WestFalseFoot
- | BlockState::MagentaBed_EastTrueHead
- | BlockState::MagentaBed_EastFalseHead
- | BlockState::LightBlueBed_WestTrueFoot
- | BlockState::LightBlueBed_WestFalseFoot
- | BlockState::LightBlueBed_EastTrueHead
- | BlockState::LightBlueBed_EastFalseHead
- | BlockState::YellowBed_WestTrueFoot
- | BlockState::YellowBed_WestFalseFoot
- | BlockState::YellowBed_EastTrueHead
- | BlockState::YellowBed_EastFalseHead
- | BlockState::LimeBed_WestTrueFoot
- | BlockState::LimeBed_WestFalseFoot
- | BlockState::LimeBed_EastTrueHead
- | BlockState::LimeBed_EastFalseHead
- | BlockState::PinkBed_WestTrueFoot
- | BlockState::PinkBed_WestFalseFoot
- | BlockState::PinkBed_EastTrueHead
- | BlockState::PinkBed_EastFalseHead
- | BlockState::GrayBed_WestTrueFoot
- | BlockState::GrayBed_WestFalseFoot
- | BlockState::GrayBed_EastTrueHead
- | BlockState::GrayBed_EastFalseHead
- | BlockState::LightGrayBed_WestTrueFoot
- | BlockState::LightGrayBed_WestFalseFoot
- | BlockState::LightGrayBed_EastTrueHead
- | BlockState::LightGrayBed_EastFalseHead
- | BlockState::CyanBed_WestTrueFoot
- | BlockState::CyanBed_WestFalseFoot
- | BlockState::CyanBed_EastTrueHead
- | BlockState::CyanBed_EastFalseHead
- | BlockState::PurpleBed_WestTrueFoot
- | BlockState::PurpleBed_WestFalseFoot
- | BlockState::PurpleBed_EastTrueHead
- | BlockState::PurpleBed_EastFalseHead
- | BlockState::BlueBed_WestTrueFoot
- | BlockState::BlueBed_WestFalseFoot
- | BlockState::BlueBed_EastTrueHead
- | BlockState::BlueBed_EastFalseHead
- | BlockState::BrownBed_WestTrueFoot
- | BlockState::BrownBed_WestFalseFoot
- | BlockState::BrownBed_EastTrueHead
- | BlockState::BrownBed_EastFalseHead
- | BlockState::GreenBed_WestTrueFoot
- | BlockState::GreenBed_WestFalseFoot
- | BlockState::GreenBed_EastTrueHead
- | BlockState::GreenBed_EastFalseHead
- | BlockState::RedBed_WestTrueFoot
- | BlockState::RedBed_WestFalseFoot
- | BlockState::RedBed_EastTrueHead
- | BlockState::RedBed_EastFalseHead
- | BlockState::BlackBed_WestTrueFoot
- | BlockState::BlackBed_WestFalseFoot
- | BlockState::BlackBed_EastTrueHead
- | BlockState::BlackBed_EastFalseHead => &SHAPE6,
- BlockState::StickyPiston_TrueNorth | BlockState::Piston_TrueNorth => &SHAPE9,
- BlockState::StickyPiston_TrueEast | BlockState::Piston_TrueEast => &SHAPE10,
- BlockState::StickyPiston_TrueSouth | BlockState::Piston_TrueSouth => &SHAPE11,
- BlockState::StickyPiston_TrueWest | BlockState::Piston_TrueWest => &SHAPE12,
- BlockState::StickyPiston_TrueUp
- | BlockState::Piston_TrueUp
- | BlockState::Snow__7
- | BlockState::EnchantingTable => &SHAPE13,
- BlockState::StickyPiston_TrueDown | BlockState::Piston_TrueDown => &SHAPE14,
- BlockState::PistonHead_NormalNorthTrue | BlockState::PistonHead_StickyNorthTrue => {
- &SHAPE15
+ match self.id {
+ 0
+ | 24..=75
+ | 77..=108
+ | 1893..=1940
+ | 1953..=1959
+ | 2012..=2038
+ | 2303..=2820
+ | 2926..=4221
+ | 4226..=4233
+ | 4250..=4505
+ | 4578..=4597
+ | 4678..=5381
+ | 5462..=5487
+ | 5552..=5567
+ | 5572..=5606
+ | 5633..=5648
+ | 5693..=5697
+ | 5699..=5700
+ | 6583..=6768
+ | 6771..=6772
+ | 6775..=6776
+ | 6779..=6780
+ | 6783..=6784
+ | 6787..=6788
+ | 6791..=6792
+ | 6795..=6796
+ | 7155..=7158
+ | 7176
+ | 7291..=7434
+ | 7695
+ | 7698
+ | 8019
+ | 8022
+ | 8363..=8570
+ | 8747..=8778
+ | 8924..=8947
+ | 9890..=9921
+ | 10270..=10601
+ | 10827..=10828
+ | 10831..=10832
+ | 10835..=10836
+ | 10839..=10840
+ | 10843..=10844
+ | 10847..=10848
+ | 10851..=10852
+ | 10855..=10856
+ | 10859..=10860
+ | 10863..=10864
+ | 10867..=10868
+ | 10871..=10872
+ | 10875..=10876
+ | 10879..=10880
+ | 10883..=10884
+ | 10887..=10888
+ | 10891..=10892
+ | 10895..=10896
+ | 10899..=10900
+ | 10903..=10904
+ | 10907..=10908
+ | 10911..=10912
+ | 10915..=10916
+ | 10919..=10920
+ | 10923..=10924
+ | 10927..=10928
+ | 10931..=10932
+ | 10935..=10936
+ | 10939..=10940
+ | 10943..=10944
+ | 10947..=10948
+ | 10951..=10952
+ | 10955..=10956
+ | 10959..=10960
+ | 10963..=10964
+ | 10967..=10968
+ | 10971..=10972
+ | 10975..=10976
+ | 10979..=10980
+ | 10983..=10984
+ | 10987..=10988
+ | 10991..=10992
+ | 10995..=10996
+ | 10999..=11000
+ | 11003..=11004
+ | 11007..=11008
+ | 11011..=11012
+ | 11015..=11016
+ | 11019..=11020
+ | 11023..=11024
+ | 11027..=11028
+ | 11031..=11032
+ | 11035..=11036
+ | 11039..=11040
+ | 11043..=11044
+ | 11047..=11048
+ | 11884..=11887
+ | 11889
+ | 11924
+ | 12135..=12161
+ | 12185..=12304
+ | 12316
+ | 12330..=12333
+ | 13538
+ | 13541
+ | 13862
+ | 13865
+ | 14186
+ | 14189
+ | 14510
+ | 14513
+ | 14834
+ | 14837
+ | 15158
+ | 15161
+ | 15482
+ | 15485
+ | 15806
+ | 15809
+ | 16130
+ | 16133
+ | 16454
+ | 16457
+ | 16778
+ | 16781
+ | 17102
+ | 17105
+ | 17426
+ | 17429
+ | 17947..=17950
+ | 17964
+ | 17966..=17967
+ | 17981
+ | 17983..=18037
+ | 18052..=18055
+ | 18248..=18249
+ | 18252..=18253
+ | 18256..=18257
+ | 18260..=18261
+ | 18264..=18265
+ | 18268..=18269
+ | 18272..=18273
+ | 18276..=18277
+ | 18280..=18281
+ | 18284..=18285
+ | 18288..=18289
+ | 18292..=18293
+ | 18296..=18297
+ | 18300..=18301
+ | 18304..=18305
+ | 18308..=18309
+ | 18472..=18519
+ | 18648..=18727
+ | 18919
+ | 18922
+ | 19339
+ | 19342
+ | 19744..=19769
+ | 19776
+ | 19779
+ | 20456
+ | 20554..=20681
+ | 21443..=21497
+ | 21508..=21509
+ | 21516..=21517
+ | 21524..=21525
+ | 21532..=21559
+ | 21658
+ | 21661
+ | 22069
+ | 22072
+ | 22480
+ | 22483
+ | 22891
+ | 22894
+ | 23230 => &SHAPE0,
+ 1637 | 1639 | 1642 | 1644 | 1653 | 1655 | 1658 | 1660 | 1669 | 1671 | 1674 | 1676
+ | 1685 | 1687 | 1690 | 1692 | 1701 | 1703 | 1706 | 1708 | 1717 | 1719 | 1722 | 1724
+ | 1733 | 1735 | 1738 | 1740 | 1749 | 1751 | 1754 | 1756 | 1765 | 1767 | 1770 | 1772
+ | 1781 | 1783 | 1786 | 1788 | 1797 | 1799 | 1802 | 1804 | 1813 | 1815 | 1818 | 1820
+ | 1829 | 1831 | 1834 | 1836 | 1845 | 1847 | 1850 | 1852 | 1861 | 1863 | 1866 | 1868
+ | 1877 | 1879 | 1882 | 1884 => &SHAPE3,
+ 1638
+ | 1640..=1641
+ | 1643
+ | 1654
+ | 1656..=1657
+ | 1659
+ | 1670
+ | 1672..=1673
+ | 1675
+ | 1686
+ | 1688..=1689
+ | 1691
+ | 1702
+ | 1704..=1705
+ | 1707
+ | 1718
+ | 1720..=1721
+ | 1723
+ | 1734
+ | 1736..=1737
+ | 1739
+ | 1750
+ | 1752..=1753
+ | 1755
+ | 1766
+ | 1768..=1769
+ | 1771
+ | 1782
+ | 1784..=1785
+ | 1787
+ | 1798
+ | 1800..=1801
+ | 1803
+ | 1814
+ | 1816..=1817
+ | 1819
+ | 1830
+ | 1832..=1833
+ | 1835
+ | 1846
+ | 1848..=1849
+ | 1851
+ | 1862
+ | 1864..=1865
+ | 1867
+ | 1878
+ | 1880..=1881
+ | 1883 => &SHAPE4,
+ 1645 | 1647 | 1650 | 1652 | 1661 | 1663 | 1666 | 1668 | 1677 | 1679 | 1682 | 1684
+ | 1693 | 1695 | 1698 | 1700 | 1709 | 1711 | 1714 | 1716 | 1725 | 1727 | 1730 | 1732
+ | 1741 | 1743 | 1746 | 1748 | 1757 | 1759 | 1762 | 1764 | 1773 | 1775 | 1778 | 1780
+ | 1789 | 1791 | 1794 | 1796 | 1805 | 1807 | 1810 | 1812 | 1821 | 1823 | 1826 | 1828
+ | 1837 | 1839 | 1842 | 1844 | 1853 | 1855 | 1858 | 1860 | 1869 | 1871 | 1874 | 1876
+ | 1885 | 1887 | 1890 | 1892 => &SHAPE5,
+ 1646
+ | 1648..=1649
+ | 1651
+ | 1662
+ | 1664..=1665
+ | 1667
+ | 1678
+ | 1680..=1681
+ | 1683
+ | 1694
+ | 1696..=1697
+ | 1699
+ | 1710
+ | 1712..=1713
+ | 1715
+ | 1726
+ | 1728..=1729
+ | 1731
+ | 1742
+ | 1744..=1745
+ | 1747
+ | 1758
+ | 1760..=1761
+ | 1763
+ | 1774
+ | 1776..=1777
+ | 1779
+ | 1790
+ | 1792..=1793
+ | 1795
+ | 1806
+ | 1808..=1809
+ | 1811
+ | 1822
+ | 1824..=1825
+ | 1827
+ | 1838
+ | 1840..=1841
+ | 1843
+ | 1854
+ | 1856..=1857
+ | 1859
+ | 1870
+ | 1872..=1873
+ | 1875
+ | 1886
+ | 1888..=1889
+ | 1891 => &SHAPE6,
+ 1941 | 1960 => &SHAPE9,
+ 1942 | 1961 => &SHAPE10,
+ 1943 | 1962 => &SHAPE11,
+ 1944 | 1963 => &SHAPE12,
+ 1945 | 1964 | 5612 | 7159 => &SHAPE13,
+ 1946 | 1965 => &SHAPE14,
+ 1972..=1973 => &SHAPE15,
+ 1974..=1975 => &SHAPE17,
+ 1976..=1977 => &SHAPE18,
+ 1978..=1979 => &SHAPE20,
+ 1980..=1981 => &SHAPE21,
+ 1982..=1983 => &SHAPE22,
+ 1984..=1985 => &SHAPE23,
+ 1986..=1987 => &SHAPE24,
+ 1988..=1989 => &SHAPE25,
+ 1990..=1991 => &SHAPE27,
+ 1992..=1993 => &SHAPE28,
+ 1994..=1995 => &SHAPE30,
+ 2822..=2823
+ | 4598..=4599
+ | 6799..=6800
+ | 6879..=6880
+ | 6959..=6960
+ | 7075..=7076
+ | 7201..=7202
+ | 7436..=7437
+ | 7516..=7517
+ | 7596..=7597
+ | 8844..=8845
+ | 9488..=9489
+ | 9568..=9569
+ | 9648..=9649
+ | 9728..=9729
+ | 9808..=9809
+ | 9989..=9990
+ | 10069..=10070
+ | 10149..=10150
+ | 10605..=10606
+ | 11803..=11804
+ | 12334..=12335
+ | 12414..=12415
+ | 12494..=12495
+ | 12574..=12575
+ | 12654..=12655
+ | 12734..=12735
+ | 12814..=12815
+ | 12894..=12895
+ | 12974..=12975
+ | 13054..=13055
+ | 13134..=13135
+ | 13214..=13215
+ | 13294..=13295
+ | 13374..=13375
+ | 18312..=18313
+ | 18392..=18393
+ | 18833..=18834
+ | 19253..=19254
+ | 19658..=19659
+ | 20702..=20703
+ | 20782..=20783
+ | 20862..=20863
+ | 20942..=20943
+ | 21054..=21055
+ | 21134..=21135
+ | 21214..=21215
+ | 21294..=21295
+ | 21566..=21567
+ | 21977..=21978
+ | 22388..=22389
+ | 22799..=22800 => &SHAPE33,
+ 2824..=2825
+ | 2866..=2867
+ | 4600..=4601
+ | 4642..=4643
+ | 6801..=6802
+ | 6843..=6844
+ | 6881..=6882
+ | 6923..=6924
+ | 6961..=6962
+ | 7003..=7004
+ | 7077..=7078
+ | 7119..=7120
+ | 7203..=7204
+ | 7245..=7246
+ | 7438..=7439
+ | 7480..=7481
+ | 7518..=7519
+ | 7560..=7561
+ | 7598..=7599
+ | 7640..=7641
+ | 8846..=8847
+ | 8888..=8889
+ | 9490..=9491
+ | 9532..=9533
+ | 9570..=9571
+ | 9612..=9613
+ | 9650..=9651
+ | 9692..=9693
+ | 9730..=9731
+ | 9772..=9773
+ | 9810..=9811
+ | 9852..=9853
+ | 9991..=9992
+ | 10033..=10034
+ | 10071..=10072
+ | 10113..=10114
+ | 10151..=10152
+ | 10193..=10194
+ | 10607..=10608
+ | 10649..=10650
+ | 11805..=11806
+ | 11847..=11848
+ | 12336..=12337
+ | 12378..=12379
+ | 12416..=12417
+ | 12458..=12459
+ | 12496..=12497
+ | 12538..=12539
+ | 12576..=12577
+ | 12618..=12619
+ | 12656..=12657
+ | 12698..=12699
+ | 12736..=12737
+ | 12778..=12779
+ | 12816..=12817
+ | 12858..=12859
+ | 12896..=12897
+ | 12938..=12939
+ | 12976..=12977
+ | 13018..=13019
+ | 13056..=13057
+ | 13098..=13099
+ | 13136..=13137
+ | 13178..=13179
+ | 13216..=13217
+ | 13258..=13259
+ | 13296..=13297
+ | 13338..=13339
+ | 13376..=13377
+ | 13418..=13419
+ | 18314..=18315
+ | 18356..=18357
+ | 18394..=18395
+ | 18436..=18437
+ | 18835..=18836
+ | 18877..=18878
+ | 19255..=19256
+ | 19297..=19298
+ | 19660..=19661
+ | 19702..=19703
+ | 20704..=20705
+ | 20746..=20747
+ | 20784..=20785
+ | 20826..=20827
+ | 20864..=20865
+ | 20906..=20907
+ | 20944..=20945
+ | 20986..=20987
+ | 21056..=21057
+ | 21098..=21099
+ | 21136..=21137
+ | 21178..=21179
+ | 21216..=21217
+ | 21258..=21259
+ | 21296..=21297
+ | 21338..=21339
+ | 21568..=21569
+ | 21610..=21611
+ | 21979..=21980
+ | 22021..=22022
+ | 22390..=22391
+ | 22432..=22433
+ | 22801..=22802
+ | 22843..=22844 => &SHAPE35,
+ 2826..=2827
+ | 2884..=2885
+ | 4602..=4603
+ | 4660..=4661
+ | 6803..=6804
+ | 6861..=6862
+ | 6883..=6884
+ | 6941..=6942
+ | 6963..=6964
+ | 7021..=7022
+ | 7079..=7080
+ | 7137..=7138
+ | 7205..=7206
+ | 7263..=7264
+ | 7440..=7441
+ | 7498..=7499
+ | 7520..=7521
+ | 7578..=7579
+ | 7600..=7601
+ | 7658..=7659
+ | 8848..=8849
+ | 8906..=8907
+ | 9492..=9493
+ | 9550..=9551
+ | 9572..=9573
+ | 9630..=9631
+ | 9652..=9653
+ | 9710..=9711
+ | 9732..=9733
+ | 9790..=9791
+ | 9812..=9813
+ | 9870..=9871
+ | 9993..=9994
+ | 10051..=10052
+ | 10073..=10074
+ | 10131..=10132
+ | 10153..=10154
+ | 10211..=10212
+ | 10609..=10610
+ | 10667..=10668
+ | 11807..=11808
+ | 11865..=11866
+ | 12338..=12339
+ | 12396..=12397
+ | 12418..=12419
+ | 12476..=12477
+ | 12498..=12499
+ | 12556..=12557
+ | 12578..=12579
+ | 12636..=12637
+ | 12658..=12659
+ | 12716..=12717
+ | 12738..=12739
+ | 12796..=12797
+ | 12818..=12819
+ | 12876..=12877
+ | 12898..=12899
+ | 12956..=12957
+ | 12978..=12979
+ | 13036..=13037
+ | 13058..=13059
+ | 13116..=13117
+ | 13138..=13139
+ | 13196..=13197
+ | 13218..=13219
+ | 13276..=13277
+ | 13298..=13299
+ | 13356..=13357
+ | 13378..=13379
+ | 13436..=13437
+ | 18316..=18317
+ | 18374..=18375
+ | 18396..=18397
+ | 18454..=18455
+ | 18837..=18838
+ | 18895..=18896
+ | 19257..=19258
+ | 19315..=19316
+ | 19662..=19663
+ | 19720..=19721
+ | 20706..=20707
+ | 20764..=20765
+ | 20786..=20787
+ | 20844..=20845
+ | 20866..=20867
+ | 20924..=20925
+ | 20946..=20947
+ | 21004..=21005
+ | 21058..=21059
+ | 21116..=21117
+ | 21138..=21139
+ | 21196..=21197
+ | 21218..=21219
+ | 21276..=21277
+ | 21298..=21299
+ | 21356..=21357
+ | 21570..=21571
+ | 21628..=21629
+ | 21981..=21982
+ | 22039..=22040
+ | 22392..=22393
+ | 22450..=22451
+ | 22803..=22804
+ | 22861..=22862 => &SHAPE37,
+ 2828..=2829
+ | 2870..=2871
+ | 4604..=4605
+ | 4646..=4647
+ | 6805..=6806
+ | 6847..=6848
+ | 6885..=6886
+ | 6927..=6928
+ | 6965..=6966
+ | 7007..=7008
+ | 7081..=7082
+ | 7123..=7124
+ | 7207..=7208
+ | 7249..=7250
+ | 7442..=7443
+ | 7484..=7485
+ | 7522..=7523
+ | 7564..=7565
+ | 7602..=7603
+ | 7644..=7645
+ | 8850..=8851
+ | 8892..=8893
+ | 9494..=9495
+ | 9536..=9537
+ | 9574..=9575
+ | 9616..=9617
+ | 9654..=9655
+ | 9696..=9697
+ | 9734..=9735
+ | 9776..=9777
+ | 9814..=9815
+ | 9856..=9857
+ | 9995..=9996
+ | 10037..=10038
+ | 10075..=10076
+ | 10117..=10118
+ | 10155..=10156
+ | 10197..=10198
+ | 10611..=10612
+ | 10653..=10654
+ | 11809..=11810
+ | 11851..=11852
+ | 12340..=12341
+ | 12382..=12383
+ | 12420..=12421
+ | 12462..=12463
+ | 12500..=12501
+ | 12542..=12543
+ | 12580..=12581
+ | 12622..=12623
+ | 12660..=12661
+ | 12702..=12703
+ | 12740..=12741
+ | 12782..=12783
+ | 12820..=12821
+ | 12862..=12863
+ | 12900..=12901
+ | 12942..=12943
+ | 12980..=12981
+ | 13022..=13023
+ | 13060..=13061
+ | 13102..=13103
+ | 13140..=13141
+ | 13182..=13183
+ | 13220..=13221
+ | 13262..=13263
+ | 13300..=13301
+ | 13342..=13343
+ | 13380..=13381
+ | 13422..=13423
+ | 18318..=18319
+ | 18360..=18361
+ | 18398..=18399
+ | 18440..=18441
+ | 18839..=18840
+ | 18881..=18882
+ | 19259..=19260
+ | 19301..=19302
+ | 19664..=19665
+ | 19706..=19707
+ | 20708..=20709
+ | 20750..=20751
+ | 20788..=20789
+ | 20830..=20831
+ | 20868..=20869
+ | 20910..=20911
+ | 20948..=20949
+ | 20990..=20991
+ | 21060..=21061
+ | 21102..=21103
+ | 21140..=21141
+ | 21182..=21183
+ | 21220..=21221
+ | 21262..=21263
+ | 21300..=21301
+ | 21342..=21343
+ | 21572..=21573
+ | 21614..=21615
+ | 21983..=21984
+ | 22025..=22026
+ | 22394..=22395
+ | 22436..=22437
+ | 22805..=22806
+ | 22847..=22848 => &SHAPE39,
+ 2830..=2831
+ | 2888..=2889
+ | 4606..=4607
+ | 4664..=4665
+ | 6807..=6808
+ | 6865..=6866
+ | 6887..=6888
+ | 6945..=6946
+ | 6967..=6968
+ | 7025..=7026
+ | 7083..=7084
+ | 7141..=7142
+ | 7209..=7210
+ | 7267..=7268
+ | 7444..=7445
+ | 7502..=7503
+ | 7524..=7525
+ | 7582..=7583
+ | 7604..=7605
+ | 7662..=7663
+ | 8852..=8853
+ | 8910..=8911
+ | 9496..=9497
+ | 9554..=9555
+ | 9576..=9577
+ | 9634..=9635
+ | 9656..=9657
+ | 9714..=9715
+ | 9736..=9737
+ | 9794..=9795
+ | 9816..=9817
+ | 9874..=9875
+ | 9997..=9998
+ | 10055..=10056
+ | 10077..=10078
+ | 10135..=10136
+ | 10157..=10158
+ | 10215..=10216
+ | 10613..=10614
+ | 10671..=10672
+ | 11811..=11812
+ | 11869..=11870
+ | 12342..=12343
+ | 12400..=12401
+ | 12422..=12423
+ | 12480..=12481
+ | 12502..=12503
+ | 12560..=12561
+ | 12582..=12583
+ | 12640..=12641
+ | 12662..=12663
+ | 12720..=12721
+ | 12742..=12743
+ | 12800..=12801
+ | 12822..=12823
+ | 12880..=12881
+ | 12902..=12903
+ | 12960..=12961
+ | 12982..=12983
+ | 13040..=13041
+ | 13062..=13063
+ | 13120..=13121
+ | 13142..=13143
+ | 13200..=13201
+ | 13222..=13223
+ | 13280..=13281
+ | 13302..=13303
+ | 13360..=13361
+ | 13382..=13383
+ | 13440..=13441
+ | 18320..=18321
+ | 18378..=18379
+ | 18400..=18401
+ | 18458..=18459
+ | 18841..=18842
+ | 18899..=18900
+ | 19261..=19262
+ | 19319..=19320
+ | 19666..=19667
+ | 19724..=19725
+ | 20710..=20711
+ | 20768..=20769
+ | 20790..=20791
+ | 20848..=20849
+ | 20870..=20871
+ | 20928..=20929
+ | 20950..=20951
+ | 21008..=21009
+ | 21062..=21063
+ | 21120..=21121
+ | 21142..=21143
+ | 21200..=21201
+ | 21222..=21223
+ | 21280..=21281
+ | 21302..=21303
+ | 21360..=21361
+ | 21574..=21575
+ | 21632..=21633
+ | 21985..=21986
+ | 22043..=22044
+ | 22396..=22397
+ | 22454..=22455
+ | 22807..=22808
+ | 22865..=22866 => &SHAPE40,
+ 2832..=2833
+ | 4608..=4609
+ | 6809..=6810
+ | 6889..=6890
+ | 6969..=6970
+ | 7085..=7086
+ | 7211..=7212
+ | 7446..=7447
+ | 7526..=7527
+ | 7606..=7607
+ | 8854..=8855
+ | 9498..=9499
+ | 9578..=9579
+ | 9658..=9659
+ | 9738..=9739
+ | 9818..=9819
+ | 9999..=10000
+ | 10079..=10080
+ | 10159..=10160
+ | 10615..=10616
+ | 11813..=11814
+ | 12344..=12345
+ | 12424..=12425
+ | 12504..=12505
+ | 12584..=12585
+ | 12664..=12665
+ | 12744..=12745
+ | 12824..=12825
+ | 12904..=12905
+ | 12984..=12985
+ | 13064..=13065
+ | 13144..=13145
+ | 13224..=13225
+ | 13304..=13305
+ | 13384..=13385
+ | 18322..=18323
+ | 18402..=18403
+ | 18843..=18844
+ | 19263..=19264
+ | 19668..=19669
+ | 20712..=20713
+ | 20792..=20793
+ | 20872..=20873
+ | 20952..=20953
+ | 21064..=21065
+ | 21144..=21145
+ | 21224..=21225
+ | 21304..=21305
+ | 21576..=21577
+ | 21987..=21988
+ | 22398..=22399
+ | 22809..=22810 => &SHAPE41,
+ 2834..=2835
+ | 2876..=2877
+ | 4610..=4611
+ | 4652..=4653
+ | 6811..=6812
+ | 6853..=6854
+ | 6891..=6892
+ | 6933..=6934
+ | 6971..=6972
+ | 7013..=7014
+ | 7087..=7088
+ | 7129..=7130
+ | 7213..=7214
+ | 7255..=7256
+ | 7448..=7449
+ | 7490..=7491
+ | 7528..=7529
+ | 7570..=7571
+ | 7608..=7609
+ | 7650..=7651
+ | 8856..=8857
+ | 8898..=8899
+ | 9500..=9501
+ | 9542..=9543
+ | 9580..=9581
+ | 9622..=9623
+ | 9660..=9661
+ | 9702..=9703
+ | 9740..=9741
+ | 9782..=9783
+ | 9820..=9821
+ | 9862..=9863
+ | 10001..=10002
+ | 10043..=10044
+ | 10081..=10082
+ | 10123..=10124
+ | 10161..=10162
+ | 10203..=10204
+ | 10617..=10618
+ | 10659..=10660
+ | 11815..=11816
+ | 11857..=11858
+ | 12346..=12347
+ | 12388..=12389
+ | 12426..=12427
+ | 12468..=12469
+ | 12506..=12507
+ | 12548..=12549
+ | 12586..=12587
+ | 12628..=12629
+ | 12666..=12667
+ | 12708..=12709
+ | 12746..=12747
+ | 12788..=12789
+ | 12826..=12827
+ | 12868..=12869
+ | 12906..=12907
+ | 12948..=12949
+ | 12986..=12987
+ | 13028..=13029
+ | 13066..=13067
+ | 13108..=13109
+ | 13146..=13147
+ | 13188..=13189
+ | 13226..=13227
+ | 13268..=13269
+ | 13306..=13307
+ | 13348..=13349
+ | 13386..=13387
+ | 13428..=13429
+ | 18324..=18325
+ | 18366..=18367
+ | 18404..=18405
+ | 18446..=18447
+ | 18845..=18846
+ | 18887..=18888
+ | 19265..=19266
+ | 19307..=19308
+ | 19670..=19671
+ | 19712..=19713
+ | 20714..=20715
+ | 20756..=20757
+ | 20794..=20795
+ | 20836..=20837
+ | 20874..=20875
+ | 20916..=20917
+ | 20954..=20955
+ | 20996..=20997
+ | 21066..=21067
+ | 21108..=21109
+ | 21146..=21147
+ | 21188..=21189
+ | 21226..=21227
+ | 21268..=21269
+ | 21306..=21307
+ | 21348..=21349
+ | 21578..=21579
+ | 21620..=21621
+ | 21989..=21990
+ | 22031..=22032
+ | 22400..=22401
+ | 22442..=22443
+ | 22811..=22812
+ | 22853..=22854 => &SHAPE42,
+ 2836..=2837
+ | 2894..=2895
+ | 4612..=4613
+ | 4670..=4671
+ | 6813..=6814
+ | 6871..=6872
+ | 6893..=6894
+ | 6951..=6952
+ | 6973..=6974
+ | 7031..=7032
+ | 7089..=7090
+ | 7147..=7148
+ | 7215..=7216
+ | 7273..=7274
+ | 7450..=7451
+ | 7508..=7509
+ | 7530..=7531
+ | 7588..=7589
+ | 7610..=7611
+ | 7668..=7669
+ | 8858..=8859
+ | 8916..=8917
+ | 9502..=9503
+ | 9560..=9561
+ | 9582..=9583
+ | 9640..=9641
+ | 9662..=9663
+ | 9720..=9721
+ | 9742..=9743
+ | 9800..=9801
+ | 9822..=9823
+ | 9880..=9881
+ | 10003..=10004
+ | 10061..=10062
+ | 10083..=10084
+ | 10141..=10142
+ | 10163..=10164
+ | 10221..=10222
+ | 10619..=10620
+ | 10677..=10678
+ | 11817..=11818
+ | 11875..=11876
+ | 12348..=12349
+ | 12406..=12407
+ | 12428..=12429
+ | 12486..=12487
+ | 12508..=12509
+ | 12566..=12567
+ | 12588..=12589
+ | 12646..=12647
+ | 12668..=12669
+ | 12726..=12727
+ | 12748..=12749
+ | 12806..=12807
+ | 12828..=12829
+ | 12886..=12887
+ | 12908..=12909
+ | 12966..=12967
+ | 12988..=12989
+ | 13046..=13047
+ | 13068..=13069
+ | 13126..=13127
+ | 13148..=13149
+ | 13206..=13207
+ | 13228..=13229
+ | 13286..=13287
+ | 13308..=13309
+ | 13366..=13367
+ | 13388..=13389
+ | 13446..=13447
+ | 18326..=18327
+ | 18384..=18385
+ | 18406..=18407
+ | 18464..=18465
+ | 18847..=18848
+ | 18905..=18906
+ | 19267..=19268
+ | 19325..=19326
+ | 19672..=19673
+ | 19730..=19731
+ | 20716..=20717
+ | 20774..=20775
+ | 20796..=20797
+ | 20854..=20855
+ | 20876..=20877
+ | 20934..=20935
+ | 20956..=20957
+ | 21014..=21015
+ | 21068..=21069
+ | 21126..=21127
+ | 21148..=21149
+ | 21206..=21207
+ | 21228..=21229
+ | 21286..=21287
+ | 21308..=21309
+ | 21366..=21367
+ | 21580..=21581
+ | 21638..=21639
+ | 21991..=21992
+ | 22049..=22050
+ | 22402..=22403
+ | 22460..=22461
+ | 22813..=22814
+ | 22871..=22872 => &SHAPE44,
+ 2838..=2839
+ | 2880..=2881
+ | 4614..=4615
+ | 4656..=4657
+ | 6815..=6816
+ | 6857..=6858
+ | 6895..=6896
+ | 6937..=6938
+ | 6975..=6976
+ | 7017..=7018
+ | 7091..=7092
+ | 7133..=7134
+ | 7217..=7218
+ | 7259..=7260
+ | 7452..=7453
+ | 7494..=7495
+ | 7532..=7533
+ | 7574..=7575
+ | 7612..=7613
+ | 7654..=7655
+ | 8860..=8861
+ | 8902..=8903
+ | 9504..=9505
+ | 9546..=9547
+ | 9584..=9585
+ | 9626..=9627
+ | 9664..=9665
+ | 9706..=9707
+ | 9744..=9745
+ | 9786..=9787
+ | 9824..=9825
+ | 9866..=9867
+ | 10005..=10006
+ | 10047..=10048
+ | 10085..=10086
+ | 10127..=10128
+ | 10165..=10166
+ | 10207..=10208
+ | 10621..=10622
+ | 10663..=10664
+ | 11819..=11820
+ | 11861..=11862
+ | 12350..=12351
+ | 12392..=12393
+ | 12430..=12431
+ | 12472..=12473
+ | 12510..=12511
+ | 12552..=12553
+ | 12590..=12591
+ | 12632..=12633
+ | 12670..=12671
+ | 12712..=12713
+ | 12750..=12751
+ | 12792..=12793
+ | 12830..=12831
+ | 12872..=12873
+ | 12910..=12911
+ | 12952..=12953
+ | 12990..=12991
+ | 13032..=13033
+ | 13070..=13071
+ | 13112..=13113
+ | 13150..=13151
+ | 13192..=13193
+ | 13230..=13231
+ | 13272..=13273
+ | 13310..=13311
+ | 13352..=13353
+ | 13390..=13391
+ | 13432..=13433
+ | 18328..=18329
+ | 18370..=18371
+ | 18408..=18409
+ | 18450..=18451
+ | 18849..=18850
+ | 18891..=18892
+ | 19269..=19270
+ | 19311..=19312
+ | 19674..=19675
+ | 19716..=19717
+ | 20718..=20719
+ | 20760..=20761
+ | 20798..=20799
+ | 20840..=20841
+ | 20878..=20879
+ | 20920..=20921
+ | 20958..=20959
+ | 21000..=21001
+ | 21070..=21071
+ | 21112..=21113
+ | 21150..=21151
+ | 21192..=21193
+ | 21230..=21231
+ | 21272..=21273
+ | 21310..=21311
+ | 21352..=21353
+ | 21582..=21583
+ | 21624..=21625
+ | 21993..=21994
+ | 22035..=22036
+ | 22404..=22405
+ | 22446..=22447
+ | 22815..=22816
+ | 22857..=22858 => &SHAPE46,
+ 2840..=2841
+ | 2898..=2899
+ | 4616..=4617
+ | 4674..=4675
+ | 6817..=6818
+ | 6875..=6876
+ | 6897..=6898
+ | 6955..=6956
+ | 6977..=6978
+ | 7035..=7036
+ | 7093..=7094
+ | 7151..=7152
+ | 7219..=7220
+ | 7277..=7278
+ | 7454..=7455
+ | 7512..=7513
+ | 7534..=7535
+ | 7592..=7593
+ | 7614..=7615
+ | 7672..=7673
+ | 8862..=8863
+ | 8920..=8921
+ | 9506..=9507
+ | 9564..=9565
+ | 9586..=9587
+ | 9644..=9645
+ | 9666..=9667
+ | 9724..=9725
+ | 9746..=9747
+ | 9804..=9805
+ | 9826..=9827
+ | 9884..=9885
+ | 10007..=10008
+ | 10065..=10066
+ | 10087..=10088
+ | 10145..=10146
+ | 10167..=10168
+ | 10225..=10226
+ | 10623..=10624
+ | 10681..=10682
+ | 11821..=11822
+ | 11879..=11880
+ | 12352..=12353
+ | 12410..=12411
+ | 12432..=12433
+ | 12490..=12491
+ | 12512..=12513
+ | 12570..=12571
+ | 12592..=12593
+ | 12650..=12651
+ | 12672..=12673
+ | 12730..=12731
+ | 12752..=12753
+ | 12810..=12811
+ | 12832..=12833
+ | 12890..=12891
+ | 12912..=12913
+ | 12970..=12971
+ | 12992..=12993
+ | 13050..=13051
+ | 13072..=13073
+ | 13130..=13131
+ | 13152..=13153
+ | 13210..=13211
+ | 13232..=13233
+ | 13290..=13291
+ | 13312..=13313
+ | 13370..=13371
+ | 13392..=13393
+ | 13450..=13451
+ | 18330..=18331
+ | 18388..=18389
+ | 18410..=18411
+ | 18468..=18469
+ | 18851..=18852
+ | 18909..=18910
+ | 19271..=19272
+ | 19329..=19330
+ | 19676..=19677
+ | 19734..=19735
+ | 20720..=20721
+ | 20778..=20779
+ | 20800..=20801
+ | 20858..=20859
+ | 20880..=20881
+ | 20938..=20939
+ | 20960..=20961
+ | 21018..=21019
+ | 21072..=21073
+ | 21130..=21131
+ | 21152..=21153
+ | 21210..=21211
+ | 21232..=21233
+ | 21290..=21291
+ | 21312..=21313
+ | 21370..=21371
+ | 21584..=21585
+ | 21642..=21643
+ | 21995..=21996
+ | 22053..=22054
+ | 22406..=22407
+ | 22464..=22465
+ | 22817..=22818
+ | 22875..=22876 => &SHAPE47,
+ 2842..=2843
+ | 4618..=4619
+ | 6819..=6820
+ | 6899..=6900
+ | 6979..=6980
+ | 7095..=7096
+ | 7221..=7222
+ | 7456..=7457
+ | 7536..=7537
+ | 7616..=7617
+ | 8864..=8865
+ | 9508..=9509
+ | 9588..=9589
+ | 9668..=9669
+ | 9748..=9749
+ | 9828..=9829
+ | 10009..=10010
+ | 10089..=10090
+ | 10169..=10170
+ | 10625..=10626
+ | 11823..=11824
+ | 12354..=12355
+ | 12434..=12435
+ | 12514..=12515
+ | 12594..=12595
+ | 12674..=12675
+ | 12754..=12755
+ | 12834..=12835
+ | 12914..=12915
+ | 12994..=12995
+ | 13074..=13075
+ | 13154..=13155
+ | 13234..=13235
+ | 13314..=13315
+ | 13394..=13395
+ | 18332..=18333
+ | 18412..=18413
+ | 18853..=18854
+ | 19273..=19274
+ | 19678..=19679
+ | 20722..=20723
+ | 20802..=20803
+ | 20882..=20883
+ | 20962..=20963
+ | 21074..=21075
+ | 21154..=21155
+ | 21234..=21235
+ | 21314..=21315
+ | 21586..=21587
+ | 21997..=21998
+ | 22408..=22409
+ | 22819..=22820 => &SHAPE48,
+ 2844..=2845
+ | 2886..=2887
+ | 4620..=4621
+ | 4662..=4663
+ | 6821..=6822
+ | 6863..=6864
+ | 6901..=6902
+ | 6943..=6944
+ | 6981..=6982
+ | 7023..=7024
+ | 7097..=7098
+ | 7139..=7140
+ | 7223..=7224
+ | 7265..=7266
+ | 7458..=7459
+ | 7500..=7501
+ | 7538..=7539
+ | 7580..=7581
+ | 7618..=7619
+ | 7660..=7661
+ | 8866..=8867
+ | 8908..=8909
+ | 9510..=9511
+ | 9552..=9553
+ | 9590..=9591
+ | 9632..=9633
+ | 9670..=9671
+ | 9712..=9713
+ | 9750..=9751
+ | 9792..=9793
+ | 9830..=9831
+ | 9872..=9873
+ | 10011..=10012
+ | 10053..=10054
+ | 10091..=10092
+ | 10133..=10134
+ | 10171..=10172
+ | 10213..=10214
+ | 10627..=10628
+ | 10669..=10670
+ | 11825..=11826
+ | 11867..=11868
+ | 12356..=12357
+ | 12398..=12399
+ | 12436..=12437
+ | 12478..=12479
+ | 12516..=12517
+ | 12558..=12559
+ | 12596..=12597
+ | 12638..=12639
+ | 12676..=12677
+ | 12718..=12719
+ | 12756..=12757
+ | 12798..=12799
+ | 12836..=12837
+ | 12878..=12879
+ | 12916..=12917
+ | 12958..=12959
+ | 12996..=12997
+ | 13038..=13039
+ | 13076..=13077
+ | 13118..=13119
+ | 13156..=13157
+ | 13198..=13199
+ | 13236..=13237
+ | 13278..=13279
+ | 13316..=13317
+ | 13358..=13359
+ | 13396..=13397
+ | 13438..=13439
+ | 18334..=18335
+ | 18376..=18377
+ | 18414..=18415
+ | 18456..=18457
+ | 18855..=18856
+ | 18897..=18898
+ | 19275..=19276
+ | 19317..=19318
+ | 19680..=19681
+ | 19722..=19723
+ | 20724..=20725
+ | 20766..=20767
+ | 20804..=20805
+ | 20846..=20847
+ | 20884..=20885
+ | 20926..=20927
+ | 20964..=20965
+ | 21006..=21007
+ | 21076..=21077
+ | 21118..=21119
+ | 21156..=21157
+ | 21198..=21199
+ | 21236..=21237
+ | 21278..=21279
+ | 21316..=21317
+ | 21358..=21359
+ | 21588..=21589
+ | 21630..=21631
+ | 21999..=22000
+ | 22041..=22042
+ | 22410..=22411
+ | 22452..=22453
+ | 22821..=22822
+ | 22863..=22864 => &SHAPE49,
+ 2846..=2847
+ | 2864..=2865
+ | 4622..=4623
+ | 4640..=4641
+ | 6823..=6824
+ | 6841..=6842
+ | 6903..=6904
+ | 6921..=6922
+ | 6983..=6984
+ | 7001..=7002
+ | 7099..=7100
+ | 7117..=7118
+ | 7225..=7226
+ | 7243..=7244
+ | 7460..=7461
+ | 7478..=7479
+ | 7540..=7541
+ | 7558..=7559
+ | 7620..=7621
+ | 7638..=7639
+ | 8868..=8869
+ | 8886..=8887
+ | 9512..=9513
+ | 9530..=9531
+ | 9592..=9593
+ | 9610..=9611
+ | 9672..=9673
+ | 9690..=9691
+ | 9752..=9753
+ | 9770..=9771
+ | 9832..=9833
+ | 9850..=9851
+ | 10013..=10014
+ | 10031..=10032
+ | 10093..=10094
+ | 10111..=10112
+ | 10173..=10174
+ | 10191..=10192
+ | 10629..=10630
+ | 10647..=10648
+ | 11827..=11828
+ | 11845..=11846
+ | 12358..=12359
+ | 12376..=12377
+ | 12438..=12439
+ | 12456..=12457
+ | 12518..=12519
+ | 12536..=12537
+ | 12598..=12599
+ | 12616..=12617
+ | 12678..=12679
+ | 12696..=12697
+ | 12758..=12759
+ | 12776..=12777
+ | 12838..=12839
+ | 12856..=12857
+ | 12918..=12919
+ | 12936..=12937
+ | 12998..=12999
+ | 13016..=13017
+ | 13078..=13079
+ | 13096..=13097
+ | 13158..=13159
+ | 13176..=13177
+ | 13238..=13239
+ | 13256..=13257
+ | 13318..=13319
+ | 13336..=13337
+ | 13398..=13399
+ | 13416..=13417
+ | 18336..=18337
+ | 18354..=18355
+ | 18416..=18417
+ | 18434..=18435
+ | 18857..=18858
+ | 18875..=18876
+ | 19277..=19278
+ | 19295..=19296
+ | 19682..=19683
+ | 19700..=19701
+ | 20726..=20727
+ | 20744..=20745
+ | 20806..=20807
+ | 20824..=20825
+ | 20886..=20887
+ | 20904..=20905
+ | 20966..=20967
+ | 20984..=20985
+ | 21078..=21079
+ | 21096..=21097
+ | 21158..=21159
+ | 21176..=21177
+ | 21238..=21239
+ | 21256..=21257
+ | 21318..=21319
+ | 21336..=21337
+ | 21590..=21591
+ | 21608..=21609
+ | 22001..=22002
+ | 22019..=22020
+ | 22412..=22413
+ | 22430..=22431
+ | 22823..=22824
+ | 22841..=22842 => &SHAPE50,
+ 2848..=2849
+ | 2890..=2891
+ | 4624..=4625
+ | 4666..=4667
+ | 6825..=6826
+ | 6867..=6868
+ | 6905..=6906
+ | 6947..=6948
+ | 6985..=6986
+ | 7027..=7028
+ | 7101..=7102
+ | 7143..=7144
+ | 7227..=7228
+ | 7269..=7270
+ | 7462..=7463
+ | 7504..=7505
+ | 7542..=7543
+ | 7584..=7585
+ | 7622..=7623
+ | 7664..=7665
+ | 8870..=8871
+ | 8912..=8913
+ | 9514..=9515
+ | 9556..=9557
+ | 9594..=9595
+ | 9636..=9637
+ | 9674..=9675
+ | 9716..=9717
+ | 9754..=9755
+ | 9796..=9797
+ | 9834..=9835
+ | 9876..=9877
+ | 10015..=10016
+ | 10057..=10058
+ | 10095..=10096
+ | 10137..=10138
+ | 10175..=10176
+ | 10217..=10218
+ | 10631..=10632
+ | 10673..=10674
+ | 11829..=11830
+ | 11871..=11872
+ | 12360..=12361
+ | 12402..=12403
+ | 12440..=12441
+ | 12482..=12483
+ | 12520..=12521
+ | 12562..=12563
+ | 12600..=12601
+ | 12642..=12643
+ | 12680..=12681
+ | 12722..=12723
+ | 12760..=12761
+ | 12802..=12803
+ | 12840..=12841
+ | 12882..=12883
+ | 12920..=12921
+ | 12962..=12963
+ | 13000..=13001
+ | 13042..=13043
+ | 13080..=13081
+ | 13122..=13123
+ | 13160..=13161
+ | 13202..=13203
+ | 13240..=13241
+ | 13282..=13283
+ | 13320..=13321
+ | 13362..=13363
+ | 13400..=13401
+ | 13442..=13443
+ | 18338..=18339
+ | 18380..=18381
+ | 18418..=18419
+ | 18460..=18461
+ | 18859..=18860
+ | 18901..=18902
+ | 19279..=19280
+ | 19321..=19322
+ | 19684..=19685
+ | 19726..=19727
+ | 20728..=20729
+ | 20770..=20771
+ | 20808..=20809
+ | 20850..=20851
+ | 20888..=20889
+ | 20930..=20931
+ | 20968..=20969
+ | 21010..=21011
+ | 21080..=21081
+ | 21122..=21123
+ | 21160..=21161
+ | 21202..=21203
+ | 21240..=21241
+ | 21282..=21283
+ | 21320..=21321
+ | 21362..=21363
+ | 21592..=21593
+ | 21634..=21635
+ | 22003..=22004
+ | 22045..=22046
+ | 22414..=22415
+ | 22456..=22457
+ | 22825..=22826
+ | 22867..=22868 => &SHAPE51,
+ 2850..=2851
+ | 2868..=2869
+ | 4626..=4627
+ | 4644..=4645
+ | 6827..=6828
+ | 6845..=6846
+ | 6907..=6908
+ | 6925..=6926
+ | 6987..=6988
+ | 7005..=7006
+ | 7103..=7104
+ | 7121..=7122
+ | 7229..=7230
+ | 7247..=7248
+ | 7464..=7465
+ | 7482..=7483
+ | 7544..=7545
+ | 7562..=7563
+ | 7624..=7625
+ | 7642..=7643
+ | 8872..=8873
+ | 8890..=8891
+ | 9516..=9517
+ | 9534..=9535
+ | 9596..=9597
+ | 9614..=9615
+ | 9676..=9677
+ | 9694..=9695
+ | 9756..=9757
+ | 9774..=9775
+ | 9836..=9837
+ | 9854..=9855
+ | 10017..=10018
+ | 10035..=10036
+ | 10097..=10098
+ | 10115..=10116
+ | 10177..=10178
+ | 10195..=10196
+ | 10633..=10634
+ | 10651..=10652
+ | 11831..=11832
+ | 11849..=11850
+ | 12362..=12363
+ | 12380..=12381
+ | 12442..=12443
+ | 12460..=12461
+ | 12522..=12523
+ | 12540..=12541
+ | 12602..=12603
+ | 12620..=12621
+ | 12682..=12683
+ | 12700..=12701
+ | 12762..=12763
+ | 12780..=12781
+ | 12842..=12843
+ | 12860..=12861
+ | 12922..=12923
+ | 12940..=12941
+ | 13002..=13003
+ | 13020..=13021
+ | 13082..=13083
+ | 13100..=13101
+ | 13162..=13163
+ | 13180..=13181
+ | 13242..=13243
+ | 13260..=13261
+ | 13322..=13323
+ | 13340..=13341
+ | 13402..=13403
+ | 13420..=13421
+ | 18340..=18341
+ | 18358..=18359
+ | 18420..=18421
+ | 18438..=18439
+ | 18861..=18862
+ | 18879..=18880
+ | 19281..=19282
+ | 19299..=19300
+ | 19686..=19687
+ | 19704..=19705
+ | 20730..=20731
+ | 20748..=20749
+ | 20810..=20811
+ | 20828..=20829
+ | 20890..=20891
+ | 20908..=20909
+ | 20970..=20971
+ | 20988..=20989
+ | 21082..=21083
+ | 21100..=21101
+ | 21162..=21163
+ | 21180..=21181
+ | 21242..=21243
+ | 21260..=21261
+ | 21322..=21323
+ | 21340..=21341
+ | 21594..=21595
+ | 21612..=21613
+ | 22005..=22006
+ | 22023..=22024
+ | 22416..=22417
+ | 22434..=22435
+ | 22827..=22828
+ | 22845..=22846 => &SHAPE52,
+ 2852..=2853
+ | 4628..=4629
+ | 6829..=6830
+ | 6909..=6910
+ | 6989..=6990
+ | 7105..=7106
+ | 7231..=7232
+ | 7466..=7467
+ | 7546..=7547
+ | 7626..=7627
+ | 8874..=8875
+ | 9518..=9519
+ | 9598..=9599
+ | 9678..=9679
+ | 9758..=9759
+ | 9838..=9839
+ | 10019..=10020
+ | 10099..=10100
+ | 10179..=10180
+ | 10635..=10636
+ | 11833..=11834
+ | 12364..=12365
+ | 12444..=12445
+ | 12524..=12525
+ | 12604..=12605
+ | 12684..=12685
+ | 12764..=12765
+ | 12844..=12845
+ | 12924..=12925
+ | 13004..=13005
+ | 13084..=13085
+ | 13164..=13165
+ | 13244..=13245
+ | 13324..=13325
+ | 13404..=13405
+ | 18342..=18343
+ | 18422..=18423
+ | 18863..=18864
+ | 19283..=19284
+ | 19688..=19689
+ | 20732..=20733
+ | 20812..=20813
+ | 20892..=20893
+ | 20972..=20973
+ | 21084..=21085
+ | 21164..=21165
+ | 21244..=21245
+ | 21324..=21325
+ | 21596..=21597
+ | 22007..=22008
+ | 22418..=22419
+ | 22829..=22830 => &SHAPE53,
+ 2854..=2855
+ | 2896..=2897
+ | 4630..=4631
+ | 4672..=4673
+ | 6831..=6832
+ | 6873..=6874
+ | 6911..=6912
+ | 6953..=6954
+ | 6991..=6992
+ | 7033..=7034
+ | 7107..=7108
+ | 7149..=7150
+ | 7233..=7234
+ | 7275..=7276
+ | 7468..=7469
+ | 7510..=7511
+ | 7548..=7549
+ | 7590..=7591
+ | 7628..=7629
+ | 7670..=7671
+ | 8876..=8877
+ | 8918..=8919
+ | 9520..=9521
+ | 9562..=9563
+ | 9600..=9601
+ | 9642..=9643
+ | 9680..=9681
+ | 9722..=9723
+ | 9760..=9761
+ | 9802..=9803
+ | 9840..=9841
+ | 9882..=9883
+ | 10021..=10022
+ | 10063..=10064
+ | 10101..=10102
+ | 10143..=10144
+ | 10181..=10182
+ | 10223..=10224
+ | 10637..=10638
+ | 10679..=10680
+ | 11835..=11836
+ | 11877..=11878
+ | 12366..=12367
+ | 12408..=12409
+ | 12446..=12447
+ | 12488..=12489
+ | 12526..=12527
+ | 12568..=12569
+ | 12606..=12607
+ | 12648..=12649
+ | 12686..=12687
+ | 12728..=12729
+ | 12766..=12767
+ | 12808..=12809
+ | 12846..=12847
+ | 12888..=12889
+ | 12926..=12927
+ | 12968..=12969
+ | 13006..=13007
+ | 13048..=13049
+ | 13086..=13087
+ | 13128..=13129
+ | 13166..=13167
+ | 13208..=13209
+ | 13246..=13247
+ | 13288..=13289
+ | 13326..=13327
+ | 13368..=13369
+ | 13406..=13407
+ | 13448..=13449
+ | 18344..=18345
+ | 18386..=18387
+ | 18424..=18425
+ | 18466..=18467
+ | 18865..=18866
+ | 18907..=18908
+ | 19285..=19286
+ | 19327..=19328
+ | 19690..=19691
+ | 19732..=19733
+ | 20734..=20735
+ | 20776..=20777
+ | 20814..=20815
+ | 20856..=20857
+ | 20894..=20895
+ | 20936..=20937
+ | 20974..=20975
+ | 21016..=21017
+ | 21086..=21087
+ | 21128..=21129
+ | 21166..=21167
+ | 21208..=21209
+ | 21246..=21247
+ | 21288..=21289
+ | 21326..=21327
+ | 21368..=21369
+ | 21598..=21599
+ | 21640..=21641
+ | 22009..=22010
+ | 22051..=22052
+ | 22420..=22421
+ | 22462..=22463
+ | 22831..=22832
+ | 22873..=22874 => &SHAPE54,
+ 2856..=2857
+ | 2874..=2875
+ | 4632..=4633
+ | 4650..=4651
+ | 6833..=6834
+ | 6851..=6852
+ | 6913..=6914
+ | 6931..=6932
+ | 6993..=6994
+ | 7011..=7012
+ | 7109..=7110
+ | 7127..=7128
+ | 7235..=7236
+ | 7253..=7254
+ | 7470..=7471
+ | 7488..=7489
+ | 7550..=7551
+ | 7568..=7569
+ | 7630..=7631
+ | 7648..=7649
+ | 8878..=8879
+ | 8896..=8897
+ | 9522..=9523
+ | 9540..=9541
+ | 9602..=9603
+ | 9620..=9621
+ | 9682..=9683
+ | 9700..=9701
+ | 9762..=9763
+ | 9780..=9781
+ | 9842..=9843
+ | 9860..=9861
+ | 10023..=10024
+ | 10041..=10042
+ | 10103..=10104
+ | 10121..=10122
+ | 10183..=10184
+ | 10201..=10202
+ | 10639..=10640
+ | 10657..=10658
+ | 11837..=11838
+ | 11855..=11856
+ | 12368..=12369
+ | 12386..=12387
+ | 12448..=12449
+ | 12466..=12467
+ | 12528..=12529
+ | 12546..=12547
+ | 12608..=12609
+ | 12626..=12627
+ | 12688..=12689
+ | 12706..=12707
+ | 12768..=12769
+ | 12786..=12787
+ | 12848..=12849
+ | 12866..=12867
+ | 12928..=12929
+ | 12946..=12947
+ | 13008..=13009
+ | 13026..=13027
+ | 13088..=13089
+ | 13106..=13107
+ | 13168..=13169
+ | 13186..=13187
+ | 13248..=13249
+ | 13266..=13267
+ | 13328..=13329
+ | 13346..=13347
+ | 13408..=13409
+ | 13426..=13427
+ | 18346..=18347
+ | 18364..=18365
+ | 18426..=18427
+ | 18444..=18445
+ | 18867..=18868
+ | 18885..=18886
+ | 19287..=19288
+ | 19305..=19306
+ | 19692..=19693
+ | 19710..=19711
+ | 20736..=20737
+ | 20754..=20755
+ | 20816..=20817
+ | 20834..=20835
+ | 20896..=20897
+ | 20914..=20915
+ | 20976..=20977
+ | 20994..=20995
+ | 21088..=21089
+ | 21106..=21107
+ | 21168..=21169
+ | 21186..=21187
+ | 21248..=21249
+ | 21266..=21267
+ | 21328..=21329
+ | 21346..=21347
+ | 21600..=21601
+ | 21618..=21619
+ | 22011..=22012
+ | 22029..=22030
+ | 22422..=22423
+ | 22440..=22441
+ | 22833..=22834
+ | 22851..=22852 => &SHAPE55,
+ 2858..=2859
+ | 2900..=2901
+ | 4634..=4635
+ | 4676..=4677
+ | 6835..=6836
+ | 6877..=6878
+ | 6915..=6916
+ | 6957..=6958
+ | 6995..=6996
+ | 7037..=7038
+ | 7111..=7112
+ | 7153..=7154
+ | 7237..=7238
+ | 7279..=7280
+ | 7472..=7473
+ | 7514..=7515
+ | 7552..=7553
+ | 7594..=7595
+ | 7632..=7633
+ | 7674..=7675
+ | 8880..=8881
+ | 8922..=8923
+ | 9524..=9525
+ | 9566..=9567
+ | 9604..=9605
+ | 9646..=9647
+ | 9684..=9685
+ | 9726..=9727
+ | 9764..=9765
+ | 9806..=9807
+ | 9844..=9845
+ | 9886..=9887
+ | 10025..=10026
+ | 10067..=10068
+ | 10105..=10106
+ | 10147..=10148
+ | 10185..=10186
+ | 10227..=10228
+ | 10641..=10642
+ | 10683..=10684
+ | 11839..=11840
+ | 11881..=11882
+ | 12370..=12371
+ | 12412..=12413
+ | 12450..=12451
+ | 12492..=12493
+ | 12530..=12531
+ | 12572..=12573
+ | 12610..=12611
+ | 12652..=12653
+ | 12690..=12691
+ | 12732..=12733
+ | 12770..=12771
+ | 12812..=12813
+ | 12850..=12851
+ | 12892..=12893
+ | 12930..=12931
+ | 12972..=12973
+ | 13010..=13011
+ | 13052..=13053
+ | 13090..=13091
+ | 13132..=13133
+ | 13170..=13171
+ | 13212..=13213
+ | 13250..=13251
+ | 13292..=13293
+ | 13330..=13331
+ | 13372..=13373
+ | 13410..=13411
+ | 13452..=13453
+ | 18348..=18349
+ | 18390..=18391
+ | 18428..=18429
+ | 18470..=18471
+ | 18869..=18870
+ | 18911..=18912
+ | 19289..=19290
+ | 19331..=19332
+ | 19694..=19695
+ | 19736..=19737
+ | 20738..=20739
+ | 20780..=20781
+ | 20818..=20819
+ | 20860..=20861
+ | 20898..=20899
+ | 20940..=20941
+ | 20978..=20979
+ | 21020..=21021
+ | 21090..=21091
+ | 21132..=21133
+ | 21170..=21171
+ | 21212..=21213
+ | 21250..=21251
+ | 21292..=21293
+ | 21330..=21331
+ | 21372..=21373
+ | 21602..=21603
+ | 21644..=21645
+ | 22013..=22014
+ | 22055..=22056
+ | 22424..=22425
+ | 22466..=22467
+ | 22835..=22836
+ | 22877..=22878 => &SHAPE56,
+ 2860..=2861
+ | 2878..=2879
+ | 4636..=4637
+ | 4654..=4655
+ | 6837..=6838
+ | 6855..=6856
+ | 6917..=6918
+ | 6935..=6936
+ | 6997..=6998
+ | 7015..=7016
+ | 7113..=7114
+ | 7131..=7132
+ | 7239..=7240
+ | 7257..=7258
+ | 7474..=7475
+ | 7492..=7493
+ | 7554..=7555
+ | 7572..=7573
+ | 7634..=7635
+ | 7652..=7653
+ | 8882..=8883
+ | 8900..=8901
+ | 9526..=9527
+ | 9544..=9545
+ | 9606..=9607
+ | 9624..=9625
+ | 9686..=9687
+ | 9704..=9705
+ | 9766..=9767
+ | 9784..=9785
+ | 9846..=9847
+ | 9864..=9865
+ | 10027..=10028
+ | 10045..=10046
+ | 10107..=10108
+ | 10125..=10126
+ | 10187..=10188
+ | 10205..=10206
+ | 10643..=10644
+ | 10661..=10662
+ | 11841..=11842
+ | 11859..=11860
+ | 12372..=12373
+ | 12390..=12391
+ | 12452..=12453
+ | 12470..=12471
+ | 12532..=12533
+ | 12550..=12551
+ | 12612..=12613
+ | 12630..=12631
+ | 12692..=12693
+ | 12710..=12711
+ | 12772..=12773
+ | 12790..=12791
+ | 12852..=12853
+ | 12870..=12871
+ | 12932..=12933
+ | 12950..=12951
+ | 13012..=13013
+ | 13030..=13031
+ | 13092..=13093
+ | 13110..=13111
+ | 13172..=13173
+ | 13190..=13191
+ | 13252..=13253
+ | 13270..=13271
+ | 13332..=13333
+ | 13350..=13351
+ | 13412..=13413
+ | 13430..=13431
+ | 18350..=18351
+ | 18368..=18369
+ | 18430..=18431
+ | 18448..=18449
+ | 18871..=18872
+ | 18889..=18890
+ | 19291..=19292
+ | 19309..=19310
+ | 19696..=19697
+ | 19714..=19715
+ | 20740..=20741
+ | 20758..=20759
+ | 20820..=20821
+ | 20838..=20839
+ | 20900..=20901
+ | 20918..=20919
+ | 20980..=20981
+ | 20998..=20999
+ | 21092..=21093
+ | 21110..=21111
+ | 21172..=21173
+ | 21190..=21191
+ | 21252..=21253
+ | 21270..=21271
+ | 21332..=21333
+ | 21350..=21351
+ | 21604..=21605
+ | 21622..=21623
+ | 22015..=22016
+ | 22033..=22034
+ | 22426..=22427
+ | 22444..=22445
+ | 22837..=22838
+ | 22855..=22856 => &SHAPE57,
+ 2862..=2863
+ | 4638..=4639
+ | 6839..=6840
+ | 6919..=6920
+ | 6999..=7000
+ | 7115..=7116
+ | 7241..=7242
+ | 7476..=7477
+ | 7556..=7557
+ | 7636..=7637
+ | 8884..=8885
+ | 9528..=9529
+ | 9608..=9609
+ | 9688..=9689
+ | 9768..=9769
+ | 9848..=9849
+ | 10029..=10030
+ | 10109..=10110
+ | 10189..=10190
+ | 10645..=10646
+ | 11843..=11844
+ | 12374..=12375
+ | 12454..=12455
+ | 12534..=12535
+ | 12614..=12615
+ | 12694..=12695
+ | 12774..=12775
+ | 12854..=12855
+ | 12934..=12935
+ | 13014..=13015
+ | 13094..=13095
+ | 13174..=13175
+ | 13254..=13255
+ | 13334..=13335
+ | 13414..=13415
+ | 18352..=18353
+ | 18432..=18433
+ | 18873..=18874
+ | 19293..=19294
+ | 19698..=19699
+ | 20742..=20743
+ | 20822..=20823
+ | 20902..=20903
+ | 20982..=20983
+ | 21094..=21095
+ | 21174..=21175
+ | 21254..=21255
+ | 21334..=21335
+ | 21606..=21607
+ | 22017..=22018
+ | 22428..=22429
+ | 22839..=22840 => &SHAPE36,
+ 2872..=2873
+ | 4648..=4649
+ | 6849..=6850
+ | 6929..=6930
+ | 7009..=7010
+ | 7125..=7126
+ | 7251..=7252
+ | 7486..=7487
+ | 7566..=7567
+ | 7646..=7647
+ | 8894..=8895
+ | 9538..=9539
+ | 9618..=9619
+ | 9698..=9699
+ | 9778..=9779
+ | 9858..=9859
+ | 10039..=10040
+ | 10119..=10120
+ | 10199..=10200
+ | 10655..=10656
+ | 11853..=11854
+ | 12384..=12385
+ | 12464..=12465
+ | 12544..=12545
+ | 12624..=12625
+ | 12704..=12705
+ | 12784..=12785
+ | 12864..=12865
+ | 12944..=12945
+ | 13024..=13025
+ | 13104..=13105
+ | 13184..=13185
+ | 13264..=13265
+ | 13344..=13345
+ | 13424..=13425
+ | 18362..=18363
+ | 18442..=18443
+ | 18883..=18884
+ | 19303..=19304
+ | 19708..=19709
+ | 20752..=20753
+ | 20832..=20833
+ | 20912..=20913
+ | 20992..=20993
+ | 21104..=21105
+ | 21184..=21185
+ | 21264..=21265
+ | 21344..=21345
+ | 21616..=21617
+ | 22027..=22028
+ | 22438..=22439
+ | 22849..=22850 => &SHAPE43,
+ 2882..=2883
+ | 4658..=4659
+ | 6859..=6860
+ | 6939..=6940
+ | 7019..=7020
+ | 7135..=7136
+ | 7261..=7262
+ | 7496..=7497
+ | 7576..=7577
+ | 7656..=7657
+ | 8904..=8905
+ | 9548..=9549
+ | 9628..=9629
+ | 9708..=9709
+ | 9788..=9789
+ | 9868..=9869
+ | 10049..=10050
+ | 10129..=10130
+ | 10209..=10210
+ | 10665..=10666
+ | 11863..=11864
+ | 12394..=12395
+ | 12474..=12475
+ | 12554..=12555
+ | 12634..=12635
+ | 12714..=12715
+ | 12794..=12795
+ | 12874..=12875
+ | 12954..=12955
+ | 13034..=13035
+ | 13114..=13115
+ | 13194..=13195
+ | 13274..=13275
+ | 13354..=13355
+ | 13434..=13435
+ | 18372..=18373
+ | 18452..=18453
+ | 18893..=18894
+ | 19313..=19314
+ | 19718..=19719
+ | 20762..=20763
+ | 20842..=20843
+ | 20922..=20923
+ | 21002..=21003
+ | 21114..=21115
+ | 21194..=21195
+ | 21274..=21275
+ | 21354..=21355
+ | 21626..=21627
+ | 22037..=22038
+ | 22448..=22449
+ | 22859..=22860 => &SHAPE38,
+ 2892..=2893
+ | 4668..=4669
+ | 6869..=6870
+ | 6949..=6950
+ | 7029..=7030
+ | 7145..=7146
+ | 7271..=7272
+ | 7506..=7507
+ | 7586..=7587
+ | 7666..=7667
+ | 8914..=8915
+ | 9558..=9559
+ | 9638..=9639
+ | 9718..=9719
+ | 9798..=9799
+ | 9878..=9879
+ | 10059..=10060
+ | 10139..=10140
+ | 10219..=10220
+ | 10675..=10676
+ | 11873..=11874
+ | 12404..=12405
+ | 12484..=12485
+ | 12564..=12565
+ | 12644..=12645
+ | 12724..=12725
+ | 12804..=12805
+ | 12884..=12885
+ | 12964..=12965
+ | 13044..=13045
+ | 13124..=13125
+ | 13204..=13205
+ | 13284..=13285
+ | 13364..=13365
+ | 13444..=13445
+ | 18382..=18383
+ | 18462..=18463
+ | 18903..=18904
+ | 19323..=19324
+ | 19728..=19729
+ | 20772..=20773
+ | 20852..=20853
+ | 20932..=20933
+ | 21012..=21013
+ | 21124..=21125
+ | 21204..=21205
+ | 21284..=21285
+ | 21364..=21365
+ | 21636..=21637
+ | 22047..=22048
+ | 22458..=22459
+ | 22869..=22870 => &SHAPE45,
+ 2902..=2903
+ | 2908..=2909
+ | 2914..=2915
+ | 2920..=2921
+ | 7283..=7290
+ | 8723..=8724
+ | 8729..=8730
+ | 8735..=8736
+ | 8741..=8742 => &SHAPE58,
+ 2904..=2905 | 2912..=2913 | 8725..=8726 | 8733..=8734 => &SHAPE60,
+ 2906..=2907 | 2910..=2911 | 8727..=8728 | 8731..=8732 => &SHAPE61,
+ 2916..=2917 | 2924..=2925 | 8737..=8738 | 8745..=8746 => &SHAPE62,
+ 2918..=2919 | 2922..=2923 | 8739..=8740 | 8743..=8744 => &SHAPE63,
+ 4234..=4241 | 11888 => &SHAPE67,
+ 4506..=4507
+ | 4514..=4515
+ | 4526..=4527
+ | 4534..=4535
+ | 4556..=4557
+ | 4560..=4561
+ | 4564..=4565
+ | 4568..=4569
+ | 4576..=4577
+ | 5488..=5489
+ | 5496..=5497
+ | 5508..=5509
+ | 5516..=5517
+ | 5538..=5539
+ | 5542..=5543
+ | 5546..=5547
+ | 5550..=5551
+ | 5844..=5847
+ | 5852..=5855
+ | 5908..=5911
+ | 5916..=5919
+ | 5972..=5975
+ | 5980..=5983
+ | 6036..=6039
+ | 6044..=6047
+ | 6100..=6103
+ | 6108..=6111
+ | 6164..=6167
+ | 6172..=6175
+ | 6228..=6231
+ | 6236..=6239
+ | 6292..=6295
+ | 6300..=6303
+ | 9970..=9973
+ | 9978..=9981
+ | 11275..=11276
+ | 11283..=11284
+ | 11295..=11296
+ | 11303..=11304
+ | 11325..=11326
+ | 11329..=11330
+ | 11333..=11334
+ | 11337..=11340
+ | 11347..=11348
+ | 11359..=11360
+ | 11367..=11368
+ | 11389..=11390
+ | 11393..=11394
+ | 11397..=11398
+ | 11401..=11404
+ | 11411..=11412
+ | 11423..=11424
+ | 11431..=11432
+ | 11453..=11454
+ | 11457..=11458
+ | 11461..=11462
+ | 11465..=11468
+ | 11475..=11476
+ | 11487..=11488
+ | 11495..=11496
+ | 11517..=11518
+ | 11521..=11522
+ | 11525..=11526
+ | 11529..=11532
+ | 11539..=11540
+ | 11551..=11552
+ | 11559..=11560
+ | 11581..=11582
+ | 11585..=11586
+ | 11589..=11590
+ | 11593..=11596
+ | 11603..=11604
+ | 11615..=11616
+ | 11623..=11624
+ | 11645..=11646
+ | 11649..=11650
+ | 11653..=11654
+ | 11657..=11660
+ | 11667..=11668
+ | 11679..=11680
+ | 11687..=11688
+ | 11709..=11710
+ | 11713..=11714
+ | 11717..=11718
+ | 11721..=11722
+ | 18168..=18171
+ | 18176..=18179
+ | 18232..=18235
+ | 18240..=18243
+ | 18520..=18521
+ | 18528..=18529
+ | 18540..=18541
+ | 18548..=18549
+ | 18570..=18571
+ | 18574..=18575
+ | 18578..=18579
+ | 18582..=18585
+ | 18592..=18593
+ | 18604..=18605
+ | 18612..=18613
+ | 18634..=18635
+ | 18638..=18639
+ | 18642..=18643
+ | 18646..=18647 => &SHAPE69,
+ 4508..=4509
+ | 4512..=4513
+ | 4516..=4517
+ | 4520..=4521
+ | 4538..=4539
+ | 4546..=4547
+ | 4558..=4559
+ | 4566..=4567
+ | 4570..=4571
+ | 5490..=5491
+ | 5494..=5495
+ | 5498..=5499
+ | 5502..=5503
+ | 5520..=5521
+ | 5528..=5529
+ | 5540..=5541
+ | 5548..=5549
+ | 5796..=5799
+ | 5804..=5807
+ | 5860..=5863
+ | 5868..=5871
+ | 5924..=5927
+ | 5932..=5935
+ | 5988..=5991
+ | 5996..=5999
+ | 6052..=6055
+ | 6060..=6063
+ | 6116..=6119
+ | 6124..=6127
+ | 6180..=6183
+ | 6188..=6191
+ | 6244..=6247
+ | 6252..=6255
+ | 9922..=9925
+ | 9930..=9933
+ | 11277..=11278
+ | 11281..=11282
+ | 11285..=11286
+ | 11289..=11290
+ | 11307..=11308
+ | 11315..=11316
+ | 11327..=11328
+ | 11335..=11336
+ | 11341..=11342
+ | 11345..=11346
+ | 11349..=11350
+ | 11353..=11354
+ | 11371..=11372
+ | 11379..=11380
+ | 11391..=11392
+ | 11399..=11400
+ | 11405..=11406
+ | 11409..=11410
+ | 11413..=11414
+ | 11417..=11418
+ | 11435..=11436
+ | 11443..=11444
+ | 11455..=11456
+ | 11463..=11464
+ | 11469..=11470
+ | 11473..=11474
+ | 11477..=11478
+ | 11481..=11482
+ | 11499..=11500
+ | 11507..=11508
+ | 11519..=11520
+ | 11527..=11528
+ | 11533..=11534
+ | 11537..=11538
+ | 11541..=11542
+ | 11545..=11546
+ | 11563..=11564
+ | 11571..=11572
+ | 11583..=11584
+ | 11591..=11592
+ | 11597..=11598
+ | 11601..=11602
+ | 11605..=11606
+ | 11609..=11610
+ | 11627..=11628
+ | 11635..=11636
+ | 11647..=11648
+ | 11655..=11656
+ | 11661..=11662
+ | 11665..=11666
+ | 11669..=11670
+ | 11673..=11674
+ | 11691..=11692
+ | 11699..=11700
+ | 11711..=11712
+ | 11719..=11720
+ | 18120..=18123
+ | 18128..=18131
+ | 18184..=18187
+ | 18192..=18195
+ | 18522..=18523
+ | 18526..=18527
+ | 18530..=18531
+ | 18534..=18535
+ | 18552..=18553
+ | 18560..=18561
+ | 18572..=18573
+ | 18580..=18581
+ | 18586..=18587
+ | 18590..=18591
+ | 18594..=18595
+ | 18598..=18599
+ | 18616..=18617
+ | 18624..=18625
+ | 18636..=18637
+ | 18644..=18645 => &SHAPE70,
+ 4510..=4511
+ | 4518..=4519
+ | 4522..=4523
+ | 4530..=4531
+ | 4540..=4541
+ | 4544..=4545
+ | 4548..=4549
+ | 4552..=4553
+ | 4574..=4575
+ | 5492..=5493
+ | 5500..=5501
+ | 5504..=5505
+ | 5512..=5513
+ | 5522..=5523
+ | 5526..=5527
+ | 5530..=5531
+ | 5534..=5535
+ | 5828..=5831
+ | 5836..=5839
+ | 5892..=5895
+ | 5900..=5903
+ | 5956..=5959
+ | 5964..=5967
+ | 6020..=6023
+ | 6028..=6031
+ | 6084..=6087
+ | 6092..=6095
+ | 6148..=6151
+ | 6156..=6159
+ | 6212..=6215
+ | 6220..=6223
+ | 6276..=6279
+ | 6284..=6287
+ | 9954..=9957
+ | 9962..=9965
+ | 11279..=11280
+ | 11287..=11288
+ | 11291..=11292
+ | 11299..=11300
+ | 11309..=11310
+ | 11313..=11314
+ | 11317..=11318
+ | 11321..=11322
+ | 11343..=11344
+ | 11351..=11352
+ | 11355..=11356
+ | 11363..=11364
+ | 11373..=11374
+ | 11377..=11378
+ | 11381..=11382
+ | 11385..=11386
+ | 11407..=11408
+ | 11415..=11416
+ | 11419..=11420
+ | 11427..=11428
+ | 11437..=11438
+ | 11441..=11442
+ | 11445..=11446
+ | 11449..=11450
+ | 11471..=11472
+ | 11479..=11480
+ | 11483..=11484
+ | 11491..=11492
+ | 11501..=11502
+ | 11505..=11506
+ | 11509..=11510
+ | 11513..=11514
+ | 11535..=11536
+ | 11543..=11544
+ | 11547..=11548
+ | 11555..=11556
+ | 11565..=11566
+ | 11569..=11570
+ | 11573..=11574
+ | 11577..=11578
+ | 11599..=11600
+ | 11607..=11608
+ | 11611..=11612
+ | 11619..=11620
+ | 11629..=11630
+ | 11633..=11634
+ | 11637..=11638
+ | 11641..=11642
+ | 11663..=11664
+ | 11671..=11672
+ | 11675..=11676
+ | 11683..=11684
+ | 11693..=11694
+ | 11697..=11698
+ | 11701..=11702
+ | 11705..=11706
+ | 18152..=18155
+ | 18160..=18163
+ | 18216..=18219
+ | 18224..=18227
+ | 18524..=18525
+ | 18532..=18533
+ | 18536..=18537
+ | 18544..=18545
+ | 18554..=18555
+ | 18558..=18559
+ | 18562..=18563
+ | 18566..=18567
+ | 18588..=18589
+ | 18596..=18597
+ | 18600..=18601
+ | 18608..=18609
+ | 18618..=18619
+ | 18622..=18623
+ | 18626..=18627
+ | 18630..=18631 => &SHAPE71,
+ 4524..=4525
+ | 4528..=4529
+ | 4532..=4533
+ | 4536..=4537
+ | 4542..=4543
+ | 4550..=4551
+ | 4554..=4555
+ | 4562..=4563
+ | 4572..=4573
+ | 5506..=5507
+ | 5510..=5511
+ | 5514..=5515
+ | 5518..=5519
+ | 5524..=5525
+ | 5532..=5533
+ | 5536..=5537
+ | 5544..=5545
+ | 5812..=5815
+ | 5820..=5823
+ | 5876..=5879
+ | 5884..=5887
+ | 5940..=5943
+ | 5948..=5951
+ | 6004..=6007
+ | 6012..=6015
+ | 6068..=6071
+ | 6076..=6079
+ | 6132..=6135
+ | 6140..=6143
+ | 6196..=6199
+ | 6204..=6207
+ | 6260..=6263
+ | 6268..=6271
+ | 9938..=9941
+ | 9946..=9949
+ | 11293..=11294
+ | 11297..=11298
+ | 11301..=11302
+ | 11305..=11306
+ | 11311..=11312
+ | 11319..=11320
+ | 11323..=11324
+ | 11331..=11332
+ | 11357..=11358
+ | 11361..=11362
+ | 11365..=11366
+ | 11369..=11370
+ | 11375..=11376
+ | 11383..=11384
+ | 11387..=11388
+ | 11395..=11396
+ | 11421..=11422
+ | 11425..=11426
+ | 11429..=11430
+ | 11433..=11434
+ | 11439..=11440
+ | 11447..=11448
+ | 11451..=11452
+ | 11459..=11460
+ | 11485..=11486
+ | 11489..=11490
+ | 11493..=11494
+ | 11497..=11498
+ | 11503..=11504
+ | 11511..=11512
+ | 11515..=11516
+ | 11523..=11524
+ | 11549..=11550
+ | 11553..=11554
+ | 11557..=11558
+ | 11561..=11562
+ | 11567..=11568
+ | 11575..=11576
+ | 11579..=11580
+ | 11587..=11588
+ | 11613..=11614
+ | 11617..=11618
+ | 11621..=11622
+ | 11625..=11626
+ | 11631..=11632
+ | 11639..=11640
+ | 11643..=11644
+ | 11651..=11652
+ | 11677..=11678
+ | 11681..=11682
+ | 11685..=11686
+ | 11689..=11690
+ | 11695..=11696
+ | 11703..=11704
+ | 11707..=11708
+ | 11715..=11716
+ | 18136..=18139
+ | 18144..=18147
+ | 18200..=18203
+ | 18208..=18211
+ | 18538..=18539
+ | 18542..=18543
+ | 18546..=18547
+ | 18550..=18551
+ | 18556..=18557
+ | 18564..=18565
+ | 18568..=18569
+ | 18576..=18577
+ | 18602..=18603
+ | 18606..=18607
+ | 18610..=18611
+ | 18614..=18615
+ | 18620..=18621
+ | 18628..=18629
+ | 18632..=18633
+ | 18640..=18641 => &SHAPE72,
+ 5382..=5385
+ | 5390..=5393
+ | 5398..=5401
+ | 5406..=5409
+ | 5414..=5417
+ | 5422..=5425
+ | 5430..=5433
+ | 5438..=5441
+ | 5446..=5449
+ | 5454..=5457 => &SHAPE74,
+ 5386..=5389
+ | 5394..=5397
+ | 5402..=5405
+ | 5410..=5413
+ | 5418..=5421
+ | 5426..=5429
+ | 5434..=5437
+ | 5442..=5445
+ | 5450..=5453
+ | 5458..=5461 => &SHAPE75,
+ 5607 | 5716..=5779 | 8779..=8794 => &SHAPE7,
+ 5608 => &SHAPE29,
+ 5609 | 8795..=8826 => &SHAPE64,
+ 5610
+ | 10231..=10232
+ | 10237..=10238
+ | 10243..=10244
+ | 10687..=10688
+ | 10693..=10694
+ | 10699..=10700
+ | 10705..=10706
+ | 10711..=10712
+ | 10717..=10718
+ | 10723..=10724
+ | 10729..=10730
+ | 10735..=10736
+ | 10741..=10742
+ | 10747..=10748
+ | 10753..=10754
+ | 10759..=10760
+ | 10765..=10766
+ | 10771..=10772
+ | 10777..=10778
+ | 10783..=10784
+ | 10789..=10790
+ | 10795..=10796
+ | 10801..=10802
+ | 10807..=10808
+ | 10813..=10814
+ | 10819..=10820
+ | 13456..=13457
+ | 13462..=13463
+ | 13468..=13469
+ | 13474..=13475
+ | 13480..=13481
+ | 13486..=13487
+ | 13492..=13493
+ | 13498..=13499
+ | 13504..=13505
+ | 13510..=13511
+ | 13516..=13517
+ | 13522..=13523
+ | 13528..=13529
+ | 18042..=18043
+ | 18048..=18049
+ | 19239..=19240
+ | 19249..=19250
+ | 19740..=19741
+ | 20457..=20552
+ | 20684..=20691
+ | 21024..=21025
+ | 21030..=21031
+ | 21036..=21037
+ | 21042..=21043
+ | 21376..=21377
+ | 21382..=21383
+ | 21388..=21389
+ | 21394..=21395
+ | 21648..=21649
+ | 22059..=22060
+ | 22470..=22471
+ | 22881..=22882 => &SHAPE8,
+ 5611 => &SHAPE65,
+ 5613 | 5685 | 21561 => &SHAPE66,
+ 5616..=5631 | 18817 => &SHAPE76,
+ 5651 | 5653 | 7043 | 7045 | 11051 | 11053 | 11083 | 11085 | 11115 | 11117 | 11147
+ | 11149 | 11179 | 11181 | 11211 | 11213 | 11243 | 11245 | 18056 | 18058 | 18088
+ | 18090 => &SHAPE78,
+ 5652 | 5654 | 7044 | 7046 | 11052 | 11054 | 11084 | 11086 | 11116 | 11118 | 11148
+ | 11150 | 11180 | 11182 | 11212 | 11214 | 11244 | 11246 | 18057 | 18059 | 18089
+ | 18091 => &SHAPE79,
+ 5655 | 5657 | 7047 | 7049 | 11055 | 11057 | 11087 | 11089 | 11119 | 11121 | 11151
+ | 11153 | 11183 | 11185 | 11215 | 11217 | 11247 | 11249 | 18060 | 18062 | 18092
+ | 18094 => &SHAPE80,
+ 5656 | 5658 | 7048 | 7050 | 11056 | 11058 | 11088 | 11090 | 11120 | 11122 | 11152
+ | 11154 | 11184 | 11186 | 11216 | 11218 | 11248 | 11250 | 18061 | 18063 | 18093
+ | 18095 => &SHAPE81,
+ 5659 | 5661 | 7051 | 7053 | 11059 | 11061 | 11091 | 11093 | 11123 | 11125 | 11155
+ | 11157 | 11187 | 11189 | 11219 | 11221 | 11251 | 11253 | 18064 | 18066 | 18096
+ | 18098 => &SHAPE82,
+ 5660 | 5662 | 7052 | 7054 | 11060 | 11062 | 11092 | 11094 | 11124 | 11126 | 11156
+ | 11158 | 11188 | 11190 | 11220 | 11222 | 11252 | 11254 | 18065 | 18067 | 18097
+ | 18099 => &SHAPE83,
+ 5663
+ | 5665
+ | 6769..=6770
+ | 6773..=6774
+ | 6777..=6778
+ | 6781..=6782
+ | 7055
+ | 7057
+ | 10829..=10830
+ | 10833..=10834
+ | 10837..=10838
+ | 10841..=10842
+ | 10861..=10862
+ | 10865..=10866
+ | 10869..=10870
+ | 10873..=10874
+ | 10893..=10894
+ | 10897..=10898
+ | 10901..=10902
+ | 10905..=10906
+ | 10925..=10926
+ | 10929..=10930
+ | 10933..=10934
+ | 10937..=10938
+ | 10957..=10958
+ | 10961..=10962
+ | 10965..=10966
+ | 10969..=10970
+ | 10989..=10990
+ | 10993..=10994
+ | 10997..=10998
+ | 11001..=11002
+ | 11021..=11022
+ | 11025..=11026
+ | 11029..=11030
+ | 11033..=11034
+ | 11063
+ | 11065
+ | 11095
+ | 11097
+ | 11127
+ | 11129
+ | 11159
+ | 11161
+ | 11191
+ | 11193
+ | 11223
+ | 11225
+ | 11255
+ | 11257
+ | 18068
+ | 18070
+ | 18100
+ | 18102
+ | 18250..=18251
+ | 18254..=18255
+ | 18258..=18259
+ | 18262..=18263
+ | 18282..=18283
+ | 18286..=18287
+ | 18290..=18291
+ | 18294..=18295 => &SHAPE84,
+ 5664 | 5666 | 7056 | 7058 | 11064 | 11066 | 11096 | 11098 | 11128 | 11130 | 11160
+ | 11162 | 11192 | 11194 | 11224 | 11226 | 11256 | 11258 | 18069 | 18071 | 18101
+ | 18103 => &SHAPE85,
+ 5667 | 5669 | 7059 | 7061 | 11067 | 11069 | 11099 | 11101 | 11131 | 11133 | 11163
+ | 11165 | 11195 | 11197 | 11227 | 11229 | 11259 | 11261 | 18072 | 18074 | 18104
+ | 18106 => &SHAPE86,
+ 5668
+ | 5670
+ | 6785..=6786
+ | 6789..=6790
+ | 6793..=6794
+ | 6797..=6798
+ | 7060
+ | 7062
+ | 10845..=10846
+ | 10849..=10850
+ | 10853..=10854
+ | 10857..=10858
+ | 10877..=10878
+ | 10881..=10882
+ | 10885..=10886
+ | 10889..=10890
+ | 10909..=10910
+ | 10913..=10914
+ | 10917..=10918
+ | 10921..=10922
+ | 10941..=10942
+ | 10945..=10946
+ | 10949..=10950
+ | 10953..=10954
+ | 10973..=10974
+ | 10977..=10978
+ | 10981..=10982
+ | 10985..=10986
+ | 11005..=11006
+ | 11009..=11010
+ | 11013..=11014
+ | 11017..=11018
+ | 11037..=11038
+ | 11041..=11042
+ | 11045..=11046
+ | 11049..=11050
+ | 11068
+ | 11070
+ | 11100
+ | 11102
+ | 11132
+ | 11134
+ | 11164
+ | 11166
+ | 11196
+ | 11198
+ | 11228
+ | 11230
+ | 11260
+ | 11262
+ | 18073
+ | 18075
+ | 18105
+ | 18107
+ | 18266..=18267
+ | 18270..=18271
+ | 18274..=18275
+ | 18278..=18279
+ | 18298..=18299
+ | 18302..=18303
+ | 18306..=18307
+ | 18310..=18311 => &SHAPE87,
+ 5671 | 5673 | 7063 | 7065 | 11071 | 11073 | 11103 | 11105 | 11135 | 11137 | 11167
+ | 11169 | 11199 | 11201 | 11231 | 11233 | 11263 | 11265 | 18076 | 18078 | 18108
+ | 18110 => &SHAPE88,
+ 5672 | 5674 | 7064 | 7066 | 11072 | 11074 | 11104 | 11106 | 11136 | 11138 | 11168
+ | 11170 | 11200 | 11202 | 11232 | 11234 | 11264 | 11266 | 18077 | 18079 | 18109
+ | 18111 => &SHAPE89,
+ 5675 | 5677 | 7067 | 7069 | 11075 | 11077 | 11107 | 11109 | 11139 | 11141 | 11171
+ | 11173 | 11203 | 11205 | 11235 | 11237 | 11267 | 11269 | 18080 | 18082 | 18112
+ | 18114 => &SHAPE90,
+ 5676 | 5678 | 7068 | 7070 | 11076 | 11078 | 11108 | 11110 | 11140 | 11142 | 11172
+ | 11174 | 11204 | 11206 | 11236 | 11238 | 11268 | 11270 | 18081 | 18083 | 18113
+ | 18115 => &SHAPE91,
+ 5679 | 5681 | 7071 | 7073 | 11079 | 11081 | 11111 | 11113 | 11143 | 11145 | 11175
+ | 11177 | 11207 | 11209 | 11239 | 11241 | 11271 | 11273 | 18084 | 18086 | 18116
+ | 18118 => &SHAPE92,
+ 5680 | 5682 | 7072 | 7074 | 11080 | 11082 | 11112 | 11114 | 11144 | 11146 | 11176
+ | 11178 | 11208 | 11210 | 11240 | 11242 | 11272 | 11274 | 18085 | 18087 | 18117
+ | 18119 => &SHAPE93,
+ 5709 => &SHAPE94,
+ 5710 => &SHAPE95,
+ 5711 => &SHAPE96,
+ 5712 => &SHAPE97,
+ 5713 => &SHAPE98,
+ 5714 => &SHAPE99,
+ 5715 => &SHAPE100,
+ 5800..=5803
+ | 5816..=5819
+ | 5832..=5835
+ | 5848..=5851
+ | 5864..=5867
+ | 5880..=5883
+ | 5896..=5899
+ | 5912..=5915
+ | 5928..=5931
+ | 5944..=5947
+ | 5960..=5963
+ | 5976..=5979
+ | 5992..=5995
+ | 6008..=6011
+ | 6024..=6027
+ | 6040..=6043
+ | 6056..=6059
+ | 6072..=6075
+ | 6088..=6091
+ | 6104..=6107
+ | 6120..=6123
+ | 6136..=6139
+ | 6152..=6155
+ | 6168..=6171
+ | 6184..=6187
+ | 6200..=6203
+ | 6216..=6219
+ | 6232..=6235
+ | 6248..=6251
+ | 6264..=6267
+ | 6280..=6283
+ | 6296..=6299
+ | 9926..=9929
+ | 9942..=9945
+ | 9958..=9961
+ | 9974..=9977
+ | 18124..=18127
+ | 18140..=18143
+ | 18156..=18159
+ | 18172..=18175
+ | 18188..=18191
+ | 18204..=18207
+ | 18220..=18223
+ | 18236..=18239 => &SHAPE101,
+ 5808..=5811
+ | 5824..=5827
+ | 5840..=5843
+ | 5856..=5859
+ | 5872..=5875
+ | 5888..=5891
+ | 5904..=5907
+ | 5920..=5923
+ | 5936..=5939
+ | 5952..=5955
+ | 5968..=5971
+ | 5984..=5987
+ | 6000..=6003
+ | 6016..=6019
+ | 6032..=6035
+ | 6048..=6051
+ | 6064..=6067
+ | 6080..=6083
+ | 6096..=6099
+ | 6112..=6115
+ | 6128..=6131
+ | 6144..=6147
+ | 6160..=6163
+ | 6176..=6179
+ | 6192..=6195
+ | 6208..=6211
+ | 6224..=6227
+ | 6240..=6243
+ | 6256..=6259
+ | 6272..=6275
+ | 6288..=6291
+ | 6304..=6307
+ | 9934..=9937
+ | 9950..=9953
+ | 9966..=9969
+ | 9982..=9985
+ | 18132..=18135
+ | 18148..=18151
+ | 18164..=18167
+ | 18180..=18183
+ | 18196..=18199
+ | 18212..=18215
+ | 18228..=18231
+ | 18244..=18247 => &SHAPE102,
+ 6512 | 6514 | 6550 | 6552 | 8976 | 8978 | 9008 | 9010 | 9040 | 9042 | 9072 | 9074
+ | 9104 | 9106 | 9136 | 9138 | 9168 | 9170 | 9200 | 9202 | 9232 | 9234 | 9264 | 9266
+ | 9296 | 9298 | 9328 | 9330 | 9360 | 9362 | 9392 | 9394 | 9424 | 9426 | 9456 | 9458 => {
+ &SHAPE103
}
- BlockState::PistonHead_NormalNorthFalse | BlockState::PistonHead_StickyNorthFalse => {
- &SHAPE17
+ 6513 | 6515 | 6551 | 6553 | 8977 | 8979 | 9009 | 9011 | 9041 | 9043 | 9073 | 9075
+ | 9105 | 9107 | 9137 | 9139 | 9169 | 9171 | 9201 | 9203 | 9233 | 9235 | 9265 | 9267
+ | 9297 | 9299 | 9329 | 9331 | 9361 | 9363 | 9393 | 9395 | 9425 | 9427 | 9457 | 9459 => {
+ &SHAPE104
}
- BlockState::PistonHead_NormalEastTrue | BlockState::PistonHead_StickyEastTrue => {
- &SHAPE18
+ 6516 | 6518 | 6554 | 6556 | 8980 | 8982 | 9012 | 9014 | 9044 | 9046 | 9076 | 9078
+ | 9108 | 9110 | 9140 | 9142 | 9172 | 9174 | 9204 | 9206 | 9236 | 9238 | 9268 | 9270
+ | 9300 | 9302 | 9332 | 9334 | 9364 | 9366 | 9396 | 9398 | 9428 | 9430 | 9460 | 9462 => {
+ &SHAPE105
}
- BlockState::PistonHead_NormalEastFalse | BlockState::PistonHead_StickyEastFalse => {
- &SHAPE20
+ 6517 | 6519 | 6555 | 6557 | 8981 | 8983 | 9013 | 9015 | 9045 | 9047 | 9077 | 9079
+ | 9109 | 9111 | 9141 | 9143 | 9173 | 9175 | 9205 | 9207 | 9237 | 9239 | 9269 | 9271
+ | 9301 | 9303 | 9333 | 9335 | 9365 | 9367 | 9397 | 9399 | 9429 | 9431 | 9461 | 9463 => {
+ &SHAPE106
}
- BlockState::PistonHead_NormalSouthTrue | BlockState::PistonHead_StickySouthTrue => {
- &SHAPE21
+ 6520 | 6522 | 6558 | 6560 | 8984 | 8986 | 9016 | 9018 | 9048 | 9050 | 9080 | 9082
+ | 9112 | 9114 | 9144 | 9146 | 9176 | 9178 | 9208 | 9210 | 9240 | 9242 | 9272 | 9274
+ | 9304 | 9306 | 9336 | 9338 | 9368 | 9370 | 9400 | 9402 | 9432 | 9434 | 9464 | 9466 => {
+ &SHAPE107
}
- BlockState::PistonHead_NormalSouthFalse | BlockState::PistonHead_StickySouthFalse => {
- &SHAPE22
+ 6521 | 6523 | 6559 | 6561 | 8985 | 8987 | 9017 | 9019 | 9049 | 9051 | 9081 | 9083
+ | 9113 | 9115 | 9145 | 9147 | 9177 | 9179 | 9209 | 9211 | 9241 | 9243 | 9273 | 9275
+ | 9305 | 9307 | 9337 | 9339 | 9369 | 9371 | 9401 | 9403 | 9433 | 9435 | 9465 | 9467 => {
+ &SHAPE108
}
- BlockState::PistonHead_NormalWestTrue | BlockState::PistonHead_StickyWestTrue => {
- &SHAPE23
+ 6524 | 6526 | 6562 | 6564 | 8988 | 8990 | 9020 | 9022 | 9052 | 9054 | 9084 | 9086
+ | 9116 | 9118 | 9148 | 9150 | 9180 | 9182 | 9212 | 9214 | 9244 | 9246 | 9276 | 9278
+ | 9308 | 9310 | 9340 | 9342 | 9372 | 9374 | 9404 | 9406 | 9436 | 9438 | 9468 | 9470 => {
+ &SHAPE109
}
- BlockState::PistonHead_NormalWestFalse | BlockState::PistonHead_StickyWestFalse => {
- &SHAPE24
+ 6525 | 6527 | 6563 | 6565 | 8989 | 8991 | 9021 | 9023 | 9053 | 9055 | 9085 | 9087
+ | 9117 | 9119 | 9149 | 9151 | 9181 | 9183 | 9213 | 9215 | 9245 | 9247 | 9277 | 9279
+ | 9309 | 9311 | 9341 | 9343 | 9373 | 9375 | 9405 | 9407 | 9437 | 9439 | 9469 | 9471 => {
+ &SHAPE110
}
- BlockState::PistonHead_NormalUpTrue | BlockState::PistonHead_StickyUpTrue => &SHAPE25,
- BlockState::PistonHead_NormalUpFalse | BlockState::PistonHead_StickyUpFalse => &SHAPE27,
- BlockState::PistonHead_NormalDownTrue | BlockState::PistonHead_StickyDownTrue => {
- &SHAPE28
+ 6528 | 6530 | 6566 | 6568 | 8992 | 8994 | 9024 | 9026 | 9056 | 9058 | 9088 | 9090
+ | 9120 | 9122 | 9152 | 9154 | 9184 | 9186 | 9216 | 9218 | 9248 | 9250 | 9280 | 9282
+ | 9312 | 9314 | 9344 | 9346 | 9376 | 9378 | 9408 | 9410 | 9440 | 9442 | 9472 | 9474 => {
+ &SHAPE111
}
- BlockState::PistonHead_NormalDownFalse | BlockState::PistonHead_StickyDownFalse => {
- &SHAPE30
+ 6529 | 6531 | 6567 | 6569 | 8993 | 8995 | 9025 | 9027 | 9057 | 9059 | 9089 | 9091
+ | 9121 | 9123 | 9153 | 9155 | 9185 | 9187 | 9217 | 9219 | 9249 | 9251 | 9281 | 9283
+ | 9313 | 9315 | 9345 | 9347 | 9377 | 9379 | 9409 | 9411 | 9441 | 9443 | 9473 | 9475 => {
+ &SHAPE112
}
- BlockState::OakStairs_NorthTopStraightTrue
- | BlockState::OakStairs_NorthTopStraightFalse
- | BlockState::CobblestoneStairs_NorthTopStraightTrue
- | BlockState::CobblestoneStairs_NorthTopStraightFalse
- | BlockState::BrickStairs_NorthTopStraightTrue
- | BlockState::BrickStairs_NorthTopStraightFalse
- | BlockState::StoneBrickStairs_NorthTopStraightTrue
- | BlockState::StoneBrickStairs_NorthTopStraightFalse
- | BlockState::MudBrickStairs_NorthTopStraightTrue
- | BlockState::MudBrickStairs_NorthTopStraightFalse
- | BlockState::NetherBrickStairs_NorthTopStraightTrue
- | BlockState::NetherBrickStairs_NorthTopStraightFalse
- | BlockState::SandstoneStairs_NorthTopStraightTrue
- | BlockState::SandstoneStairs_NorthTopStraightFalse
- | BlockState::SpruceStairs_NorthTopStraightTrue
- | BlockState::SpruceStairs_NorthTopStraightFalse
- | BlockState::BirchStairs_NorthTopStraightTrue
- | BlockState::BirchStairs_NorthTopStraightFalse
- | BlockState::JungleStairs_NorthTopStraightTrue
- | BlockState::JungleStairs_NorthTopStraightFalse
- | BlockState::QuartzStairs_NorthTopStraightTrue
- | BlockState::QuartzStairs_NorthTopStraightFalse
- | BlockState::AcaciaStairs_NorthTopStraightTrue
- | BlockState::AcaciaStairs_NorthTopStraightFalse
- | BlockState::DarkOakStairs_NorthTopStraightTrue
- | BlockState::DarkOakStairs_NorthTopStraightFalse
- | BlockState::MangroveStairs_NorthTopStraightTrue
- | BlockState::MangroveStairs_NorthTopStraightFalse
- | BlockState::BambooStairs_NorthTopStraightTrue
- | BlockState::BambooStairs_NorthTopStraightFalse
- | BlockState::BambooMosaicStairs_NorthTopStraightTrue
- | BlockState::BambooMosaicStairs_NorthTopStraightFalse
- | BlockState::PrismarineStairs_NorthTopStraightTrue
- | BlockState::PrismarineStairs_NorthTopStraightFalse
- | BlockState::PrismarineBrickStairs_NorthTopStraightTrue
- | BlockState::PrismarineBrickStairs_NorthTopStraightFalse
- | BlockState::DarkPrismarineStairs_NorthTopStraightTrue
- | BlockState::DarkPrismarineStairs_NorthTopStraightFalse
- | BlockState::RedSandstoneStairs_NorthTopStraightTrue
- | BlockState::RedSandstoneStairs_NorthTopStraightFalse
- | BlockState::PurpurStairs_NorthTopStraightTrue
- | BlockState::PurpurStairs_NorthTopStraightFalse
- | BlockState::PolishedGraniteStairs_NorthTopStraightTrue
- | BlockState::PolishedGraniteStairs_NorthTopStraightFalse
- | BlockState::SmoothRedSandstoneStairs_NorthTopStraightTrue
- | BlockState::SmoothRedSandstoneStairs_NorthTopStraightFalse
- | BlockState::MossyStoneBrickStairs_NorthTopStraightTrue
- | BlockState::MossyStoneBrickStairs_NorthTopStraightFalse
- | BlockState::PolishedDioriteStairs_NorthTopStraightTrue
- | BlockState::PolishedDioriteStairs_NorthTopStraightFalse
- | BlockState::MossyCobblestoneStairs_NorthTopStraightTrue
- | BlockState::MossyCobblestoneStairs_NorthTopStraightFalse
- | BlockState::EndStoneBrickStairs_NorthTopStraightTrue
- | BlockState::EndStoneBrickStairs_NorthTopStraightFalse
- | BlockState::StoneStairs_NorthTopStraightTrue
- | BlockState::StoneStairs_NorthTopStraightFalse
- | BlockState::SmoothSandstoneStairs_NorthTopStraightTrue
- | BlockState::SmoothSandstoneStairs_NorthTopStraightFalse
- | BlockState::SmoothQuartzStairs_NorthTopStraightTrue
- | BlockState::SmoothQuartzStairs_NorthTopStraightFalse
- | BlockState::GraniteStairs_NorthTopStraightTrue
- | BlockState::GraniteStairs_NorthTopStraightFalse
- | BlockState::AndesiteStairs_NorthTopStraightTrue
- | BlockState::AndesiteStairs_NorthTopStraightFalse
- | BlockState::RedNetherBrickStairs_NorthTopStraightTrue
- | BlockState::RedNetherBrickStairs_NorthTopStraightFalse
- | BlockState::PolishedAndesiteStairs_NorthTopStraightTrue
- | BlockState::PolishedAndesiteStairs_NorthTopStraightFalse
- | BlockState::DioriteStairs_NorthTopStraightTrue
- | BlockState::DioriteStairs_NorthTopStraightFalse
- | BlockState::CrimsonStairs_NorthTopStraightTrue
- | BlockState::CrimsonStairs_NorthTopStraightFalse
- | BlockState::WarpedStairs_NorthTopStraightTrue
- | BlockState::WarpedStairs_NorthTopStraightFalse
- | BlockState::BlackstoneStairs_NorthTopStraightTrue
- | BlockState::BlackstoneStairs_NorthTopStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopStraightFalse
- | BlockState::PolishedBlackstoneStairs_NorthTopStraightTrue
- | BlockState::PolishedBlackstoneStairs_NorthTopStraightFalse
- | BlockState::OxidizedCutCopperStairs_NorthTopStraightTrue
- | BlockState::OxidizedCutCopperStairs_NorthTopStraightFalse
- | BlockState::WeatheredCutCopperStairs_NorthTopStraightTrue
- | BlockState::WeatheredCutCopperStairs_NorthTopStraightFalse
- | BlockState::ExposedCutCopperStairs_NorthTopStraightTrue
- | BlockState::ExposedCutCopperStairs_NorthTopStraightFalse
- | BlockState::CutCopperStairs_NorthTopStraightTrue
- | BlockState::CutCopperStairs_NorthTopStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthTopStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthTopStraightFalse
- | BlockState::WaxedCutCopperStairs_NorthTopStraightTrue
- | BlockState::WaxedCutCopperStairs_NorthTopStraightFalse
- | BlockState::CobbledDeepslateStairs_NorthTopStraightTrue
- | BlockState::CobbledDeepslateStairs_NorthTopStraightFalse
- | BlockState::PolishedDeepslateStairs_NorthTopStraightTrue
- | BlockState::PolishedDeepslateStairs_NorthTopStraightFalse
- | BlockState::DeepslateTileStairs_NorthTopStraightTrue
- | BlockState::DeepslateTileStairs_NorthTopStraightFalse
- | BlockState::DeepslateBrickStairs_NorthTopStraightTrue
- | BlockState::DeepslateBrickStairs_NorthTopStraightFalse => &SHAPE33,
- BlockState::OakStairs_NorthTopInnerLeftTrue
- | BlockState::OakStairs_NorthTopInnerLeftFalse
- | BlockState::OakStairs_WestTopInnerRightTrue
- | BlockState::OakStairs_WestTopInnerRightFalse
- | BlockState::CobblestoneStairs_NorthTopInnerLeftTrue
- | BlockState::CobblestoneStairs_NorthTopInnerLeftFalse
- | BlockState::CobblestoneStairs_WestTopInnerRightTrue
- | BlockState::CobblestoneStairs_WestTopInnerRightFalse
- | BlockState::BrickStairs_NorthTopInnerLeftTrue
- | BlockState::BrickStairs_NorthTopInnerLeftFalse
- | BlockState::BrickStairs_WestTopInnerRightTrue
- | BlockState::BrickStairs_WestTopInnerRightFalse
- | BlockState::StoneBrickStairs_NorthTopInnerLeftTrue
- | BlockState::StoneBrickStairs_NorthTopInnerLeftFalse
- | BlockState::StoneBrickStairs_WestTopInnerRightTrue
- | BlockState::StoneBrickStairs_WestTopInnerRightFalse
- | BlockState::MudBrickStairs_NorthTopInnerLeftTrue
- | BlockState::MudBrickStairs_NorthTopInnerLeftFalse
- | BlockState::MudBrickStairs_WestTopInnerRightTrue
- | BlockState::MudBrickStairs_WestTopInnerRightFalse
- | BlockState::NetherBrickStairs_NorthTopInnerLeftTrue
- | BlockState::NetherBrickStairs_NorthTopInnerLeftFalse
- | BlockState::NetherBrickStairs_WestTopInnerRightTrue
- | BlockState::NetherBrickStairs_WestTopInnerRightFalse
- | BlockState::SandstoneStairs_NorthTopInnerLeftTrue
- | BlockState::SandstoneStairs_NorthTopInnerLeftFalse
- | BlockState::SandstoneStairs_WestTopInnerRightTrue
- | BlockState::SandstoneStairs_WestTopInnerRightFalse
- | BlockState::SpruceStairs_NorthTopInnerLeftTrue
- | BlockState::SpruceStairs_NorthTopInnerLeftFalse
- | BlockState::SpruceStairs_WestTopInnerRightTrue
- | BlockState::SpruceStairs_WestTopInnerRightFalse
- | BlockState::BirchStairs_NorthTopInnerLeftTrue
- | BlockState::BirchStairs_NorthTopInnerLeftFalse
- | BlockState::BirchStairs_WestTopInnerRightTrue
- | BlockState::BirchStairs_WestTopInnerRightFalse
- | BlockState::JungleStairs_NorthTopInnerLeftTrue
- | BlockState::JungleStairs_NorthTopInnerLeftFalse
- | BlockState::JungleStairs_WestTopInnerRightTrue
- | BlockState::JungleStairs_WestTopInnerRightFalse
- | BlockState::QuartzStairs_NorthTopInnerLeftTrue
- | BlockState::QuartzStairs_NorthTopInnerLeftFalse
- | BlockState::QuartzStairs_WestTopInnerRightTrue
- | BlockState::QuartzStairs_WestTopInnerRightFalse
- | BlockState::AcaciaStairs_NorthTopInnerLeftTrue
- | BlockState::AcaciaStairs_NorthTopInnerLeftFalse
- | BlockState::AcaciaStairs_WestTopInnerRightTrue
- | BlockState::AcaciaStairs_WestTopInnerRightFalse
- | BlockState::DarkOakStairs_NorthTopInnerLeftTrue
- | BlockState::DarkOakStairs_NorthTopInnerLeftFalse
- | BlockState::DarkOakStairs_WestTopInnerRightTrue
- | BlockState::DarkOakStairs_WestTopInnerRightFalse
- | BlockState::MangroveStairs_NorthTopInnerLeftTrue
- | BlockState::MangroveStairs_NorthTopInnerLeftFalse
- | BlockState::MangroveStairs_WestTopInnerRightTrue
- | BlockState::MangroveStairs_WestTopInnerRightFalse
- | BlockState::BambooStairs_NorthTopInnerLeftTrue
- | BlockState::BambooStairs_NorthTopInnerLeftFalse
- | BlockState::BambooStairs_WestTopInnerRightTrue
- | BlockState::BambooStairs_WestTopInnerRightFalse
- | BlockState::BambooMosaicStairs_NorthTopInnerLeftTrue
- | BlockState::BambooMosaicStairs_NorthTopInnerLeftFalse
- | BlockState::BambooMosaicStairs_WestTopInnerRightTrue
- | BlockState::BambooMosaicStairs_WestTopInnerRightFalse
- | BlockState::PrismarineStairs_NorthTopInnerLeftTrue
- | BlockState::PrismarineStairs_NorthTopInnerLeftFalse
- | BlockState::PrismarineStairs_WestTopInnerRightTrue
- | BlockState::PrismarineStairs_WestTopInnerRightFalse
- | BlockState::PrismarineBrickStairs_NorthTopInnerLeftTrue
- | BlockState::PrismarineBrickStairs_NorthTopInnerLeftFalse
- | BlockState::PrismarineBrickStairs_WestTopInnerRightTrue
- | BlockState::PrismarineBrickStairs_WestTopInnerRightFalse
- | BlockState::DarkPrismarineStairs_NorthTopInnerLeftTrue
- | BlockState::DarkPrismarineStairs_NorthTopInnerLeftFalse
- | BlockState::DarkPrismarineStairs_WestTopInnerRightTrue
- | BlockState::DarkPrismarineStairs_WestTopInnerRightFalse
- | BlockState::RedSandstoneStairs_NorthTopInnerLeftTrue
- | BlockState::RedSandstoneStairs_NorthTopInnerLeftFalse
- | BlockState::RedSandstoneStairs_WestTopInnerRightTrue
- | BlockState::RedSandstoneStairs_WestTopInnerRightFalse
- | BlockState::PurpurStairs_NorthTopInnerLeftTrue
- | BlockState::PurpurStairs_NorthTopInnerLeftFalse
- | BlockState::PurpurStairs_WestTopInnerRightTrue
- | BlockState::PurpurStairs_WestTopInnerRightFalse
- | BlockState::PolishedGraniteStairs_NorthTopInnerLeftTrue
- | BlockState::PolishedGraniteStairs_NorthTopInnerLeftFalse
- | BlockState::PolishedGraniteStairs_WestTopInnerRightTrue
- | BlockState::PolishedGraniteStairs_WestTopInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_NorthTopInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_NorthTopInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_WestTopInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_WestTopInnerRightFalse
- | BlockState::MossyStoneBrickStairs_NorthTopInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_NorthTopInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_WestTopInnerRightTrue
- | BlockState::MossyStoneBrickStairs_WestTopInnerRightFalse
- | BlockState::PolishedDioriteStairs_NorthTopInnerLeftTrue
- | BlockState::PolishedDioriteStairs_NorthTopInnerLeftFalse
- | BlockState::PolishedDioriteStairs_WestTopInnerRightTrue
- | BlockState::PolishedDioriteStairs_WestTopInnerRightFalse
- | BlockState::MossyCobblestoneStairs_NorthTopInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_NorthTopInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_WestTopInnerRightTrue
- | BlockState::MossyCobblestoneStairs_WestTopInnerRightFalse
- | BlockState::EndStoneBrickStairs_NorthTopInnerLeftTrue
- | BlockState::EndStoneBrickStairs_NorthTopInnerLeftFalse
- | BlockState::EndStoneBrickStairs_WestTopInnerRightTrue
- | BlockState::EndStoneBrickStairs_WestTopInnerRightFalse
- | BlockState::StoneStairs_NorthTopInnerLeftTrue
- | BlockState::StoneStairs_NorthTopInnerLeftFalse
- | BlockState::StoneStairs_WestTopInnerRightTrue
- | BlockState::StoneStairs_WestTopInnerRightFalse
- | BlockState::SmoothSandstoneStairs_NorthTopInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_NorthTopInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_WestTopInnerRightTrue
- | BlockState::SmoothSandstoneStairs_WestTopInnerRightFalse
- | BlockState::SmoothQuartzStairs_NorthTopInnerLeftTrue
- | BlockState::SmoothQuartzStairs_NorthTopInnerLeftFalse
- | BlockState::SmoothQuartzStairs_WestTopInnerRightTrue
- | BlockState::SmoothQuartzStairs_WestTopInnerRightFalse
- | BlockState::GraniteStairs_NorthTopInnerLeftTrue
- | BlockState::GraniteStairs_NorthTopInnerLeftFalse
- | BlockState::GraniteStairs_WestTopInnerRightTrue
- | BlockState::GraniteStairs_WestTopInnerRightFalse
- | BlockState::AndesiteStairs_NorthTopInnerLeftTrue
- | BlockState::AndesiteStairs_NorthTopInnerLeftFalse
- | BlockState::AndesiteStairs_WestTopInnerRightTrue
- | BlockState::AndesiteStairs_WestTopInnerRightFalse
- | BlockState::RedNetherBrickStairs_NorthTopInnerLeftTrue
- | BlockState::RedNetherBrickStairs_NorthTopInnerLeftFalse
- | BlockState::RedNetherBrickStairs_WestTopInnerRightTrue
- | BlockState::RedNetherBrickStairs_WestTopInnerRightFalse
- | BlockState::PolishedAndesiteStairs_NorthTopInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_NorthTopInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_WestTopInnerRightTrue
- | BlockState::PolishedAndesiteStairs_WestTopInnerRightFalse
- | BlockState::DioriteStairs_NorthTopInnerLeftTrue
- | BlockState::DioriteStairs_NorthTopInnerLeftFalse
- | BlockState::DioriteStairs_WestTopInnerRightTrue
- | BlockState::DioriteStairs_WestTopInnerRightFalse
- | BlockState::CrimsonStairs_NorthTopInnerLeftTrue
- | BlockState::CrimsonStairs_NorthTopInnerLeftFalse
- | BlockState::CrimsonStairs_WestTopInnerRightTrue
- | BlockState::CrimsonStairs_WestTopInnerRightFalse
- | BlockState::WarpedStairs_NorthTopInnerLeftTrue
- | BlockState::WarpedStairs_NorthTopInnerLeftFalse
- | BlockState::WarpedStairs_WestTopInnerRightTrue
- | BlockState::WarpedStairs_WestTopInnerRightFalse
- | BlockState::BlackstoneStairs_NorthTopInnerLeftTrue
- | BlockState::BlackstoneStairs_NorthTopInnerLeftFalse
- | BlockState::BlackstoneStairs_WestTopInnerRightTrue
- | BlockState::BlackstoneStairs_WestTopInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestTopInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestTopInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_NorthTopInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_NorthTopInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_WestTopInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_WestTopInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_WestTopInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_WestTopInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_WestTopInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_WestTopInnerRightFalse
- | BlockState::ExposedCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_WestTopInnerRightTrue
- | BlockState::ExposedCutCopperStairs_WestTopInnerRightFalse
- | BlockState::CutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::CutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::CutCopperStairs_WestTopInnerRightTrue
- | BlockState::CutCopperStairs_WestTopInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_WestTopInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_WestTopInnerRightFalse
- | BlockState::WaxedCutCopperStairs_NorthTopInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_NorthTopInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_WestTopInnerRightTrue
- | BlockState::WaxedCutCopperStairs_WestTopInnerRightFalse
- | BlockState::CobbledDeepslateStairs_NorthTopInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_NorthTopInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_WestTopInnerRightTrue
- | BlockState::CobbledDeepslateStairs_WestTopInnerRightFalse
- | BlockState::PolishedDeepslateStairs_NorthTopInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_NorthTopInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_WestTopInnerRightTrue
- | BlockState::PolishedDeepslateStairs_WestTopInnerRightFalse
- | BlockState::DeepslateTileStairs_NorthTopInnerLeftTrue
- | BlockState::DeepslateTileStairs_NorthTopInnerLeftFalse
- | BlockState::DeepslateTileStairs_WestTopInnerRightTrue
- | BlockState::DeepslateTileStairs_WestTopInnerRightFalse
- | BlockState::DeepslateBrickStairs_NorthTopInnerLeftTrue
- | BlockState::DeepslateBrickStairs_NorthTopInnerLeftFalse
- | BlockState::DeepslateBrickStairs_WestTopInnerRightTrue
- | BlockState::DeepslateBrickStairs_WestTopInnerRightFalse => &SHAPE35,
- BlockState::OakStairs_NorthTopInnerRightTrue
- | BlockState::OakStairs_NorthTopInnerRightFalse
- | BlockState::OakStairs_EastTopInnerLeftTrue
- | BlockState::OakStairs_EastTopInnerLeftFalse
- | BlockState::CobblestoneStairs_NorthTopInnerRightTrue
- | BlockState::CobblestoneStairs_NorthTopInnerRightFalse
- | BlockState::CobblestoneStairs_EastTopInnerLeftTrue
- | BlockState::CobblestoneStairs_EastTopInnerLeftFalse
- | BlockState::BrickStairs_NorthTopInnerRightTrue
- | BlockState::BrickStairs_NorthTopInnerRightFalse
- | BlockState::BrickStairs_EastTopInnerLeftTrue
- | BlockState::BrickStairs_EastTopInnerLeftFalse
- | BlockState::StoneBrickStairs_NorthTopInnerRightTrue
- | BlockState::StoneBrickStairs_NorthTopInnerRightFalse
- | BlockState::StoneBrickStairs_EastTopInnerLeftTrue
- | BlockState::StoneBrickStairs_EastTopInnerLeftFalse
- | BlockState::MudBrickStairs_NorthTopInnerRightTrue
- | BlockState::MudBrickStairs_NorthTopInnerRightFalse
- | BlockState::MudBrickStairs_EastTopInnerLeftTrue
- | BlockState::MudBrickStairs_EastTopInnerLeftFalse
- | BlockState::NetherBrickStairs_NorthTopInnerRightTrue
- | BlockState::NetherBrickStairs_NorthTopInnerRightFalse
- | BlockState::NetherBrickStairs_EastTopInnerLeftTrue
- | BlockState::NetherBrickStairs_EastTopInnerLeftFalse
- | BlockState::SandstoneStairs_NorthTopInnerRightTrue
- | BlockState::SandstoneStairs_NorthTopInnerRightFalse
- | BlockState::SandstoneStairs_EastTopInnerLeftTrue
- | BlockState::SandstoneStairs_EastTopInnerLeftFalse
- | BlockState::SpruceStairs_NorthTopInnerRightTrue
- | BlockState::SpruceStairs_NorthTopInnerRightFalse
- | BlockState::SpruceStairs_EastTopInnerLeftTrue
- | BlockState::SpruceStairs_EastTopInnerLeftFalse
- | BlockState::BirchStairs_NorthTopInnerRightTrue
- | BlockState::BirchStairs_NorthTopInnerRightFalse
- | BlockState::BirchStairs_EastTopInnerLeftTrue
- | BlockState::BirchStairs_EastTopInnerLeftFalse
- | BlockState::JungleStairs_NorthTopInnerRightTrue
- | BlockState::JungleStairs_NorthTopInnerRightFalse
- | BlockState::JungleStairs_EastTopInnerLeftTrue
- | BlockState::JungleStairs_EastTopInnerLeftFalse
- | BlockState::QuartzStairs_NorthTopInnerRightTrue
- | BlockState::QuartzStairs_NorthTopInnerRightFalse
- | BlockState::QuartzStairs_EastTopInnerLeftTrue
- | BlockState::QuartzStairs_EastTopInnerLeftFalse
- | BlockState::AcaciaStairs_NorthTopInnerRightTrue
- | BlockState::AcaciaStairs_NorthTopInnerRightFalse
- | BlockState::AcaciaStairs_EastTopInnerLeftTrue
- | BlockState::AcaciaStairs_EastTopInnerLeftFalse
- | BlockState::DarkOakStairs_NorthTopInnerRightTrue
- | BlockState::DarkOakStairs_NorthTopInnerRightFalse
- | BlockState::DarkOakStairs_EastTopInnerLeftTrue
- | BlockState::DarkOakStairs_EastTopInnerLeftFalse
- | BlockState::MangroveStairs_NorthTopInnerRightTrue
- | BlockState::MangroveStairs_NorthTopInnerRightFalse
- | BlockState::MangroveStairs_EastTopInnerLeftTrue
- | BlockState::MangroveStairs_EastTopInnerLeftFalse
- | BlockState::BambooStairs_NorthTopInnerRightTrue
- | BlockState::BambooStairs_NorthTopInnerRightFalse
- | BlockState::BambooStairs_EastTopInnerLeftTrue
- | BlockState::BambooStairs_EastTopInnerLeftFalse
- | BlockState::BambooMosaicStairs_NorthTopInnerRightTrue
- | BlockState::BambooMosaicStairs_NorthTopInnerRightFalse
- | BlockState::BambooMosaicStairs_EastTopInnerLeftTrue
- | BlockState::BambooMosaicStairs_EastTopInnerLeftFalse
- | BlockState::PrismarineStairs_NorthTopInnerRightTrue
- | BlockState::PrismarineStairs_NorthTopInnerRightFalse
- | BlockState::PrismarineStairs_EastTopInnerLeftTrue
- | BlockState::PrismarineStairs_EastTopInnerLeftFalse
- | BlockState::PrismarineBrickStairs_NorthTopInnerRightTrue
- | BlockState::PrismarineBrickStairs_NorthTopInnerRightFalse
- | BlockState::PrismarineBrickStairs_EastTopInnerLeftTrue
- | BlockState::PrismarineBrickStairs_EastTopInnerLeftFalse
- | BlockState::DarkPrismarineStairs_NorthTopInnerRightTrue
- | BlockState::DarkPrismarineStairs_NorthTopInnerRightFalse
- | BlockState::DarkPrismarineStairs_EastTopInnerLeftTrue
- | BlockState::DarkPrismarineStairs_EastTopInnerLeftFalse
- | BlockState::RedSandstoneStairs_NorthTopInnerRightTrue
- | BlockState::RedSandstoneStairs_NorthTopInnerRightFalse
- | BlockState::RedSandstoneStairs_EastTopInnerLeftTrue
- | BlockState::RedSandstoneStairs_EastTopInnerLeftFalse
- | BlockState::PurpurStairs_NorthTopInnerRightTrue
- | BlockState::PurpurStairs_NorthTopInnerRightFalse
- | BlockState::PurpurStairs_EastTopInnerLeftTrue
- | BlockState::PurpurStairs_EastTopInnerLeftFalse
- | BlockState::PolishedGraniteStairs_NorthTopInnerRightTrue
- | BlockState::PolishedGraniteStairs_NorthTopInnerRightFalse
- | BlockState::PolishedGraniteStairs_EastTopInnerLeftTrue
- | BlockState::PolishedGraniteStairs_EastTopInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_NorthTopInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_NorthTopInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_EastTopInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_EastTopInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_NorthTopInnerRightTrue
- | BlockState::MossyStoneBrickStairs_NorthTopInnerRightFalse
- | BlockState::MossyStoneBrickStairs_EastTopInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_EastTopInnerLeftFalse
- | BlockState::PolishedDioriteStairs_NorthTopInnerRightTrue
- | BlockState::PolishedDioriteStairs_NorthTopInnerRightFalse
- | BlockState::PolishedDioriteStairs_EastTopInnerLeftTrue
- | BlockState::PolishedDioriteStairs_EastTopInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_NorthTopInnerRightTrue
- | BlockState::MossyCobblestoneStairs_NorthTopInnerRightFalse
- | BlockState::MossyCobblestoneStairs_EastTopInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_EastTopInnerLeftFalse
- | BlockState::EndStoneBrickStairs_NorthTopInnerRightTrue
- | BlockState::EndStoneBrickStairs_NorthTopInnerRightFalse
- | BlockState::EndStoneBrickStairs_EastTopInnerLeftTrue
- | BlockState::EndStoneBrickStairs_EastTopInnerLeftFalse
- | BlockState::StoneStairs_NorthTopInnerRightTrue
- | BlockState::StoneStairs_NorthTopInnerRightFalse
- | BlockState::StoneStairs_EastTopInnerLeftTrue
- | BlockState::StoneStairs_EastTopInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_NorthTopInnerRightTrue
- | BlockState::SmoothSandstoneStairs_NorthTopInnerRightFalse
- | BlockState::SmoothSandstoneStairs_EastTopInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_EastTopInnerLeftFalse
- | BlockState::SmoothQuartzStairs_NorthTopInnerRightTrue
- | BlockState::SmoothQuartzStairs_NorthTopInnerRightFalse
- | BlockState::SmoothQuartzStairs_EastTopInnerLeftTrue
- | BlockState::SmoothQuartzStairs_EastTopInnerLeftFalse
- | BlockState::GraniteStairs_NorthTopInnerRightTrue
- | BlockState::GraniteStairs_NorthTopInnerRightFalse
- | BlockState::GraniteStairs_EastTopInnerLeftTrue
- | BlockState::GraniteStairs_EastTopInnerLeftFalse
- | BlockState::AndesiteStairs_NorthTopInnerRightTrue
- | BlockState::AndesiteStairs_NorthTopInnerRightFalse
- | BlockState::AndesiteStairs_EastTopInnerLeftTrue
- | BlockState::AndesiteStairs_EastTopInnerLeftFalse
- | BlockState::RedNetherBrickStairs_NorthTopInnerRightTrue
- | BlockState::RedNetherBrickStairs_NorthTopInnerRightFalse
- | BlockState::RedNetherBrickStairs_EastTopInnerLeftTrue
- | BlockState::RedNetherBrickStairs_EastTopInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_NorthTopInnerRightTrue
- | BlockState::PolishedAndesiteStairs_NorthTopInnerRightFalse
- | BlockState::PolishedAndesiteStairs_EastTopInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_EastTopInnerLeftFalse
- | BlockState::DioriteStairs_NorthTopInnerRightTrue
- | BlockState::DioriteStairs_NorthTopInnerRightFalse
- | BlockState::DioriteStairs_EastTopInnerLeftTrue
- | BlockState::DioriteStairs_EastTopInnerLeftFalse
- | BlockState::CrimsonStairs_NorthTopInnerRightTrue
- | BlockState::CrimsonStairs_NorthTopInnerRightFalse
- | BlockState::CrimsonStairs_EastTopInnerLeftTrue
- | BlockState::CrimsonStairs_EastTopInnerLeftFalse
- | BlockState::WarpedStairs_NorthTopInnerRightTrue
- | BlockState::WarpedStairs_NorthTopInnerRightFalse
- | BlockState::WarpedStairs_EastTopInnerLeftTrue
- | BlockState::WarpedStairs_EastTopInnerLeftFalse
- | BlockState::BlackstoneStairs_NorthTopInnerRightTrue
- | BlockState::BlackstoneStairs_NorthTopInnerRightFalse
- | BlockState::BlackstoneStairs_EastTopInnerLeftTrue
- | BlockState::BlackstoneStairs_EastTopInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastTopInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastTopInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_NorthTopInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_NorthTopInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_EastTopInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_EastTopInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::ExposedCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::ExposedCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::CutCopperStairs_NorthTopInnerRightTrue
- | BlockState::CutCopperStairs_NorthTopInnerRightFalse
- | BlockState::CutCopperStairs_EastTopInnerLeftTrue
- | BlockState::CutCopperStairs_EastTopInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_NorthTopInnerRightTrue
- | BlockState::WaxedCutCopperStairs_NorthTopInnerRightFalse
- | BlockState::WaxedCutCopperStairs_EastTopInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_EastTopInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_NorthTopInnerRightTrue
- | BlockState::CobbledDeepslateStairs_NorthTopInnerRightFalse
- | BlockState::CobbledDeepslateStairs_EastTopInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_EastTopInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_NorthTopInnerRightTrue
- | BlockState::PolishedDeepslateStairs_NorthTopInnerRightFalse
- | BlockState::PolishedDeepslateStairs_EastTopInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_EastTopInnerLeftFalse
- | BlockState::DeepslateTileStairs_NorthTopInnerRightTrue
- | BlockState::DeepslateTileStairs_NorthTopInnerRightFalse
- | BlockState::DeepslateTileStairs_EastTopInnerLeftTrue
- | BlockState::DeepslateTileStairs_EastTopInnerLeftFalse
- | BlockState::DeepslateBrickStairs_NorthTopInnerRightTrue
- | BlockState::DeepslateBrickStairs_NorthTopInnerRightFalse
- | BlockState::DeepslateBrickStairs_EastTopInnerLeftTrue
- | BlockState::DeepslateBrickStairs_EastTopInnerLeftFalse => &SHAPE37,
- BlockState::OakStairs_NorthTopOuterLeftTrue
- | BlockState::OakStairs_NorthTopOuterLeftFalse
- | BlockState::OakStairs_WestTopOuterRightTrue
- | BlockState::OakStairs_WestTopOuterRightFalse
- | BlockState::CobblestoneStairs_NorthTopOuterLeftTrue
- | BlockState::CobblestoneStairs_NorthTopOuterLeftFalse
- | BlockState::CobblestoneStairs_WestTopOuterRightTrue
- | BlockState::CobblestoneStairs_WestTopOuterRightFalse
- | BlockState::BrickStairs_NorthTopOuterLeftTrue
- | BlockState::BrickStairs_NorthTopOuterLeftFalse
- | BlockState::BrickStairs_WestTopOuterRightTrue
- | BlockState::BrickStairs_WestTopOuterRightFalse
- | BlockState::StoneBrickStairs_NorthTopOuterLeftTrue
- | BlockState::StoneBrickStairs_NorthTopOuterLeftFalse
- | BlockState::StoneBrickStairs_WestTopOuterRightTrue
- | BlockState::StoneBrickStairs_WestTopOuterRightFalse
- | BlockState::MudBrickStairs_NorthTopOuterLeftTrue
- | BlockState::MudBrickStairs_NorthTopOuterLeftFalse
- | BlockState::MudBrickStairs_WestTopOuterRightTrue
- | BlockState::MudBrickStairs_WestTopOuterRightFalse
- | BlockState::NetherBrickStairs_NorthTopOuterLeftTrue
- | BlockState::NetherBrickStairs_NorthTopOuterLeftFalse
- | BlockState::NetherBrickStairs_WestTopOuterRightTrue
- | BlockState::NetherBrickStairs_WestTopOuterRightFalse
- | BlockState::SandstoneStairs_NorthTopOuterLeftTrue
- | BlockState::SandstoneStairs_NorthTopOuterLeftFalse
- | BlockState::SandstoneStairs_WestTopOuterRightTrue
- | BlockState::SandstoneStairs_WestTopOuterRightFalse
- | BlockState::SpruceStairs_NorthTopOuterLeftTrue
- | BlockState::SpruceStairs_NorthTopOuterLeftFalse
- | BlockState::SpruceStairs_WestTopOuterRightTrue
- | BlockState::SpruceStairs_WestTopOuterRightFalse
- | BlockState::BirchStairs_NorthTopOuterLeftTrue
- | BlockState::BirchStairs_NorthTopOuterLeftFalse
- | BlockState::BirchStairs_WestTopOuterRightTrue
- | BlockState::BirchStairs_WestTopOuterRightFalse
- | BlockState::JungleStairs_NorthTopOuterLeftTrue
- | BlockState::JungleStairs_NorthTopOuterLeftFalse
- | BlockState::JungleStairs_WestTopOuterRightTrue
- | BlockState::JungleStairs_WestTopOuterRightFalse
- | BlockState::QuartzStairs_NorthTopOuterLeftTrue
- | BlockState::QuartzStairs_NorthTopOuterLeftFalse
- | BlockState::QuartzStairs_WestTopOuterRightTrue
- | BlockState::QuartzStairs_WestTopOuterRightFalse
- | BlockState::AcaciaStairs_NorthTopOuterLeftTrue
- | BlockState::AcaciaStairs_NorthTopOuterLeftFalse
- | BlockState::AcaciaStairs_WestTopOuterRightTrue
- | BlockState::AcaciaStairs_WestTopOuterRightFalse
- | BlockState::DarkOakStairs_NorthTopOuterLeftTrue
- | BlockState::DarkOakStairs_NorthTopOuterLeftFalse
- | BlockState::DarkOakStairs_WestTopOuterRightTrue
- | BlockState::DarkOakStairs_WestTopOuterRightFalse
- | BlockState::MangroveStairs_NorthTopOuterLeftTrue
- | BlockState::MangroveStairs_NorthTopOuterLeftFalse
- | BlockState::MangroveStairs_WestTopOuterRightTrue
- | BlockState::MangroveStairs_WestTopOuterRightFalse
- | BlockState::BambooStairs_NorthTopOuterLeftTrue
- | BlockState::BambooStairs_NorthTopOuterLeftFalse
- | BlockState::BambooStairs_WestTopOuterRightTrue
- | BlockState::BambooStairs_WestTopOuterRightFalse
- | BlockState::BambooMosaicStairs_NorthTopOuterLeftTrue
- | BlockState::BambooMosaicStairs_NorthTopOuterLeftFalse
- | BlockState::BambooMosaicStairs_WestTopOuterRightTrue
- | BlockState::BambooMosaicStairs_WestTopOuterRightFalse
- | BlockState::PrismarineStairs_NorthTopOuterLeftTrue
- | BlockState::PrismarineStairs_NorthTopOuterLeftFalse
- | BlockState::PrismarineStairs_WestTopOuterRightTrue
- | BlockState::PrismarineStairs_WestTopOuterRightFalse
- | BlockState::PrismarineBrickStairs_NorthTopOuterLeftTrue
- | BlockState::PrismarineBrickStairs_NorthTopOuterLeftFalse
- | BlockState::PrismarineBrickStairs_WestTopOuterRightTrue
- | BlockState::PrismarineBrickStairs_WestTopOuterRightFalse
- | BlockState::DarkPrismarineStairs_NorthTopOuterLeftTrue
- | BlockState::DarkPrismarineStairs_NorthTopOuterLeftFalse
- | BlockState::DarkPrismarineStairs_WestTopOuterRightTrue
- | BlockState::DarkPrismarineStairs_WestTopOuterRightFalse
- | BlockState::RedSandstoneStairs_NorthTopOuterLeftTrue
- | BlockState::RedSandstoneStairs_NorthTopOuterLeftFalse
- | BlockState::RedSandstoneStairs_WestTopOuterRightTrue
- | BlockState::RedSandstoneStairs_WestTopOuterRightFalse
- | BlockState::PurpurStairs_NorthTopOuterLeftTrue
- | BlockState::PurpurStairs_NorthTopOuterLeftFalse
- | BlockState::PurpurStairs_WestTopOuterRightTrue
- | BlockState::PurpurStairs_WestTopOuterRightFalse
- | BlockState::PolishedGraniteStairs_NorthTopOuterLeftTrue
- | BlockState::PolishedGraniteStairs_NorthTopOuterLeftFalse
- | BlockState::PolishedGraniteStairs_WestTopOuterRightTrue
- | BlockState::PolishedGraniteStairs_WestTopOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_NorthTopOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_NorthTopOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_WestTopOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_WestTopOuterRightFalse
- | BlockState::MossyStoneBrickStairs_NorthTopOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_NorthTopOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_WestTopOuterRightTrue
- | BlockState::MossyStoneBrickStairs_WestTopOuterRightFalse
- | BlockState::PolishedDioriteStairs_NorthTopOuterLeftTrue
- | BlockState::PolishedDioriteStairs_NorthTopOuterLeftFalse
- | BlockState::PolishedDioriteStairs_WestTopOuterRightTrue
- | BlockState::PolishedDioriteStairs_WestTopOuterRightFalse
- | BlockState::MossyCobblestoneStairs_NorthTopOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_NorthTopOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_WestTopOuterRightTrue
- | BlockState::MossyCobblestoneStairs_WestTopOuterRightFalse
- | BlockState::EndStoneBrickStairs_NorthTopOuterLeftTrue
- | BlockState::EndStoneBrickStairs_NorthTopOuterLeftFalse
- | BlockState::EndStoneBrickStairs_WestTopOuterRightTrue
- | BlockState::EndStoneBrickStairs_WestTopOuterRightFalse
- | BlockState::StoneStairs_NorthTopOuterLeftTrue
- | BlockState::StoneStairs_NorthTopOuterLeftFalse
- | BlockState::StoneStairs_WestTopOuterRightTrue
- | BlockState::StoneStairs_WestTopOuterRightFalse
- | BlockState::SmoothSandstoneStairs_NorthTopOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_NorthTopOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_WestTopOuterRightTrue
- | BlockState::SmoothSandstoneStairs_WestTopOuterRightFalse
- | BlockState::SmoothQuartzStairs_NorthTopOuterLeftTrue
- | BlockState::SmoothQuartzStairs_NorthTopOuterLeftFalse
- | BlockState::SmoothQuartzStairs_WestTopOuterRightTrue
- | BlockState::SmoothQuartzStairs_WestTopOuterRightFalse
- | BlockState::GraniteStairs_NorthTopOuterLeftTrue
- | BlockState::GraniteStairs_NorthTopOuterLeftFalse
- | BlockState::GraniteStairs_WestTopOuterRightTrue
- | BlockState::GraniteStairs_WestTopOuterRightFalse
- | BlockState::AndesiteStairs_NorthTopOuterLeftTrue
- | BlockState::AndesiteStairs_NorthTopOuterLeftFalse
- | BlockState::AndesiteStairs_WestTopOuterRightTrue
- | BlockState::AndesiteStairs_WestTopOuterRightFalse
- | BlockState::RedNetherBrickStairs_NorthTopOuterLeftTrue
- | BlockState::RedNetherBrickStairs_NorthTopOuterLeftFalse
- | BlockState::RedNetherBrickStairs_WestTopOuterRightTrue
- | BlockState::RedNetherBrickStairs_WestTopOuterRightFalse
- | BlockState::PolishedAndesiteStairs_NorthTopOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_NorthTopOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_WestTopOuterRightTrue
- | BlockState::PolishedAndesiteStairs_WestTopOuterRightFalse
- | BlockState::DioriteStairs_NorthTopOuterLeftTrue
- | BlockState::DioriteStairs_NorthTopOuterLeftFalse
- | BlockState::DioriteStairs_WestTopOuterRightTrue
- | BlockState::DioriteStairs_WestTopOuterRightFalse
- | BlockState::CrimsonStairs_NorthTopOuterLeftTrue
- | BlockState::CrimsonStairs_NorthTopOuterLeftFalse
- | BlockState::CrimsonStairs_WestTopOuterRightTrue
- | BlockState::CrimsonStairs_WestTopOuterRightFalse
- | BlockState::WarpedStairs_NorthTopOuterLeftTrue
- | BlockState::WarpedStairs_NorthTopOuterLeftFalse
- | BlockState::WarpedStairs_WestTopOuterRightTrue
- | BlockState::WarpedStairs_WestTopOuterRightFalse
- | BlockState::BlackstoneStairs_NorthTopOuterLeftTrue
- | BlockState::BlackstoneStairs_NorthTopOuterLeftFalse
- | BlockState::BlackstoneStairs_WestTopOuterRightTrue
- | BlockState::BlackstoneStairs_WestTopOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestTopOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestTopOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_NorthTopOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_NorthTopOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_WestTopOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_WestTopOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_WestTopOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_WestTopOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_WestTopOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_WestTopOuterRightFalse
- | BlockState::ExposedCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_WestTopOuterRightTrue
- | BlockState::ExposedCutCopperStairs_WestTopOuterRightFalse
- | BlockState::CutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::CutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::CutCopperStairs_WestTopOuterRightTrue
- | BlockState::CutCopperStairs_WestTopOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_WestTopOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_WestTopOuterRightFalse
- | BlockState::WaxedCutCopperStairs_NorthTopOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_NorthTopOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_WestTopOuterRightTrue
- | BlockState::WaxedCutCopperStairs_WestTopOuterRightFalse
- | BlockState::CobbledDeepslateStairs_NorthTopOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_NorthTopOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_WestTopOuterRightTrue
- | BlockState::CobbledDeepslateStairs_WestTopOuterRightFalse
- | BlockState::PolishedDeepslateStairs_NorthTopOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_NorthTopOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_WestTopOuterRightTrue
- | BlockState::PolishedDeepslateStairs_WestTopOuterRightFalse
- | BlockState::DeepslateTileStairs_NorthTopOuterLeftTrue
- | BlockState::DeepslateTileStairs_NorthTopOuterLeftFalse
- | BlockState::DeepslateTileStairs_WestTopOuterRightTrue
- | BlockState::DeepslateTileStairs_WestTopOuterRightFalse
- | BlockState::DeepslateBrickStairs_NorthTopOuterLeftTrue
- | BlockState::DeepslateBrickStairs_NorthTopOuterLeftFalse
- | BlockState::DeepslateBrickStairs_WestTopOuterRightTrue
- | BlockState::DeepslateBrickStairs_WestTopOuterRightFalse => &SHAPE39,
- BlockState::OakStairs_NorthTopOuterRightTrue
- | BlockState::OakStairs_NorthTopOuterRightFalse
- | BlockState::OakStairs_EastTopOuterLeftTrue
- | BlockState::OakStairs_EastTopOuterLeftFalse
- | BlockState::CobblestoneStairs_NorthTopOuterRightTrue
- | BlockState::CobblestoneStairs_NorthTopOuterRightFalse
- | BlockState::CobblestoneStairs_EastTopOuterLeftTrue
- | BlockState::CobblestoneStairs_EastTopOuterLeftFalse
- | BlockState::BrickStairs_NorthTopOuterRightTrue
- | BlockState::BrickStairs_NorthTopOuterRightFalse
- | BlockState::BrickStairs_EastTopOuterLeftTrue
- | BlockState::BrickStairs_EastTopOuterLeftFalse
- | BlockState::StoneBrickStairs_NorthTopOuterRightTrue
- | BlockState::StoneBrickStairs_NorthTopOuterRightFalse
- | BlockState::StoneBrickStairs_EastTopOuterLeftTrue
- | BlockState::StoneBrickStairs_EastTopOuterLeftFalse
- | BlockState::MudBrickStairs_NorthTopOuterRightTrue
- | BlockState::MudBrickStairs_NorthTopOuterRightFalse
- | BlockState::MudBrickStairs_EastTopOuterLeftTrue
- | BlockState::MudBrickStairs_EastTopOuterLeftFalse
- | BlockState::NetherBrickStairs_NorthTopOuterRightTrue
- | BlockState::NetherBrickStairs_NorthTopOuterRightFalse
- | BlockState::NetherBrickStairs_EastTopOuterLeftTrue
- | BlockState::NetherBrickStairs_EastTopOuterLeftFalse
- | BlockState::SandstoneStairs_NorthTopOuterRightTrue
- | BlockState::SandstoneStairs_NorthTopOuterRightFalse
- | BlockState::SandstoneStairs_EastTopOuterLeftTrue
- | BlockState::SandstoneStairs_EastTopOuterLeftFalse
- | BlockState::SpruceStairs_NorthTopOuterRightTrue
- | BlockState::SpruceStairs_NorthTopOuterRightFalse
- | BlockState::SpruceStairs_EastTopOuterLeftTrue
- | BlockState::SpruceStairs_EastTopOuterLeftFalse
- | BlockState::BirchStairs_NorthTopOuterRightTrue
- | BlockState::BirchStairs_NorthTopOuterRightFalse
- | BlockState::BirchStairs_EastTopOuterLeftTrue
- | BlockState::BirchStairs_EastTopOuterLeftFalse
- | BlockState::JungleStairs_NorthTopOuterRightTrue
- | BlockState::JungleStairs_NorthTopOuterRightFalse
- | BlockState::JungleStairs_EastTopOuterLeftTrue
- | BlockState::JungleStairs_EastTopOuterLeftFalse
- | BlockState::QuartzStairs_NorthTopOuterRightTrue
- | BlockState::QuartzStairs_NorthTopOuterRightFalse
- | BlockState::QuartzStairs_EastTopOuterLeftTrue
- | BlockState::QuartzStairs_EastTopOuterLeftFalse
- | BlockState::AcaciaStairs_NorthTopOuterRightTrue
- | BlockState::AcaciaStairs_NorthTopOuterRightFalse
- | BlockState::AcaciaStairs_EastTopOuterLeftTrue
- | BlockState::AcaciaStairs_EastTopOuterLeftFalse
- | BlockState::DarkOakStairs_NorthTopOuterRightTrue
- | BlockState::DarkOakStairs_NorthTopOuterRightFalse
- | BlockState::DarkOakStairs_EastTopOuterLeftTrue
- | BlockState::DarkOakStairs_EastTopOuterLeftFalse
- | BlockState::MangroveStairs_NorthTopOuterRightTrue
- | BlockState::MangroveStairs_NorthTopOuterRightFalse
- | BlockState::MangroveStairs_EastTopOuterLeftTrue
- | BlockState::MangroveStairs_EastTopOuterLeftFalse
- | BlockState::BambooStairs_NorthTopOuterRightTrue
- | BlockState::BambooStairs_NorthTopOuterRightFalse
- | BlockState::BambooStairs_EastTopOuterLeftTrue
- | BlockState::BambooStairs_EastTopOuterLeftFalse
- | BlockState::BambooMosaicStairs_NorthTopOuterRightTrue
- | BlockState::BambooMosaicStairs_NorthTopOuterRightFalse
- | BlockState::BambooMosaicStairs_EastTopOuterLeftTrue
- | BlockState::BambooMosaicStairs_EastTopOuterLeftFalse
- | BlockState::PrismarineStairs_NorthTopOuterRightTrue
- | BlockState::PrismarineStairs_NorthTopOuterRightFalse
- | BlockState::PrismarineStairs_EastTopOuterLeftTrue
- | BlockState::PrismarineStairs_EastTopOuterLeftFalse
- | BlockState::PrismarineBrickStairs_NorthTopOuterRightTrue
- | BlockState::PrismarineBrickStairs_NorthTopOuterRightFalse
- | BlockState::PrismarineBrickStairs_EastTopOuterLeftTrue
- | BlockState::PrismarineBrickStairs_EastTopOuterLeftFalse
- | BlockState::DarkPrismarineStairs_NorthTopOuterRightTrue
- | BlockState::DarkPrismarineStairs_NorthTopOuterRightFalse
- | BlockState::DarkPrismarineStairs_EastTopOuterLeftTrue
- | BlockState::DarkPrismarineStairs_EastTopOuterLeftFalse
- | BlockState::RedSandstoneStairs_NorthTopOuterRightTrue
- | BlockState::RedSandstoneStairs_NorthTopOuterRightFalse
- | BlockState::RedSandstoneStairs_EastTopOuterLeftTrue
- | BlockState::RedSandstoneStairs_EastTopOuterLeftFalse
- | BlockState::PurpurStairs_NorthTopOuterRightTrue
- | BlockState::PurpurStairs_NorthTopOuterRightFalse
- | BlockState::PurpurStairs_EastTopOuterLeftTrue
- | BlockState::PurpurStairs_EastTopOuterLeftFalse
- | BlockState::PolishedGraniteStairs_NorthTopOuterRightTrue
- | BlockState::PolishedGraniteStairs_NorthTopOuterRightFalse
- | BlockState::PolishedGraniteStairs_EastTopOuterLeftTrue
- | BlockState::PolishedGraniteStairs_EastTopOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_NorthTopOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_NorthTopOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_EastTopOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_EastTopOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_NorthTopOuterRightTrue
- | BlockState::MossyStoneBrickStairs_NorthTopOuterRightFalse
- | BlockState::MossyStoneBrickStairs_EastTopOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_EastTopOuterLeftFalse
- | BlockState::PolishedDioriteStairs_NorthTopOuterRightTrue
- | BlockState::PolishedDioriteStairs_NorthTopOuterRightFalse
- | BlockState::PolishedDioriteStairs_EastTopOuterLeftTrue
- | BlockState::PolishedDioriteStairs_EastTopOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_NorthTopOuterRightTrue
- | BlockState::MossyCobblestoneStairs_NorthTopOuterRightFalse
- | BlockState::MossyCobblestoneStairs_EastTopOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_EastTopOuterLeftFalse
- | BlockState::EndStoneBrickStairs_NorthTopOuterRightTrue
- | BlockState::EndStoneBrickStairs_NorthTopOuterRightFalse
- | BlockState::EndStoneBrickStairs_EastTopOuterLeftTrue
- | BlockState::EndStoneBrickStairs_EastTopOuterLeftFalse
- | BlockState::StoneStairs_NorthTopOuterRightTrue
- | BlockState::StoneStairs_NorthTopOuterRightFalse
- | BlockState::StoneStairs_EastTopOuterLeftTrue
- | BlockState::StoneStairs_EastTopOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_NorthTopOuterRightTrue
- | BlockState::SmoothSandstoneStairs_NorthTopOuterRightFalse
- | BlockState::SmoothSandstoneStairs_EastTopOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_EastTopOuterLeftFalse
- | BlockState::SmoothQuartzStairs_NorthTopOuterRightTrue
- | BlockState::SmoothQuartzStairs_NorthTopOuterRightFalse
- | BlockState::SmoothQuartzStairs_EastTopOuterLeftTrue
- | BlockState::SmoothQuartzStairs_EastTopOuterLeftFalse
- | BlockState::GraniteStairs_NorthTopOuterRightTrue
- | BlockState::GraniteStairs_NorthTopOuterRightFalse
- | BlockState::GraniteStairs_EastTopOuterLeftTrue
- | BlockState::GraniteStairs_EastTopOuterLeftFalse
- | BlockState::AndesiteStairs_NorthTopOuterRightTrue
- | BlockState::AndesiteStairs_NorthTopOuterRightFalse
- | BlockState::AndesiteStairs_EastTopOuterLeftTrue
- | BlockState::AndesiteStairs_EastTopOuterLeftFalse
- | BlockState::RedNetherBrickStairs_NorthTopOuterRightTrue
- | BlockState::RedNetherBrickStairs_NorthTopOuterRightFalse
- | BlockState::RedNetherBrickStairs_EastTopOuterLeftTrue
- | BlockState::RedNetherBrickStairs_EastTopOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_NorthTopOuterRightTrue
- | BlockState::PolishedAndesiteStairs_NorthTopOuterRightFalse
- | BlockState::PolishedAndesiteStairs_EastTopOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_EastTopOuterLeftFalse
- | BlockState::DioriteStairs_NorthTopOuterRightTrue
- | BlockState::DioriteStairs_NorthTopOuterRightFalse
- | BlockState::DioriteStairs_EastTopOuterLeftTrue
- | BlockState::DioriteStairs_EastTopOuterLeftFalse
- | BlockState::CrimsonStairs_NorthTopOuterRightTrue
- | BlockState::CrimsonStairs_NorthTopOuterRightFalse
- | BlockState::CrimsonStairs_EastTopOuterLeftTrue
- | BlockState::CrimsonStairs_EastTopOuterLeftFalse
- | BlockState::WarpedStairs_NorthTopOuterRightTrue
- | BlockState::WarpedStairs_NorthTopOuterRightFalse
- | BlockState::WarpedStairs_EastTopOuterLeftTrue
- | BlockState::WarpedStairs_EastTopOuterLeftFalse
- | BlockState::BlackstoneStairs_NorthTopOuterRightTrue
- | BlockState::BlackstoneStairs_NorthTopOuterRightFalse
- | BlockState::BlackstoneStairs_EastTopOuterLeftTrue
- | BlockState::BlackstoneStairs_EastTopOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthTopOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastTopOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastTopOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_NorthTopOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_NorthTopOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_EastTopOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_EastTopOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::ExposedCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::ExposedCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::CutCopperStairs_NorthTopOuterRightTrue
- | BlockState::CutCopperStairs_NorthTopOuterRightFalse
- | BlockState::CutCopperStairs_EastTopOuterLeftTrue
- | BlockState::CutCopperStairs_EastTopOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_NorthTopOuterRightTrue
- | BlockState::WaxedCutCopperStairs_NorthTopOuterRightFalse
- | BlockState::WaxedCutCopperStairs_EastTopOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_EastTopOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_NorthTopOuterRightTrue
- | BlockState::CobbledDeepslateStairs_NorthTopOuterRightFalse
- | BlockState::CobbledDeepslateStairs_EastTopOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_EastTopOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_NorthTopOuterRightTrue
- | BlockState::PolishedDeepslateStairs_NorthTopOuterRightFalse
- | BlockState::PolishedDeepslateStairs_EastTopOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_EastTopOuterLeftFalse
- | BlockState::DeepslateTileStairs_NorthTopOuterRightTrue
- | BlockState::DeepslateTileStairs_NorthTopOuterRightFalse
- | BlockState::DeepslateTileStairs_EastTopOuterLeftTrue
- | BlockState::DeepslateTileStairs_EastTopOuterLeftFalse
- | BlockState::DeepslateBrickStairs_NorthTopOuterRightTrue
- | BlockState::DeepslateBrickStairs_NorthTopOuterRightFalse
- | BlockState::DeepslateBrickStairs_EastTopOuterLeftTrue
- | BlockState::DeepslateBrickStairs_EastTopOuterLeftFalse => &SHAPE40,
- BlockState::OakStairs_NorthBottomStraightTrue
- | BlockState::OakStairs_NorthBottomStraightFalse
- | BlockState::CobblestoneStairs_NorthBottomStraightTrue
- | BlockState::CobblestoneStairs_NorthBottomStraightFalse
- | BlockState::BrickStairs_NorthBottomStraightTrue
- | BlockState::BrickStairs_NorthBottomStraightFalse
- | BlockState::StoneBrickStairs_NorthBottomStraightTrue
- | BlockState::StoneBrickStairs_NorthBottomStraightFalse
- | BlockState::MudBrickStairs_NorthBottomStraightTrue
- | BlockState::MudBrickStairs_NorthBottomStraightFalse
- | BlockState::NetherBrickStairs_NorthBottomStraightTrue
- | BlockState::NetherBrickStairs_NorthBottomStraightFalse
- | BlockState::SandstoneStairs_NorthBottomStraightTrue
- | BlockState::SandstoneStairs_NorthBottomStraightFalse
- | BlockState::SpruceStairs_NorthBottomStraightTrue
- | BlockState::SpruceStairs_NorthBottomStraightFalse
- | BlockState::BirchStairs_NorthBottomStraightTrue
- | BlockState::BirchStairs_NorthBottomStraightFalse
- | BlockState::JungleStairs_NorthBottomStraightTrue
- | BlockState::JungleStairs_NorthBottomStraightFalse
- | BlockState::QuartzStairs_NorthBottomStraightTrue
- | BlockState::QuartzStairs_NorthBottomStraightFalse
- | BlockState::AcaciaStairs_NorthBottomStraightTrue
- | BlockState::AcaciaStairs_NorthBottomStraightFalse
- | BlockState::DarkOakStairs_NorthBottomStraightTrue
- | BlockState::DarkOakStairs_NorthBottomStraightFalse
- | BlockState::MangroveStairs_NorthBottomStraightTrue
- | BlockState::MangroveStairs_NorthBottomStraightFalse
- | BlockState::BambooStairs_NorthBottomStraightTrue
- | BlockState::BambooStairs_NorthBottomStraightFalse
- | BlockState::BambooMosaicStairs_NorthBottomStraightTrue
- | BlockState::BambooMosaicStairs_NorthBottomStraightFalse
- | BlockState::PrismarineStairs_NorthBottomStraightTrue
- | BlockState::PrismarineStairs_NorthBottomStraightFalse
- | BlockState::PrismarineBrickStairs_NorthBottomStraightTrue
- | BlockState::PrismarineBrickStairs_NorthBottomStraightFalse
- | BlockState::DarkPrismarineStairs_NorthBottomStraightTrue
- | BlockState::DarkPrismarineStairs_NorthBottomStraightFalse
- | BlockState::RedSandstoneStairs_NorthBottomStraightTrue
- | BlockState::RedSandstoneStairs_NorthBottomStraightFalse
- | BlockState::PurpurStairs_NorthBottomStraightTrue
- | BlockState::PurpurStairs_NorthBottomStraightFalse
- | BlockState::PolishedGraniteStairs_NorthBottomStraightTrue
- | BlockState::PolishedGraniteStairs_NorthBottomStraightFalse
- | BlockState::SmoothRedSandstoneStairs_NorthBottomStraightTrue
- | BlockState::SmoothRedSandstoneStairs_NorthBottomStraightFalse
- | BlockState::MossyStoneBrickStairs_NorthBottomStraightTrue
- | BlockState::MossyStoneBrickStairs_NorthBottomStraightFalse
- | BlockState::PolishedDioriteStairs_NorthBottomStraightTrue
- | BlockState::PolishedDioriteStairs_NorthBottomStraightFalse
- | BlockState::MossyCobblestoneStairs_NorthBottomStraightTrue
- | BlockState::MossyCobblestoneStairs_NorthBottomStraightFalse
- | BlockState::EndStoneBrickStairs_NorthBottomStraightTrue
- | BlockState::EndStoneBrickStairs_NorthBottomStraightFalse
- | BlockState::StoneStairs_NorthBottomStraightTrue
- | BlockState::StoneStairs_NorthBottomStraightFalse
- | BlockState::SmoothSandstoneStairs_NorthBottomStraightTrue
- | BlockState::SmoothSandstoneStairs_NorthBottomStraightFalse
- | BlockState::SmoothQuartzStairs_NorthBottomStraightTrue
- | BlockState::SmoothQuartzStairs_NorthBottomStraightFalse
- | BlockState::GraniteStairs_NorthBottomStraightTrue
- | BlockState::GraniteStairs_NorthBottomStraightFalse
- | BlockState::AndesiteStairs_NorthBottomStraightTrue
- | BlockState::AndesiteStairs_NorthBottomStraightFalse
- | BlockState::RedNetherBrickStairs_NorthBottomStraightTrue
- | BlockState::RedNetherBrickStairs_NorthBottomStraightFalse
- | BlockState::PolishedAndesiteStairs_NorthBottomStraightTrue
- | BlockState::PolishedAndesiteStairs_NorthBottomStraightFalse
- | BlockState::DioriteStairs_NorthBottomStraightTrue
- | BlockState::DioriteStairs_NorthBottomStraightFalse
- | BlockState::CrimsonStairs_NorthBottomStraightTrue
- | BlockState::CrimsonStairs_NorthBottomStraightFalse
- | BlockState::WarpedStairs_NorthBottomStraightTrue
- | BlockState::WarpedStairs_NorthBottomStraightFalse
- | BlockState::BlackstoneStairs_NorthBottomStraightTrue
- | BlockState::BlackstoneStairs_NorthBottomStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomStraightFalse
- | BlockState::PolishedBlackstoneStairs_NorthBottomStraightTrue
- | BlockState::PolishedBlackstoneStairs_NorthBottomStraightFalse
- | BlockState::OxidizedCutCopperStairs_NorthBottomStraightTrue
- | BlockState::OxidizedCutCopperStairs_NorthBottomStraightFalse
- | BlockState::WeatheredCutCopperStairs_NorthBottomStraightTrue
- | BlockState::WeatheredCutCopperStairs_NorthBottomStraightFalse
- | BlockState::ExposedCutCopperStairs_NorthBottomStraightTrue
- | BlockState::ExposedCutCopperStairs_NorthBottomStraightFalse
- | BlockState::CutCopperStairs_NorthBottomStraightTrue
- | BlockState::CutCopperStairs_NorthBottomStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomStraightFalse
- | BlockState::WaxedCutCopperStairs_NorthBottomStraightTrue
- | BlockState::WaxedCutCopperStairs_NorthBottomStraightFalse
- | BlockState::CobbledDeepslateStairs_NorthBottomStraightTrue
- | BlockState::CobbledDeepslateStairs_NorthBottomStraightFalse
- | BlockState::PolishedDeepslateStairs_NorthBottomStraightTrue
- | BlockState::PolishedDeepslateStairs_NorthBottomStraightFalse
- | BlockState::DeepslateTileStairs_NorthBottomStraightTrue
- | BlockState::DeepslateTileStairs_NorthBottomStraightFalse
- | BlockState::DeepslateBrickStairs_NorthBottomStraightTrue
- | BlockState::DeepslateBrickStairs_NorthBottomStraightFalse => &SHAPE41,
- BlockState::OakStairs_NorthBottomInnerLeftTrue
- | BlockState::OakStairs_NorthBottomInnerLeftFalse
- | BlockState::OakStairs_WestBottomInnerRightTrue
- | BlockState::OakStairs_WestBottomInnerRightFalse
- | BlockState::CobblestoneStairs_NorthBottomInnerLeftTrue
- | BlockState::CobblestoneStairs_NorthBottomInnerLeftFalse
- | BlockState::CobblestoneStairs_WestBottomInnerRightTrue
- | BlockState::CobblestoneStairs_WestBottomInnerRightFalse
- | BlockState::BrickStairs_NorthBottomInnerLeftTrue
- | BlockState::BrickStairs_NorthBottomInnerLeftFalse
- | BlockState::BrickStairs_WestBottomInnerRightTrue
- | BlockState::BrickStairs_WestBottomInnerRightFalse
- | BlockState::StoneBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::StoneBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::StoneBrickStairs_WestBottomInnerRightTrue
- | BlockState::StoneBrickStairs_WestBottomInnerRightFalse
- | BlockState::MudBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::MudBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::MudBrickStairs_WestBottomInnerRightTrue
- | BlockState::MudBrickStairs_WestBottomInnerRightFalse
- | BlockState::NetherBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::NetherBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::NetherBrickStairs_WestBottomInnerRightTrue
- | BlockState::NetherBrickStairs_WestBottomInnerRightFalse
- | BlockState::SandstoneStairs_NorthBottomInnerLeftTrue
- | BlockState::SandstoneStairs_NorthBottomInnerLeftFalse
- | BlockState::SandstoneStairs_WestBottomInnerRightTrue
- | BlockState::SandstoneStairs_WestBottomInnerRightFalse
- | BlockState::SpruceStairs_NorthBottomInnerLeftTrue
- | BlockState::SpruceStairs_NorthBottomInnerLeftFalse
- | BlockState::SpruceStairs_WestBottomInnerRightTrue
- | BlockState::SpruceStairs_WestBottomInnerRightFalse
- | BlockState::BirchStairs_NorthBottomInnerLeftTrue
- | BlockState::BirchStairs_NorthBottomInnerLeftFalse
- | BlockState::BirchStairs_WestBottomInnerRightTrue
- | BlockState::BirchStairs_WestBottomInnerRightFalse
- | BlockState::JungleStairs_NorthBottomInnerLeftTrue
- | BlockState::JungleStairs_NorthBottomInnerLeftFalse
- | BlockState::JungleStairs_WestBottomInnerRightTrue
- | BlockState::JungleStairs_WestBottomInnerRightFalse
- | BlockState::QuartzStairs_NorthBottomInnerLeftTrue
- | BlockState::QuartzStairs_NorthBottomInnerLeftFalse
- | BlockState::QuartzStairs_WestBottomInnerRightTrue
- | BlockState::QuartzStairs_WestBottomInnerRightFalse
- | BlockState::AcaciaStairs_NorthBottomInnerLeftTrue
- | BlockState::AcaciaStairs_NorthBottomInnerLeftFalse
- | BlockState::AcaciaStairs_WestBottomInnerRightTrue
- | BlockState::AcaciaStairs_WestBottomInnerRightFalse
- | BlockState::DarkOakStairs_NorthBottomInnerLeftTrue
- | BlockState::DarkOakStairs_NorthBottomInnerLeftFalse
- | BlockState::DarkOakStairs_WestBottomInnerRightTrue
- | BlockState::DarkOakStairs_WestBottomInnerRightFalse
- | BlockState::MangroveStairs_NorthBottomInnerLeftTrue
- | BlockState::MangroveStairs_NorthBottomInnerLeftFalse
- | BlockState::MangroveStairs_WestBottomInnerRightTrue
- | BlockState::MangroveStairs_WestBottomInnerRightFalse
- | BlockState::BambooStairs_NorthBottomInnerLeftTrue
- | BlockState::BambooStairs_NorthBottomInnerLeftFalse
- | BlockState::BambooStairs_WestBottomInnerRightTrue
- | BlockState::BambooStairs_WestBottomInnerRightFalse
- | BlockState::BambooMosaicStairs_NorthBottomInnerLeftTrue
- | BlockState::BambooMosaicStairs_NorthBottomInnerLeftFalse
- | BlockState::BambooMosaicStairs_WestBottomInnerRightTrue
- | BlockState::BambooMosaicStairs_WestBottomInnerRightFalse
- | BlockState::PrismarineStairs_NorthBottomInnerLeftTrue
- | BlockState::PrismarineStairs_NorthBottomInnerLeftFalse
- | BlockState::PrismarineStairs_WestBottomInnerRightTrue
- | BlockState::PrismarineStairs_WestBottomInnerRightFalse
- | BlockState::PrismarineBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::PrismarineBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::PrismarineBrickStairs_WestBottomInnerRightTrue
- | BlockState::PrismarineBrickStairs_WestBottomInnerRightFalse
- | BlockState::DarkPrismarineStairs_NorthBottomInnerLeftTrue
- | BlockState::DarkPrismarineStairs_NorthBottomInnerLeftFalse
- | BlockState::DarkPrismarineStairs_WestBottomInnerRightTrue
- | BlockState::DarkPrismarineStairs_WestBottomInnerRightFalse
- | BlockState::RedSandstoneStairs_NorthBottomInnerLeftTrue
- | BlockState::RedSandstoneStairs_NorthBottomInnerLeftFalse
- | BlockState::RedSandstoneStairs_WestBottomInnerRightTrue
- | BlockState::RedSandstoneStairs_WestBottomInnerRightFalse
- | BlockState::PurpurStairs_NorthBottomInnerLeftTrue
- | BlockState::PurpurStairs_NorthBottomInnerLeftFalse
- | BlockState::PurpurStairs_WestBottomInnerRightTrue
- | BlockState::PurpurStairs_WestBottomInnerRightFalse
- | BlockState::PolishedGraniteStairs_NorthBottomInnerLeftTrue
- | BlockState::PolishedGraniteStairs_NorthBottomInnerLeftFalse
- | BlockState::PolishedGraniteStairs_WestBottomInnerRightTrue
- | BlockState::PolishedGraniteStairs_WestBottomInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_NorthBottomInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_NorthBottomInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_WestBottomInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_WestBottomInnerRightFalse
- | BlockState::MossyStoneBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_WestBottomInnerRightTrue
- | BlockState::MossyStoneBrickStairs_WestBottomInnerRightFalse
- | BlockState::PolishedDioriteStairs_NorthBottomInnerLeftTrue
- | BlockState::PolishedDioriteStairs_NorthBottomInnerLeftFalse
- | BlockState::PolishedDioriteStairs_WestBottomInnerRightTrue
- | BlockState::PolishedDioriteStairs_WestBottomInnerRightFalse
- | BlockState::MossyCobblestoneStairs_NorthBottomInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_NorthBottomInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_WestBottomInnerRightTrue
- | BlockState::MossyCobblestoneStairs_WestBottomInnerRightFalse
- | BlockState::EndStoneBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::EndStoneBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::EndStoneBrickStairs_WestBottomInnerRightTrue
- | BlockState::EndStoneBrickStairs_WestBottomInnerRightFalse
- | BlockState::StoneStairs_NorthBottomInnerLeftTrue
- | BlockState::StoneStairs_NorthBottomInnerLeftFalse
- | BlockState::StoneStairs_WestBottomInnerRightTrue
- | BlockState::StoneStairs_WestBottomInnerRightFalse
- | BlockState::SmoothSandstoneStairs_NorthBottomInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_NorthBottomInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_WestBottomInnerRightTrue
- | BlockState::SmoothSandstoneStairs_WestBottomInnerRightFalse
- | BlockState::SmoothQuartzStairs_NorthBottomInnerLeftTrue
- | BlockState::SmoothQuartzStairs_NorthBottomInnerLeftFalse
- | BlockState::SmoothQuartzStairs_WestBottomInnerRightTrue
- | BlockState::SmoothQuartzStairs_WestBottomInnerRightFalse
- | BlockState::GraniteStairs_NorthBottomInnerLeftTrue
- | BlockState::GraniteStairs_NorthBottomInnerLeftFalse
- | BlockState::GraniteStairs_WestBottomInnerRightTrue
- | BlockState::GraniteStairs_WestBottomInnerRightFalse
- | BlockState::AndesiteStairs_NorthBottomInnerLeftTrue
- | BlockState::AndesiteStairs_NorthBottomInnerLeftFalse
- | BlockState::AndesiteStairs_WestBottomInnerRightTrue
- | BlockState::AndesiteStairs_WestBottomInnerRightFalse
- | BlockState::RedNetherBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::RedNetherBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::RedNetherBrickStairs_WestBottomInnerRightTrue
- | BlockState::RedNetherBrickStairs_WestBottomInnerRightFalse
- | BlockState::PolishedAndesiteStairs_NorthBottomInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_NorthBottomInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_WestBottomInnerRightTrue
- | BlockState::PolishedAndesiteStairs_WestBottomInnerRightFalse
- | BlockState::DioriteStairs_NorthBottomInnerLeftTrue
- | BlockState::DioriteStairs_NorthBottomInnerLeftFalse
- | BlockState::DioriteStairs_WestBottomInnerRightTrue
- | BlockState::DioriteStairs_WestBottomInnerRightFalse
- | BlockState::CrimsonStairs_NorthBottomInnerLeftTrue
- | BlockState::CrimsonStairs_NorthBottomInnerLeftFalse
- | BlockState::CrimsonStairs_WestBottomInnerRightTrue
- | BlockState::CrimsonStairs_WestBottomInnerRightFalse
- | BlockState::WarpedStairs_NorthBottomInnerLeftTrue
- | BlockState::WarpedStairs_NorthBottomInnerLeftFalse
- | BlockState::WarpedStairs_WestBottomInnerRightTrue
- | BlockState::WarpedStairs_WestBottomInnerRightFalse
- | BlockState::BlackstoneStairs_NorthBottomInnerLeftTrue
- | BlockState::BlackstoneStairs_NorthBottomInnerLeftFalse
- | BlockState::BlackstoneStairs_WestBottomInnerRightTrue
- | BlockState::BlackstoneStairs_WestBottomInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_NorthBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_NorthBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_WestBottomInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_WestBottomInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::ExposedCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::ExposedCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::CutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::CutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::CutCopperStairs_WestBottomInnerRightTrue
- | BlockState::CutCopperStairs_WestBottomInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::WaxedCutCopperStairs_NorthBottomInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_NorthBottomInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_WestBottomInnerRightTrue
- | BlockState::WaxedCutCopperStairs_WestBottomInnerRightFalse
- | BlockState::CobbledDeepslateStairs_NorthBottomInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_NorthBottomInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_WestBottomInnerRightTrue
- | BlockState::CobbledDeepslateStairs_WestBottomInnerRightFalse
- | BlockState::PolishedDeepslateStairs_NorthBottomInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_NorthBottomInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_WestBottomInnerRightTrue
- | BlockState::PolishedDeepslateStairs_WestBottomInnerRightFalse
- | BlockState::DeepslateTileStairs_NorthBottomInnerLeftTrue
- | BlockState::DeepslateTileStairs_NorthBottomInnerLeftFalse
- | BlockState::DeepslateTileStairs_WestBottomInnerRightTrue
- | BlockState::DeepslateTileStairs_WestBottomInnerRightFalse
- | BlockState::DeepslateBrickStairs_NorthBottomInnerLeftTrue
- | BlockState::DeepslateBrickStairs_NorthBottomInnerLeftFalse
- | BlockState::DeepslateBrickStairs_WestBottomInnerRightTrue
- | BlockState::DeepslateBrickStairs_WestBottomInnerRightFalse => &SHAPE42,
- BlockState::OakStairs_NorthBottomInnerRightTrue
- | BlockState::OakStairs_NorthBottomInnerRightFalse
- | BlockState::OakStairs_EastBottomInnerLeftTrue
- | BlockState::OakStairs_EastBottomInnerLeftFalse
- | BlockState::CobblestoneStairs_NorthBottomInnerRightTrue
- | BlockState::CobblestoneStairs_NorthBottomInnerRightFalse
- | BlockState::CobblestoneStairs_EastBottomInnerLeftTrue
- | BlockState::CobblestoneStairs_EastBottomInnerLeftFalse
- | BlockState::BrickStairs_NorthBottomInnerRightTrue
- | BlockState::BrickStairs_NorthBottomInnerRightFalse
- | BlockState::BrickStairs_EastBottomInnerLeftTrue
- | BlockState::BrickStairs_EastBottomInnerLeftFalse
- | BlockState::StoneBrickStairs_NorthBottomInnerRightTrue
- | BlockState::StoneBrickStairs_NorthBottomInnerRightFalse
- | BlockState::StoneBrickStairs_EastBottomInnerLeftTrue
- | BlockState::StoneBrickStairs_EastBottomInnerLeftFalse
- | BlockState::MudBrickStairs_NorthBottomInnerRightTrue
- | BlockState::MudBrickStairs_NorthBottomInnerRightFalse
- | BlockState::MudBrickStairs_EastBottomInnerLeftTrue
- | BlockState::MudBrickStairs_EastBottomInnerLeftFalse
- | BlockState::NetherBrickStairs_NorthBottomInnerRightTrue
- | BlockState::NetherBrickStairs_NorthBottomInnerRightFalse
- | BlockState::NetherBrickStairs_EastBottomInnerLeftTrue
- | BlockState::NetherBrickStairs_EastBottomInnerLeftFalse
- | BlockState::SandstoneStairs_NorthBottomInnerRightTrue
- | BlockState::SandstoneStairs_NorthBottomInnerRightFalse
- | BlockState::SandstoneStairs_EastBottomInnerLeftTrue
- | BlockState::SandstoneStairs_EastBottomInnerLeftFalse
- | BlockState::SpruceStairs_NorthBottomInnerRightTrue
- | BlockState::SpruceStairs_NorthBottomInnerRightFalse
- | BlockState::SpruceStairs_EastBottomInnerLeftTrue
- | BlockState::SpruceStairs_EastBottomInnerLeftFalse
- | BlockState::BirchStairs_NorthBottomInnerRightTrue
- | BlockState::BirchStairs_NorthBottomInnerRightFalse
- | BlockState::BirchStairs_EastBottomInnerLeftTrue
- | BlockState::BirchStairs_EastBottomInnerLeftFalse
- | BlockState::JungleStairs_NorthBottomInnerRightTrue
- | BlockState::JungleStairs_NorthBottomInnerRightFalse
- | BlockState::JungleStairs_EastBottomInnerLeftTrue
- | BlockState::JungleStairs_EastBottomInnerLeftFalse
- | BlockState::QuartzStairs_NorthBottomInnerRightTrue
- | BlockState::QuartzStairs_NorthBottomInnerRightFalse
- | BlockState::QuartzStairs_EastBottomInnerLeftTrue
- | BlockState::QuartzStairs_EastBottomInnerLeftFalse
- | BlockState::AcaciaStairs_NorthBottomInnerRightTrue
- | BlockState::AcaciaStairs_NorthBottomInnerRightFalse
- | BlockState::AcaciaStairs_EastBottomInnerLeftTrue
- | BlockState::AcaciaStairs_EastBottomInnerLeftFalse
- | BlockState::DarkOakStairs_NorthBottomInnerRightTrue
- | BlockState::DarkOakStairs_NorthBottomInnerRightFalse
- | BlockState::DarkOakStairs_EastBottomInnerLeftTrue
- | BlockState::DarkOakStairs_EastBottomInnerLeftFalse
- | BlockState::MangroveStairs_NorthBottomInnerRightTrue
- | BlockState::MangroveStairs_NorthBottomInnerRightFalse
- | BlockState::MangroveStairs_EastBottomInnerLeftTrue
- | BlockState::MangroveStairs_EastBottomInnerLeftFalse
- | BlockState::BambooStairs_NorthBottomInnerRightTrue
- | BlockState::BambooStairs_NorthBottomInnerRightFalse
- | BlockState::BambooStairs_EastBottomInnerLeftTrue
- | BlockState::BambooStairs_EastBottomInnerLeftFalse
- | BlockState::BambooMosaicStairs_NorthBottomInnerRightTrue
- | BlockState::BambooMosaicStairs_NorthBottomInnerRightFalse
- | BlockState::BambooMosaicStairs_EastBottomInnerLeftTrue
- | BlockState::BambooMosaicStairs_EastBottomInnerLeftFalse
- | BlockState::PrismarineStairs_NorthBottomInnerRightTrue
- | BlockState::PrismarineStairs_NorthBottomInnerRightFalse
- | BlockState::PrismarineStairs_EastBottomInnerLeftTrue
- | BlockState::PrismarineStairs_EastBottomInnerLeftFalse
- | BlockState::PrismarineBrickStairs_NorthBottomInnerRightTrue
- | BlockState::PrismarineBrickStairs_NorthBottomInnerRightFalse
- | BlockState::PrismarineBrickStairs_EastBottomInnerLeftTrue
- | BlockState::PrismarineBrickStairs_EastBottomInnerLeftFalse
- | BlockState::DarkPrismarineStairs_NorthBottomInnerRightTrue
- | BlockState::DarkPrismarineStairs_NorthBottomInnerRightFalse
- | BlockState::DarkPrismarineStairs_EastBottomInnerLeftTrue
- | BlockState::DarkPrismarineStairs_EastBottomInnerLeftFalse
- | BlockState::RedSandstoneStairs_NorthBottomInnerRightTrue
- | BlockState::RedSandstoneStairs_NorthBottomInnerRightFalse
- | BlockState::RedSandstoneStairs_EastBottomInnerLeftTrue
- | BlockState::RedSandstoneStairs_EastBottomInnerLeftFalse
- | BlockState::PurpurStairs_NorthBottomInnerRightTrue
- | BlockState::PurpurStairs_NorthBottomInnerRightFalse
- | BlockState::PurpurStairs_EastBottomInnerLeftTrue
- | BlockState::PurpurStairs_EastBottomInnerLeftFalse
- | BlockState::PolishedGraniteStairs_NorthBottomInnerRightTrue
- | BlockState::PolishedGraniteStairs_NorthBottomInnerRightFalse
- | BlockState::PolishedGraniteStairs_EastBottomInnerLeftTrue
- | BlockState::PolishedGraniteStairs_EastBottomInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_NorthBottomInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_NorthBottomInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_EastBottomInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_EastBottomInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_NorthBottomInnerRightTrue
- | BlockState::MossyStoneBrickStairs_NorthBottomInnerRightFalse
- | BlockState::MossyStoneBrickStairs_EastBottomInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_EastBottomInnerLeftFalse
- | BlockState::PolishedDioriteStairs_NorthBottomInnerRightTrue
- | BlockState::PolishedDioriteStairs_NorthBottomInnerRightFalse
- | BlockState::PolishedDioriteStairs_EastBottomInnerLeftTrue
- | BlockState::PolishedDioriteStairs_EastBottomInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_NorthBottomInnerRightTrue
- | BlockState::MossyCobblestoneStairs_NorthBottomInnerRightFalse
- | BlockState::MossyCobblestoneStairs_EastBottomInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_EastBottomInnerLeftFalse
- | BlockState::EndStoneBrickStairs_NorthBottomInnerRightTrue
- | BlockState::EndStoneBrickStairs_NorthBottomInnerRightFalse
- | BlockState::EndStoneBrickStairs_EastBottomInnerLeftTrue
- | BlockState::EndStoneBrickStairs_EastBottomInnerLeftFalse
- | BlockState::StoneStairs_NorthBottomInnerRightTrue
- | BlockState::StoneStairs_NorthBottomInnerRightFalse
- | BlockState::StoneStairs_EastBottomInnerLeftTrue
- | BlockState::StoneStairs_EastBottomInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_NorthBottomInnerRightTrue
- | BlockState::SmoothSandstoneStairs_NorthBottomInnerRightFalse
- | BlockState::SmoothSandstoneStairs_EastBottomInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_EastBottomInnerLeftFalse
- | BlockState::SmoothQuartzStairs_NorthBottomInnerRightTrue
- | BlockState::SmoothQuartzStairs_NorthBottomInnerRightFalse
- | BlockState::SmoothQuartzStairs_EastBottomInnerLeftTrue
- | BlockState::SmoothQuartzStairs_EastBottomInnerLeftFalse
- | BlockState::GraniteStairs_NorthBottomInnerRightTrue
- | BlockState::GraniteStairs_NorthBottomInnerRightFalse
- | BlockState::GraniteStairs_EastBottomInnerLeftTrue
- | BlockState::GraniteStairs_EastBottomInnerLeftFalse
- | BlockState::AndesiteStairs_NorthBottomInnerRightTrue
- | BlockState::AndesiteStairs_NorthBottomInnerRightFalse
- | BlockState::AndesiteStairs_EastBottomInnerLeftTrue
- | BlockState::AndesiteStairs_EastBottomInnerLeftFalse
- | BlockState::RedNetherBrickStairs_NorthBottomInnerRightTrue
- | BlockState::RedNetherBrickStairs_NorthBottomInnerRightFalse
- | BlockState::RedNetherBrickStairs_EastBottomInnerLeftTrue
- | BlockState::RedNetherBrickStairs_EastBottomInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_NorthBottomInnerRightTrue
- | BlockState::PolishedAndesiteStairs_NorthBottomInnerRightFalse
- | BlockState::PolishedAndesiteStairs_EastBottomInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_EastBottomInnerLeftFalse
- | BlockState::DioriteStairs_NorthBottomInnerRightTrue
- | BlockState::DioriteStairs_NorthBottomInnerRightFalse
- | BlockState::DioriteStairs_EastBottomInnerLeftTrue
- | BlockState::DioriteStairs_EastBottomInnerLeftFalse
- | BlockState::CrimsonStairs_NorthBottomInnerRightTrue
- | BlockState::CrimsonStairs_NorthBottomInnerRightFalse
- | BlockState::CrimsonStairs_EastBottomInnerLeftTrue
- | BlockState::CrimsonStairs_EastBottomInnerLeftFalse
- | BlockState::WarpedStairs_NorthBottomInnerRightTrue
- | BlockState::WarpedStairs_NorthBottomInnerRightFalse
- | BlockState::WarpedStairs_EastBottomInnerLeftTrue
- | BlockState::WarpedStairs_EastBottomInnerLeftFalse
- | BlockState::BlackstoneStairs_NorthBottomInnerRightTrue
- | BlockState::BlackstoneStairs_NorthBottomInnerRightFalse
- | BlockState::BlackstoneStairs_EastBottomInnerLeftTrue
- | BlockState::BlackstoneStairs_EastBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_NorthBottomInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_NorthBottomInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_EastBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_EastBottomInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::ExposedCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::ExposedCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::CutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::CutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::CutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::CutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_NorthBottomInnerRightTrue
- | BlockState::WaxedCutCopperStairs_NorthBottomInnerRightFalse
- | BlockState::WaxedCutCopperStairs_EastBottomInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_EastBottomInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_NorthBottomInnerRightTrue
- | BlockState::CobbledDeepslateStairs_NorthBottomInnerRightFalse
- | BlockState::CobbledDeepslateStairs_EastBottomInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_EastBottomInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_NorthBottomInnerRightTrue
- | BlockState::PolishedDeepslateStairs_NorthBottomInnerRightFalse
- | BlockState::PolishedDeepslateStairs_EastBottomInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_EastBottomInnerLeftFalse
- | BlockState::DeepslateTileStairs_NorthBottomInnerRightTrue
- | BlockState::DeepslateTileStairs_NorthBottomInnerRightFalse
- | BlockState::DeepslateTileStairs_EastBottomInnerLeftTrue
- | BlockState::DeepslateTileStairs_EastBottomInnerLeftFalse
- | BlockState::DeepslateBrickStairs_NorthBottomInnerRightTrue
- | BlockState::DeepslateBrickStairs_NorthBottomInnerRightFalse
- | BlockState::DeepslateBrickStairs_EastBottomInnerLeftTrue
- | BlockState::DeepslateBrickStairs_EastBottomInnerLeftFalse => &SHAPE44,
- BlockState::OakStairs_NorthBottomOuterLeftTrue
- | BlockState::OakStairs_NorthBottomOuterLeftFalse
- | BlockState::OakStairs_WestBottomOuterRightTrue
- | BlockState::OakStairs_WestBottomOuterRightFalse
- | BlockState::CobblestoneStairs_NorthBottomOuterLeftTrue
- | BlockState::CobblestoneStairs_NorthBottomOuterLeftFalse
- | BlockState::CobblestoneStairs_WestBottomOuterRightTrue
- | BlockState::CobblestoneStairs_WestBottomOuterRightFalse
- | BlockState::BrickStairs_NorthBottomOuterLeftTrue
- | BlockState::BrickStairs_NorthBottomOuterLeftFalse
- | BlockState::BrickStairs_WestBottomOuterRightTrue
- | BlockState::BrickStairs_WestBottomOuterRightFalse
- | BlockState::StoneBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::StoneBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::StoneBrickStairs_WestBottomOuterRightTrue
- | BlockState::StoneBrickStairs_WestBottomOuterRightFalse
- | BlockState::MudBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::MudBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::MudBrickStairs_WestBottomOuterRightTrue
- | BlockState::MudBrickStairs_WestBottomOuterRightFalse
- | BlockState::NetherBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::NetherBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::NetherBrickStairs_WestBottomOuterRightTrue
- | BlockState::NetherBrickStairs_WestBottomOuterRightFalse
- | BlockState::SandstoneStairs_NorthBottomOuterLeftTrue
- | BlockState::SandstoneStairs_NorthBottomOuterLeftFalse
- | BlockState::SandstoneStairs_WestBottomOuterRightTrue
- | BlockState::SandstoneStairs_WestBottomOuterRightFalse
- | BlockState::SpruceStairs_NorthBottomOuterLeftTrue
- | BlockState::SpruceStairs_NorthBottomOuterLeftFalse
- | BlockState::SpruceStairs_WestBottomOuterRightTrue
- | BlockState::SpruceStairs_WestBottomOuterRightFalse
- | BlockState::BirchStairs_NorthBottomOuterLeftTrue
- | BlockState::BirchStairs_NorthBottomOuterLeftFalse
- | BlockState::BirchStairs_WestBottomOuterRightTrue
- | BlockState::BirchStairs_WestBottomOuterRightFalse
- | BlockState::JungleStairs_NorthBottomOuterLeftTrue
- | BlockState::JungleStairs_NorthBottomOuterLeftFalse
- | BlockState::JungleStairs_WestBottomOuterRightTrue
- | BlockState::JungleStairs_WestBottomOuterRightFalse
- | BlockState::QuartzStairs_NorthBottomOuterLeftTrue
- | BlockState::QuartzStairs_NorthBottomOuterLeftFalse
- | BlockState::QuartzStairs_WestBottomOuterRightTrue
- | BlockState::QuartzStairs_WestBottomOuterRightFalse
- | BlockState::AcaciaStairs_NorthBottomOuterLeftTrue
- | BlockState::AcaciaStairs_NorthBottomOuterLeftFalse
- | BlockState::AcaciaStairs_WestBottomOuterRightTrue
- | BlockState::AcaciaStairs_WestBottomOuterRightFalse
- | BlockState::DarkOakStairs_NorthBottomOuterLeftTrue
- | BlockState::DarkOakStairs_NorthBottomOuterLeftFalse
- | BlockState::DarkOakStairs_WestBottomOuterRightTrue
- | BlockState::DarkOakStairs_WestBottomOuterRightFalse
- | BlockState::MangroveStairs_NorthBottomOuterLeftTrue
- | BlockState::MangroveStairs_NorthBottomOuterLeftFalse
- | BlockState::MangroveStairs_WestBottomOuterRightTrue
- | BlockState::MangroveStairs_WestBottomOuterRightFalse
- | BlockState::BambooStairs_NorthBottomOuterLeftTrue
- | BlockState::BambooStairs_NorthBottomOuterLeftFalse
- | BlockState::BambooStairs_WestBottomOuterRightTrue
- | BlockState::BambooStairs_WestBottomOuterRightFalse
- | BlockState::BambooMosaicStairs_NorthBottomOuterLeftTrue
- | BlockState::BambooMosaicStairs_NorthBottomOuterLeftFalse
- | BlockState::BambooMosaicStairs_WestBottomOuterRightTrue
- | BlockState::BambooMosaicStairs_WestBottomOuterRightFalse
- | BlockState::PrismarineStairs_NorthBottomOuterLeftTrue
- | BlockState::PrismarineStairs_NorthBottomOuterLeftFalse
- | BlockState::PrismarineStairs_WestBottomOuterRightTrue
- | BlockState::PrismarineStairs_WestBottomOuterRightFalse
- | BlockState::PrismarineBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::PrismarineBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::PrismarineBrickStairs_WestBottomOuterRightTrue
- | BlockState::PrismarineBrickStairs_WestBottomOuterRightFalse
- | BlockState::DarkPrismarineStairs_NorthBottomOuterLeftTrue
- | BlockState::DarkPrismarineStairs_NorthBottomOuterLeftFalse
- | BlockState::DarkPrismarineStairs_WestBottomOuterRightTrue
- | BlockState::DarkPrismarineStairs_WestBottomOuterRightFalse
- | BlockState::RedSandstoneStairs_NorthBottomOuterLeftTrue
- | BlockState::RedSandstoneStairs_NorthBottomOuterLeftFalse
- | BlockState::RedSandstoneStairs_WestBottomOuterRightTrue
- | BlockState::RedSandstoneStairs_WestBottomOuterRightFalse
- | BlockState::PurpurStairs_NorthBottomOuterLeftTrue
- | BlockState::PurpurStairs_NorthBottomOuterLeftFalse
- | BlockState::PurpurStairs_WestBottomOuterRightTrue
- | BlockState::PurpurStairs_WestBottomOuterRightFalse
- | BlockState::PolishedGraniteStairs_NorthBottomOuterLeftTrue
- | BlockState::PolishedGraniteStairs_NorthBottomOuterLeftFalse
- | BlockState::PolishedGraniteStairs_WestBottomOuterRightTrue
- | BlockState::PolishedGraniteStairs_WestBottomOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_NorthBottomOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_NorthBottomOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_WestBottomOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_WestBottomOuterRightFalse
- | BlockState::MossyStoneBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_WestBottomOuterRightTrue
- | BlockState::MossyStoneBrickStairs_WestBottomOuterRightFalse
- | BlockState::PolishedDioriteStairs_NorthBottomOuterLeftTrue
- | BlockState::PolishedDioriteStairs_NorthBottomOuterLeftFalse
- | BlockState::PolishedDioriteStairs_WestBottomOuterRightTrue
- | BlockState::PolishedDioriteStairs_WestBottomOuterRightFalse
- | BlockState::MossyCobblestoneStairs_NorthBottomOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_NorthBottomOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_WestBottomOuterRightTrue
- | BlockState::MossyCobblestoneStairs_WestBottomOuterRightFalse
- | BlockState::EndStoneBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::EndStoneBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::EndStoneBrickStairs_WestBottomOuterRightTrue
- | BlockState::EndStoneBrickStairs_WestBottomOuterRightFalse
- | BlockState::StoneStairs_NorthBottomOuterLeftTrue
- | BlockState::StoneStairs_NorthBottomOuterLeftFalse
- | BlockState::StoneStairs_WestBottomOuterRightTrue
- | BlockState::StoneStairs_WestBottomOuterRightFalse
- | BlockState::SmoothSandstoneStairs_NorthBottomOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_NorthBottomOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_WestBottomOuterRightTrue
- | BlockState::SmoothSandstoneStairs_WestBottomOuterRightFalse
- | BlockState::SmoothQuartzStairs_NorthBottomOuterLeftTrue
- | BlockState::SmoothQuartzStairs_NorthBottomOuterLeftFalse
- | BlockState::SmoothQuartzStairs_WestBottomOuterRightTrue
- | BlockState::SmoothQuartzStairs_WestBottomOuterRightFalse
- | BlockState::GraniteStairs_NorthBottomOuterLeftTrue
- | BlockState::GraniteStairs_NorthBottomOuterLeftFalse
- | BlockState::GraniteStairs_WestBottomOuterRightTrue
- | BlockState::GraniteStairs_WestBottomOuterRightFalse
- | BlockState::AndesiteStairs_NorthBottomOuterLeftTrue
- | BlockState::AndesiteStairs_NorthBottomOuterLeftFalse
- | BlockState::AndesiteStairs_WestBottomOuterRightTrue
- | BlockState::AndesiteStairs_WestBottomOuterRightFalse
- | BlockState::RedNetherBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::RedNetherBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::RedNetherBrickStairs_WestBottomOuterRightTrue
- | BlockState::RedNetherBrickStairs_WestBottomOuterRightFalse
- | BlockState::PolishedAndesiteStairs_NorthBottomOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_NorthBottomOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_WestBottomOuterRightTrue
- | BlockState::PolishedAndesiteStairs_WestBottomOuterRightFalse
- | BlockState::DioriteStairs_NorthBottomOuterLeftTrue
- | BlockState::DioriteStairs_NorthBottomOuterLeftFalse
- | BlockState::DioriteStairs_WestBottomOuterRightTrue
- | BlockState::DioriteStairs_WestBottomOuterRightFalse
- | BlockState::CrimsonStairs_NorthBottomOuterLeftTrue
- | BlockState::CrimsonStairs_NorthBottomOuterLeftFalse
- | BlockState::CrimsonStairs_WestBottomOuterRightTrue
- | BlockState::CrimsonStairs_WestBottomOuterRightFalse
- | BlockState::WarpedStairs_NorthBottomOuterLeftTrue
- | BlockState::WarpedStairs_NorthBottomOuterLeftFalse
- | BlockState::WarpedStairs_WestBottomOuterRightTrue
- | BlockState::WarpedStairs_WestBottomOuterRightFalse
- | BlockState::BlackstoneStairs_NorthBottomOuterLeftTrue
- | BlockState::BlackstoneStairs_NorthBottomOuterLeftFalse
- | BlockState::BlackstoneStairs_WestBottomOuterRightTrue
- | BlockState::BlackstoneStairs_WestBottomOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_NorthBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_NorthBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_WestBottomOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_WestBottomOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::ExposedCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::ExposedCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::CutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::CutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::CutCopperStairs_WestBottomOuterRightTrue
- | BlockState::CutCopperStairs_WestBottomOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::WaxedCutCopperStairs_NorthBottomOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_NorthBottomOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_WestBottomOuterRightTrue
- | BlockState::WaxedCutCopperStairs_WestBottomOuterRightFalse
- | BlockState::CobbledDeepslateStairs_NorthBottomOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_NorthBottomOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_WestBottomOuterRightTrue
- | BlockState::CobbledDeepslateStairs_WestBottomOuterRightFalse
- | BlockState::PolishedDeepslateStairs_NorthBottomOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_NorthBottomOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_WestBottomOuterRightTrue
- | BlockState::PolishedDeepslateStairs_WestBottomOuterRightFalse
- | BlockState::DeepslateTileStairs_NorthBottomOuterLeftTrue
- | BlockState::DeepslateTileStairs_NorthBottomOuterLeftFalse
- | BlockState::DeepslateTileStairs_WestBottomOuterRightTrue
- | BlockState::DeepslateTileStairs_WestBottomOuterRightFalse
- | BlockState::DeepslateBrickStairs_NorthBottomOuterLeftTrue
- | BlockState::DeepslateBrickStairs_NorthBottomOuterLeftFalse
- | BlockState::DeepslateBrickStairs_WestBottomOuterRightTrue
- | BlockState::DeepslateBrickStairs_WestBottomOuterRightFalse => &SHAPE46,
- BlockState::OakStairs_NorthBottomOuterRightTrue
- | BlockState::OakStairs_NorthBottomOuterRightFalse
- | BlockState::OakStairs_EastBottomOuterLeftTrue
- | BlockState::OakStairs_EastBottomOuterLeftFalse
- | BlockState::CobblestoneStairs_NorthBottomOuterRightTrue
- | BlockState::CobblestoneStairs_NorthBottomOuterRightFalse
- | BlockState::CobblestoneStairs_EastBottomOuterLeftTrue
- | BlockState::CobblestoneStairs_EastBottomOuterLeftFalse
- | BlockState::BrickStairs_NorthBottomOuterRightTrue
- | BlockState::BrickStairs_NorthBottomOuterRightFalse
- | BlockState::BrickStairs_EastBottomOuterLeftTrue
- | BlockState::BrickStairs_EastBottomOuterLeftFalse
- | BlockState::StoneBrickStairs_NorthBottomOuterRightTrue
- | BlockState::StoneBrickStairs_NorthBottomOuterRightFalse
- | BlockState::StoneBrickStairs_EastBottomOuterLeftTrue
- | BlockState::StoneBrickStairs_EastBottomOuterLeftFalse
- | BlockState::MudBrickStairs_NorthBottomOuterRightTrue
- | BlockState::MudBrickStairs_NorthBottomOuterRightFalse
- | BlockState::MudBrickStairs_EastBottomOuterLeftTrue
- | BlockState::MudBrickStairs_EastBottomOuterLeftFalse
- | BlockState::NetherBrickStairs_NorthBottomOuterRightTrue
- | BlockState::NetherBrickStairs_NorthBottomOuterRightFalse
- | BlockState::NetherBrickStairs_EastBottomOuterLeftTrue
- | BlockState::NetherBrickStairs_EastBottomOuterLeftFalse
- | BlockState::SandstoneStairs_NorthBottomOuterRightTrue
- | BlockState::SandstoneStairs_NorthBottomOuterRightFalse
- | BlockState::SandstoneStairs_EastBottomOuterLeftTrue
- | BlockState::SandstoneStairs_EastBottomOuterLeftFalse
- | BlockState::SpruceStairs_NorthBottomOuterRightTrue
- | BlockState::SpruceStairs_NorthBottomOuterRightFalse
- | BlockState::SpruceStairs_EastBottomOuterLeftTrue
- | BlockState::SpruceStairs_EastBottomOuterLeftFalse
- | BlockState::BirchStairs_NorthBottomOuterRightTrue
- | BlockState::BirchStairs_NorthBottomOuterRightFalse
- | BlockState::BirchStairs_EastBottomOuterLeftTrue
- | BlockState::BirchStairs_EastBottomOuterLeftFalse
- | BlockState::JungleStairs_NorthBottomOuterRightTrue
- | BlockState::JungleStairs_NorthBottomOuterRightFalse
- | BlockState::JungleStairs_EastBottomOuterLeftTrue
- | BlockState::JungleStairs_EastBottomOuterLeftFalse
- | BlockState::QuartzStairs_NorthBottomOuterRightTrue
- | BlockState::QuartzStairs_NorthBottomOuterRightFalse
- | BlockState::QuartzStairs_EastBottomOuterLeftTrue
- | BlockState::QuartzStairs_EastBottomOuterLeftFalse
- | BlockState::AcaciaStairs_NorthBottomOuterRightTrue
- | BlockState::AcaciaStairs_NorthBottomOuterRightFalse
- | BlockState::AcaciaStairs_EastBottomOuterLeftTrue
- | BlockState::AcaciaStairs_EastBottomOuterLeftFalse
- | BlockState::DarkOakStairs_NorthBottomOuterRightTrue
- | BlockState::DarkOakStairs_NorthBottomOuterRightFalse
- | BlockState::DarkOakStairs_EastBottomOuterLeftTrue
- | BlockState::DarkOakStairs_EastBottomOuterLeftFalse
- | BlockState::MangroveStairs_NorthBottomOuterRightTrue
- | BlockState::MangroveStairs_NorthBottomOuterRightFalse
- | BlockState::MangroveStairs_EastBottomOuterLeftTrue
- | BlockState::MangroveStairs_EastBottomOuterLeftFalse
- | BlockState::BambooStairs_NorthBottomOuterRightTrue
- | BlockState::BambooStairs_NorthBottomOuterRightFalse
- | BlockState::BambooStairs_EastBottomOuterLeftTrue
- | BlockState::BambooStairs_EastBottomOuterLeftFalse
- | BlockState::BambooMosaicStairs_NorthBottomOuterRightTrue
- | BlockState::BambooMosaicStairs_NorthBottomOuterRightFalse
- | BlockState::BambooMosaicStairs_EastBottomOuterLeftTrue
- | BlockState::BambooMosaicStairs_EastBottomOuterLeftFalse
- | BlockState::PrismarineStairs_NorthBottomOuterRightTrue
- | BlockState::PrismarineStairs_NorthBottomOuterRightFalse
- | BlockState::PrismarineStairs_EastBottomOuterLeftTrue
- | BlockState::PrismarineStairs_EastBottomOuterLeftFalse
- | BlockState::PrismarineBrickStairs_NorthBottomOuterRightTrue
- | BlockState::PrismarineBrickStairs_NorthBottomOuterRightFalse
- | BlockState::PrismarineBrickStairs_EastBottomOuterLeftTrue
- | BlockState::PrismarineBrickStairs_EastBottomOuterLeftFalse
- | BlockState::DarkPrismarineStairs_NorthBottomOuterRightTrue
- | BlockState::DarkPrismarineStairs_NorthBottomOuterRightFalse
- | BlockState::DarkPrismarineStairs_EastBottomOuterLeftTrue
- | BlockState::DarkPrismarineStairs_EastBottomOuterLeftFalse
- | BlockState::RedSandstoneStairs_NorthBottomOuterRightTrue
- | BlockState::RedSandstoneStairs_NorthBottomOuterRightFalse
- | BlockState::RedSandstoneStairs_EastBottomOuterLeftTrue
- | BlockState::RedSandstoneStairs_EastBottomOuterLeftFalse
- | BlockState::PurpurStairs_NorthBottomOuterRightTrue
- | BlockState::PurpurStairs_NorthBottomOuterRightFalse
- | BlockState::PurpurStairs_EastBottomOuterLeftTrue
- | BlockState::PurpurStairs_EastBottomOuterLeftFalse
- | BlockState::PolishedGraniteStairs_NorthBottomOuterRightTrue
- | BlockState::PolishedGraniteStairs_NorthBottomOuterRightFalse
- | BlockState::PolishedGraniteStairs_EastBottomOuterLeftTrue
- | BlockState::PolishedGraniteStairs_EastBottomOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_NorthBottomOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_NorthBottomOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_EastBottomOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_EastBottomOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_NorthBottomOuterRightTrue
- | BlockState::MossyStoneBrickStairs_NorthBottomOuterRightFalse
- | BlockState::MossyStoneBrickStairs_EastBottomOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_EastBottomOuterLeftFalse
- | BlockState::PolishedDioriteStairs_NorthBottomOuterRightTrue
- | BlockState::PolishedDioriteStairs_NorthBottomOuterRightFalse
- | BlockState::PolishedDioriteStairs_EastBottomOuterLeftTrue
- | BlockState::PolishedDioriteStairs_EastBottomOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_NorthBottomOuterRightTrue
- | BlockState::MossyCobblestoneStairs_NorthBottomOuterRightFalse
- | BlockState::MossyCobblestoneStairs_EastBottomOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_EastBottomOuterLeftFalse
- | BlockState::EndStoneBrickStairs_NorthBottomOuterRightTrue
- | BlockState::EndStoneBrickStairs_NorthBottomOuterRightFalse
- | BlockState::EndStoneBrickStairs_EastBottomOuterLeftTrue
- | BlockState::EndStoneBrickStairs_EastBottomOuterLeftFalse
- | BlockState::StoneStairs_NorthBottomOuterRightTrue
- | BlockState::StoneStairs_NorthBottomOuterRightFalse
- | BlockState::StoneStairs_EastBottomOuterLeftTrue
- | BlockState::StoneStairs_EastBottomOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_NorthBottomOuterRightTrue
- | BlockState::SmoothSandstoneStairs_NorthBottomOuterRightFalse
- | BlockState::SmoothSandstoneStairs_EastBottomOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_EastBottomOuterLeftFalse
- | BlockState::SmoothQuartzStairs_NorthBottomOuterRightTrue
- | BlockState::SmoothQuartzStairs_NorthBottomOuterRightFalse
- | BlockState::SmoothQuartzStairs_EastBottomOuterLeftTrue
- | BlockState::SmoothQuartzStairs_EastBottomOuterLeftFalse
- | BlockState::GraniteStairs_NorthBottomOuterRightTrue
- | BlockState::GraniteStairs_NorthBottomOuterRightFalse
- | BlockState::GraniteStairs_EastBottomOuterLeftTrue
- | BlockState::GraniteStairs_EastBottomOuterLeftFalse
- | BlockState::AndesiteStairs_NorthBottomOuterRightTrue
- | BlockState::AndesiteStairs_NorthBottomOuterRightFalse
- | BlockState::AndesiteStairs_EastBottomOuterLeftTrue
- | BlockState::AndesiteStairs_EastBottomOuterLeftFalse
- | BlockState::RedNetherBrickStairs_NorthBottomOuterRightTrue
- | BlockState::RedNetherBrickStairs_NorthBottomOuterRightFalse
- | BlockState::RedNetherBrickStairs_EastBottomOuterLeftTrue
- | BlockState::RedNetherBrickStairs_EastBottomOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_NorthBottomOuterRightTrue
- | BlockState::PolishedAndesiteStairs_NorthBottomOuterRightFalse
- | BlockState::PolishedAndesiteStairs_EastBottomOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_EastBottomOuterLeftFalse
- | BlockState::DioriteStairs_NorthBottomOuterRightTrue
- | BlockState::DioriteStairs_NorthBottomOuterRightFalse
- | BlockState::DioriteStairs_EastBottomOuterLeftTrue
- | BlockState::DioriteStairs_EastBottomOuterLeftFalse
- | BlockState::CrimsonStairs_NorthBottomOuterRightTrue
- | BlockState::CrimsonStairs_NorthBottomOuterRightFalse
- | BlockState::CrimsonStairs_EastBottomOuterLeftTrue
- | BlockState::CrimsonStairs_EastBottomOuterLeftFalse
- | BlockState::WarpedStairs_NorthBottomOuterRightTrue
- | BlockState::WarpedStairs_NorthBottomOuterRightFalse
- | BlockState::WarpedStairs_EastBottomOuterLeftTrue
- | BlockState::WarpedStairs_EastBottomOuterLeftFalse
- | BlockState::BlackstoneStairs_NorthBottomOuterRightTrue
- | BlockState::BlackstoneStairs_NorthBottomOuterRightFalse
- | BlockState::BlackstoneStairs_EastBottomOuterLeftTrue
- | BlockState::BlackstoneStairs_EastBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_NorthBottomOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_NorthBottomOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_NorthBottomOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_EastBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_EastBottomOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::ExposedCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::ExposedCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::CutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::CutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::CutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::CutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_NorthBottomOuterRightTrue
- | BlockState::WaxedCutCopperStairs_NorthBottomOuterRightFalse
- | BlockState::WaxedCutCopperStairs_EastBottomOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_EastBottomOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_NorthBottomOuterRightTrue
- | BlockState::CobbledDeepslateStairs_NorthBottomOuterRightFalse
- | BlockState::CobbledDeepslateStairs_EastBottomOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_EastBottomOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_NorthBottomOuterRightTrue
- | BlockState::PolishedDeepslateStairs_NorthBottomOuterRightFalse
- | BlockState::PolishedDeepslateStairs_EastBottomOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_EastBottomOuterLeftFalse
- | BlockState::DeepslateTileStairs_NorthBottomOuterRightTrue
- | BlockState::DeepslateTileStairs_NorthBottomOuterRightFalse
- | BlockState::DeepslateTileStairs_EastBottomOuterLeftTrue
- | BlockState::DeepslateTileStairs_EastBottomOuterLeftFalse
- | BlockState::DeepslateBrickStairs_NorthBottomOuterRightTrue
- | BlockState::DeepslateBrickStairs_NorthBottomOuterRightFalse
- | BlockState::DeepslateBrickStairs_EastBottomOuterLeftTrue
- | BlockState::DeepslateBrickStairs_EastBottomOuterLeftFalse => &SHAPE47,
- BlockState::OakStairs_SouthTopStraightTrue
- | BlockState::OakStairs_SouthTopStraightFalse
- | BlockState::CobblestoneStairs_SouthTopStraightTrue
- | BlockState::CobblestoneStairs_SouthTopStraightFalse
- | BlockState::BrickStairs_SouthTopStraightTrue
- | BlockState::BrickStairs_SouthTopStraightFalse
- | BlockState::StoneBrickStairs_SouthTopStraightTrue
- | BlockState::StoneBrickStairs_SouthTopStraightFalse
- | BlockState::MudBrickStairs_SouthTopStraightTrue
- | BlockState::MudBrickStairs_SouthTopStraightFalse
- | BlockState::NetherBrickStairs_SouthTopStraightTrue
- | BlockState::NetherBrickStairs_SouthTopStraightFalse
- | BlockState::SandstoneStairs_SouthTopStraightTrue
- | BlockState::SandstoneStairs_SouthTopStraightFalse
- | BlockState::SpruceStairs_SouthTopStraightTrue
- | BlockState::SpruceStairs_SouthTopStraightFalse
- | BlockState::BirchStairs_SouthTopStraightTrue
- | BlockState::BirchStairs_SouthTopStraightFalse
- | BlockState::JungleStairs_SouthTopStraightTrue
- | BlockState::JungleStairs_SouthTopStraightFalse
- | BlockState::QuartzStairs_SouthTopStraightTrue
- | BlockState::QuartzStairs_SouthTopStraightFalse
- | BlockState::AcaciaStairs_SouthTopStraightTrue
- | BlockState::AcaciaStairs_SouthTopStraightFalse
- | BlockState::DarkOakStairs_SouthTopStraightTrue
- | BlockState::DarkOakStairs_SouthTopStraightFalse
- | BlockState::MangroveStairs_SouthTopStraightTrue
- | BlockState::MangroveStairs_SouthTopStraightFalse
- | BlockState::BambooStairs_SouthTopStraightTrue
- | BlockState::BambooStairs_SouthTopStraightFalse
- | BlockState::BambooMosaicStairs_SouthTopStraightTrue
- | BlockState::BambooMosaicStairs_SouthTopStraightFalse
- | BlockState::PrismarineStairs_SouthTopStraightTrue
- | BlockState::PrismarineStairs_SouthTopStraightFalse
- | BlockState::PrismarineBrickStairs_SouthTopStraightTrue
- | BlockState::PrismarineBrickStairs_SouthTopStraightFalse
- | BlockState::DarkPrismarineStairs_SouthTopStraightTrue
- | BlockState::DarkPrismarineStairs_SouthTopStraightFalse
- | BlockState::RedSandstoneStairs_SouthTopStraightTrue
- | BlockState::RedSandstoneStairs_SouthTopStraightFalse
- | BlockState::PurpurStairs_SouthTopStraightTrue
- | BlockState::PurpurStairs_SouthTopStraightFalse
- | BlockState::PolishedGraniteStairs_SouthTopStraightTrue
- | BlockState::PolishedGraniteStairs_SouthTopStraightFalse
- | BlockState::SmoothRedSandstoneStairs_SouthTopStraightTrue
- | BlockState::SmoothRedSandstoneStairs_SouthTopStraightFalse
- | BlockState::MossyStoneBrickStairs_SouthTopStraightTrue
- | BlockState::MossyStoneBrickStairs_SouthTopStraightFalse
- | BlockState::PolishedDioriteStairs_SouthTopStraightTrue
- | BlockState::PolishedDioriteStairs_SouthTopStraightFalse
- | BlockState::MossyCobblestoneStairs_SouthTopStraightTrue
- | BlockState::MossyCobblestoneStairs_SouthTopStraightFalse
- | BlockState::EndStoneBrickStairs_SouthTopStraightTrue
- | BlockState::EndStoneBrickStairs_SouthTopStraightFalse
- | BlockState::StoneStairs_SouthTopStraightTrue
- | BlockState::StoneStairs_SouthTopStraightFalse
- | BlockState::SmoothSandstoneStairs_SouthTopStraightTrue
- | BlockState::SmoothSandstoneStairs_SouthTopStraightFalse
- | BlockState::SmoothQuartzStairs_SouthTopStraightTrue
- | BlockState::SmoothQuartzStairs_SouthTopStraightFalse
- | BlockState::GraniteStairs_SouthTopStraightTrue
- | BlockState::GraniteStairs_SouthTopStraightFalse
- | BlockState::AndesiteStairs_SouthTopStraightTrue
- | BlockState::AndesiteStairs_SouthTopStraightFalse
- | BlockState::RedNetherBrickStairs_SouthTopStraightTrue
- | BlockState::RedNetherBrickStairs_SouthTopStraightFalse
- | BlockState::PolishedAndesiteStairs_SouthTopStraightTrue
- | BlockState::PolishedAndesiteStairs_SouthTopStraightFalse
- | BlockState::DioriteStairs_SouthTopStraightTrue
- | BlockState::DioriteStairs_SouthTopStraightFalse
- | BlockState::CrimsonStairs_SouthTopStraightTrue
- | BlockState::CrimsonStairs_SouthTopStraightFalse
- | BlockState::WarpedStairs_SouthTopStraightTrue
- | BlockState::WarpedStairs_SouthTopStraightFalse
- | BlockState::BlackstoneStairs_SouthTopStraightTrue
- | BlockState::BlackstoneStairs_SouthTopStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopStraightFalse
- | BlockState::PolishedBlackstoneStairs_SouthTopStraightTrue
- | BlockState::PolishedBlackstoneStairs_SouthTopStraightFalse
- | BlockState::OxidizedCutCopperStairs_SouthTopStraightTrue
- | BlockState::OxidizedCutCopperStairs_SouthTopStraightFalse
- | BlockState::WeatheredCutCopperStairs_SouthTopStraightTrue
- | BlockState::WeatheredCutCopperStairs_SouthTopStraightFalse
- | BlockState::ExposedCutCopperStairs_SouthTopStraightTrue
- | BlockState::ExposedCutCopperStairs_SouthTopStraightFalse
- | BlockState::CutCopperStairs_SouthTopStraightTrue
- | BlockState::CutCopperStairs_SouthTopStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthTopStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthTopStraightFalse
- | BlockState::WaxedCutCopperStairs_SouthTopStraightTrue
- | BlockState::WaxedCutCopperStairs_SouthTopStraightFalse
- | BlockState::CobbledDeepslateStairs_SouthTopStraightTrue
- | BlockState::CobbledDeepslateStairs_SouthTopStraightFalse
- | BlockState::PolishedDeepslateStairs_SouthTopStraightTrue
- | BlockState::PolishedDeepslateStairs_SouthTopStraightFalse
- | BlockState::DeepslateTileStairs_SouthTopStraightTrue
- | BlockState::DeepslateTileStairs_SouthTopStraightFalse
- | BlockState::DeepslateBrickStairs_SouthTopStraightTrue
- | BlockState::DeepslateBrickStairs_SouthTopStraightFalse => &SHAPE48,
- BlockState::OakStairs_SouthTopInnerLeftTrue
- | BlockState::OakStairs_SouthTopInnerLeftFalse
- | BlockState::OakStairs_EastTopInnerRightTrue
- | BlockState::OakStairs_EastTopInnerRightFalse
- | BlockState::CobblestoneStairs_SouthTopInnerLeftTrue
- | BlockState::CobblestoneStairs_SouthTopInnerLeftFalse
- | BlockState::CobblestoneStairs_EastTopInnerRightTrue
- | BlockState::CobblestoneStairs_EastTopInnerRightFalse
- | BlockState::BrickStairs_SouthTopInnerLeftTrue
- | BlockState::BrickStairs_SouthTopInnerLeftFalse
- | BlockState::BrickStairs_EastTopInnerRightTrue
- | BlockState::BrickStairs_EastTopInnerRightFalse
- | BlockState::StoneBrickStairs_SouthTopInnerLeftTrue
- | BlockState::StoneBrickStairs_SouthTopInnerLeftFalse
- | BlockState::StoneBrickStairs_EastTopInnerRightTrue
- | BlockState::StoneBrickStairs_EastTopInnerRightFalse
- | BlockState::MudBrickStairs_SouthTopInnerLeftTrue
- | BlockState::MudBrickStairs_SouthTopInnerLeftFalse
- | BlockState::MudBrickStairs_EastTopInnerRightTrue
- | BlockState::MudBrickStairs_EastTopInnerRightFalse
- | BlockState::NetherBrickStairs_SouthTopInnerLeftTrue
- | BlockState::NetherBrickStairs_SouthTopInnerLeftFalse
- | BlockState::NetherBrickStairs_EastTopInnerRightTrue
- | BlockState::NetherBrickStairs_EastTopInnerRightFalse
- | BlockState::SandstoneStairs_SouthTopInnerLeftTrue
- | BlockState::SandstoneStairs_SouthTopInnerLeftFalse
- | BlockState::SandstoneStairs_EastTopInnerRightTrue
- | BlockState::SandstoneStairs_EastTopInnerRightFalse
- | BlockState::SpruceStairs_SouthTopInnerLeftTrue
- | BlockState::SpruceStairs_SouthTopInnerLeftFalse
- | BlockState::SpruceStairs_EastTopInnerRightTrue
- | BlockState::SpruceStairs_EastTopInnerRightFalse
- | BlockState::BirchStairs_SouthTopInnerLeftTrue
- | BlockState::BirchStairs_SouthTopInnerLeftFalse
- | BlockState::BirchStairs_EastTopInnerRightTrue
- | BlockState::BirchStairs_EastTopInnerRightFalse
- | BlockState::JungleStairs_SouthTopInnerLeftTrue
- | BlockState::JungleStairs_SouthTopInnerLeftFalse
- | BlockState::JungleStairs_EastTopInnerRightTrue
- | BlockState::JungleStairs_EastTopInnerRightFalse
- | BlockState::QuartzStairs_SouthTopInnerLeftTrue
- | BlockState::QuartzStairs_SouthTopInnerLeftFalse
- | BlockState::QuartzStairs_EastTopInnerRightTrue
- | BlockState::QuartzStairs_EastTopInnerRightFalse
- | BlockState::AcaciaStairs_SouthTopInnerLeftTrue
- | BlockState::AcaciaStairs_SouthTopInnerLeftFalse
- | BlockState::AcaciaStairs_EastTopInnerRightTrue
- | BlockState::AcaciaStairs_EastTopInnerRightFalse
- | BlockState::DarkOakStairs_SouthTopInnerLeftTrue
- | BlockState::DarkOakStairs_SouthTopInnerLeftFalse
- | BlockState::DarkOakStairs_EastTopInnerRightTrue
- | BlockState::DarkOakStairs_EastTopInnerRightFalse
- | BlockState::MangroveStairs_SouthTopInnerLeftTrue
- | BlockState::MangroveStairs_SouthTopInnerLeftFalse
- | BlockState::MangroveStairs_EastTopInnerRightTrue
- | BlockState::MangroveStairs_EastTopInnerRightFalse
- | BlockState::BambooStairs_SouthTopInnerLeftTrue
- | BlockState::BambooStairs_SouthTopInnerLeftFalse
- | BlockState::BambooStairs_EastTopInnerRightTrue
- | BlockState::BambooStairs_EastTopInnerRightFalse
- | BlockState::BambooMosaicStairs_SouthTopInnerLeftTrue
- | BlockState::BambooMosaicStairs_SouthTopInnerLeftFalse
- | BlockState::BambooMosaicStairs_EastTopInnerRightTrue
- | BlockState::BambooMosaicStairs_EastTopInnerRightFalse
- | BlockState::PrismarineStairs_SouthTopInnerLeftTrue
- | BlockState::PrismarineStairs_SouthTopInnerLeftFalse
- | BlockState::PrismarineStairs_EastTopInnerRightTrue
- | BlockState::PrismarineStairs_EastTopInnerRightFalse
- | BlockState::PrismarineBrickStairs_SouthTopInnerLeftTrue
- | BlockState::PrismarineBrickStairs_SouthTopInnerLeftFalse
- | BlockState::PrismarineBrickStairs_EastTopInnerRightTrue
- | BlockState::PrismarineBrickStairs_EastTopInnerRightFalse
- | BlockState::DarkPrismarineStairs_SouthTopInnerLeftTrue
- | BlockState::DarkPrismarineStairs_SouthTopInnerLeftFalse
- | BlockState::DarkPrismarineStairs_EastTopInnerRightTrue
- | BlockState::DarkPrismarineStairs_EastTopInnerRightFalse
- | BlockState::RedSandstoneStairs_SouthTopInnerLeftTrue
- | BlockState::RedSandstoneStairs_SouthTopInnerLeftFalse
- | BlockState::RedSandstoneStairs_EastTopInnerRightTrue
- | BlockState::RedSandstoneStairs_EastTopInnerRightFalse
- | BlockState::PurpurStairs_SouthTopInnerLeftTrue
- | BlockState::PurpurStairs_SouthTopInnerLeftFalse
- | BlockState::PurpurStairs_EastTopInnerRightTrue
- | BlockState::PurpurStairs_EastTopInnerRightFalse
- | BlockState::PolishedGraniteStairs_SouthTopInnerLeftTrue
- | BlockState::PolishedGraniteStairs_SouthTopInnerLeftFalse
- | BlockState::PolishedGraniteStairs_EastTopInnerRightTrue
- | BlockState::PolishedGraniteStairs_EastTopInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_SouthTopInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_SouthTopInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_EastTopInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_EastTopInnerRightFalse
- | BlockState::MossyStoneBrickStairs_SouthTopInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_SouthTopInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_EastTopInnerRightTrue
- | BlockState::MossyStoneBrickStairs_EastTopInnerRightFalse
- | BlockState::PolishedDioriteStairs_SouthTopInnerLeftTrue
- | BlockState::PolishedDioriteStairs_SouthTopInnerLeftFalse
- | BlockState::PolishedDioriteStairs_EastTopInnerRightTrue
- | BlockState::PolishedDioriteStairs_EastTopInnerRightFalse
- | BlockState::MossyCobblestoneStairs_SouthTopInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_SouthTopInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_EastTopInnerRightTrue
- | BlockState::MossyCobblestoneStairs_EastTopInnerRightFalse
- | BlockState::EndStoneBrickStairs_SouthTopInnerLeftTrue
- | BlockState::EndStoneBrickStairs_SouthTopInnerLeftFalse
- | BlockState::EndStoneBrickStairs_EastTopInnerRightTrue
- | BlockState::EndStoneBrickStairs_EastTopInnerRightFalse
- | BlockState::StoneStairs_SouthTopInnerLeftTrue
- | BlockState::StoneStairs_SouthTopInnerLeftFalse
- | BlockState::StoneStairs_EastTopInnerRightTrue
- | BlockState::StoneStairs_EastTopInnerRightFalse
- | BlockState::SmoothSandstoneStairs_SouthTopInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_SouthTopInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_EastTopInnerRightTrue
- | BlockState::SmoothSandstoneStairs_EastTopInnerRightFalse
- | BlockState::SmoothQuartzStairs_SouthTopInnerLeftTrue
- | BlockState::SmoothQuartzStairs_SouthTopInnerLeftFalse
- | BlockState::SmoothQuartzStairs_EastTopInnerRightTrue
- | BlockState::SmoothQuartzStairs_EastTopInnerRightFalse
- | BlockState::GraniteStairs_SouthTopInnerLeftTrue
- | BlockState::GraniteStairs_SouthTopInnerLeftFalse
- | BlockState::GraniteStairs_EastTopInnerRightTrue
- | BlockState::GraniteStairs_EastTopInnerRightFalse
- | BlockState::AndesiteStairs_SouthTopInnerLeftTrue
- | BlockState::AndesiteStairs_SouthTopInnerLeftFalse
- | BlockState::AndesiteStairs_EastTopInnerRightTrue
- | BlockState::AndesiteStairs_EastTopInnerRightFalse
- | BlockState::RedNetherBrickStairs_SouthTopInnerLeftTrue
- | BlockState::RedNetherBrickStairs_SouthTopInnerLeftFalse
- | BlockState::RedNetherBrickStairs_EastTopInnerRightTrue
- | BlockState::RedNetherBrickStairs_EastTopInnerRightFalse
- | BlockState::PolishedAndesiteStairs_SouthTopInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_SouthTopInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_EastTopInnerRightTrue
- | BlockState::PolishedAndesiteStairs_EastTopInnerRightFalse
- | BlockState::DioriteStairs_SouthTopInnerLeftTrue
- | BlockState::DioriteStairs_SouthTopInnerLeftFalse
- | BlockState::DioriteStairs_EastTopInnerRightTrue
- | BlockState::DioriteStairs_EastTopInnerRightFalse
- | BlockState::CrimsonStairs_SouthTopInnerLeftTrue
- | BlockState::CrimsonStairs_SouthTopInnerLeftFalse
- | BlockState::CrimsonStairs_EastTopInnerRightTrue
- | BlockState::CrimsonStairs_EastTopInnerRightFalse
- | BlockState::WarpedStairs_SouthTopInnerLeftTrue
- | BlockState::WarpedStairs_SouthTopInnerLeftFalse
- | BlockState::WarpedStairs_EastTopInnerRightTrue
- | BlockState::WarpedStairs_EastTopInnerRightFalse
- | BlockState::BlackstoneStairs_SouthTopInnerLeftTrue
- | BlockState::BlackstoneStairs_SouthTopInnerLeftFalse
- | BlockState::BlackstoneStairs_EastTopInnerRightTrue
- | BlockState::BlackstoneStairs_EastTopInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastTopInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastTopInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_SouthTopInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_SouthTopInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_EastTopInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_EastTopInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_EastTopInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_EastTopInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_EastTopInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_EastTopInnerRightFalse
- | BlockState::ExposedCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_EastTopInnerRightTrue
- | BlockState::ExposedCutCopperStairs_EastTopInnerRightFalse
- | BlockState::CutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::CutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::CutCopperStairs_EastTopInnerRightTrue
- | BlockState::CutCopperStairs_EastTopInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_EastTopInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_EastTopInnerRightFalse
- | BlockState::WaxedCutCopperStairs_SouthTopInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_SouthTopInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_EastTopInnerRightTrue
- | BlockState::WaxedCutCopperStairs_EastTopInnerRightFalse
- | BlockState::CobbledDeepslateStairs_SouthTopInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_SouthTopInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_EastTopInnerRightTrue
- | BlockState::CobbledDeepslateStairs_EastTopInnerRightFalse
- | BlockState::PolishedDeepslateStairs_SouthTopInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_SouthTopInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_EastTopInnerRightTrue
- | BlockState::PolishedDeepslateStairs_EastTopInnerRightFalse
- | BlockState::DeepslateTileStairs_SouthTopInnerLeftTrue
- | BlockState::DeepslateTileStairs_SouthTopInnerLeftFalse
- | BlockState::DeepslateTileStairs_EastTopInnerRightTrue
- | BlockState::DeepslateTileStairs_EastTopInnerRightFalse
- | BlockState::DeepslateBrickStairs_SouthTopInnerLeftTrue
- | BlockState::DeepslateBrickStairs_SouthTopInnerLeftFalse
- | BlockState::DeepslateBrickStairs_EastTopInnerRightTrue
- | BlockState::DeepslateBrickStairs_EastTopInnerRightFalse => &SHAPE49,
- BlockState::OakStairs_SouthTopInnerRightTrue
- | BlockState::OakStairs_SouthTopInnerRightFalse
- | BlockState::OakStairs_WestTopInnerLeftTrue
- | BlockState::OakStairs_WestTopInnerLeftFalse
- | BlockState::CobblestoneStairs_SouthTopInnerRightTrue
- | BlockState::CobblestoneStairs_SouthTopInnerRightFalse
- | BlockState::CobblestoneStairs_WestTopInnerLeftTrue
- | BlockState::CobblestoneStairs_WestTopInnerLeftFalse
- | BlockState::BrickStairs_SouthTopInnerRightTrue
- | BlockState::BrickStairs_SouthTopInnerRightFalse
- | BlockState::BrickStairs_WestTopInnerLeftTrue
- | BlockState::BrickStairs_WestTopInnerLeftFalse
- | BlockState::StoneBrickStairs_SouthTopInnerRightTrue
- | BlockState::StoneBrickStairs_SouthTopInnerRightFalse
- | BlockState::StoneBrickStairs_WestTopInnerLeftTrue
- | BlockState::StoneBrickStairs_WestTopInnerLeftFalse
- | BlockState::MudBrickStairs_SouthTopInnerRightTrue
- | BlockState::MudBrickStairs_SouthTopInnerRightFalse
- | BlockState::MudBrickStairs_WestTopInnerLeftTrue
- | BlockState::MudBrickStairs_WestTopInnerLeftFalse
- | BlockState::NetherBrickStairs_SouthTopInnerRightTrue
- | BlockState::NetherBrickStairs_SouthTopInnerRightFalse
- | BlockState::NetherBrickStairs_WestTopInnerLeftTrue
- | BlockState::NetherBrickStairs_WestTopInnerLeftFalse
- | BlockState::SandstoneStairs_SouthTopInnerRightTrue
- | BlockState::SandstoneStairs_SouthTopInnerRightFalse
- | BlockState::SandstoneStairs_WestTopInnerLeftTrue
- | BlockState::SandstoneStairs_WestTopInnerLeftFalse
- | BlockState::SpruceStairs_SouthTopInnerRightTrue
- | BlockState::SpruceStairs_SouthTopInnerRightFalse
- | BlockState::SpruceStairs_WestTopInnerLeftTrue
- | BlockState::SpruceStairs_WestTopInnerLeftFalse
- | BlockState::BirchStairs_SouthTopInnerRightTrue
- | BlockState::BirchStairs_SouthTopInnerRightFalse
- | BlockState::BirchStairs_WestTopInnerLeftTrue
- | BlockState::BirchStairs_WestTopInnerLeftFalse
- | BlockState::JungleStairs_SouthTopInnerRightTrue
- | BlockState::JungleStairs_SouthTopInnerRightFalse
- | BlockState::JungleStairs_WestTopInnerLeftTrue
- | BlockState::JungleStairs_WestTopInnerLeftFalse
- | BlockState::QuartzStairs_SouthTopInnerRightTrue
- | BlockState::QuartzStairs_SouthTopInnerRightFalse
- | BlockState::QuartzStairs_WestTopInnerLeftTrue
- | BlockState::QuartzStairs_WestTopInnerLeftFalse
- | BlockState::AcaciaStairs_SouthTopInnerRightTrue
- | BlockState::AcaciaStairs_SouthTopInnerRightFalse
- | BlockState::AcaciaStairs_WestTopInnerLeftTrue
- | BlockState::AcaciaStairs_WestTopInnerLeftFalse
- | BlockState::DarkOakStairs_SouthTopInnerRightTrue
- | BlockState::DarkOakStairs_SouthTopInnerRightFalse
- | BlockState::DarkOakStairs_WestTopInnerLeftTrue
- | BlockState::DarkOakStairs_WestTopInnerLeftFalse
- | BlockState::MangroveStairs_SouthTopInnerRightTrue
- | BlockState::MangroveStairs_SouthTopInnerRightFalse
- | BlockState::MangroveStairs_WestTopInnerLeftTrue
- | BlockState::MangroveStairs_WestTopInnerLeftFalse
- | BlockState::BambooStairs_SouthTopInnerRightTrue
- | BlockState::BambooStairs_SouthTopInnerRightFalse
- | BlockState::BambooStairs_WestTopInnerLeftTrue
- | BlockState::BambooStairs_WestTopInnerLeftFalse
- | BlockState::BambooMosaicStairs_SouthTopInnerRightTrue
- | BlockState::BambooMosaicStairs_SouthTopInnerRightFalse
- | BlockState::BambooMosaicStairs_WestTopInnerLeftTrue
- | BlockState::BambooMosaicStairs_WestTopInnerLeftFalse
- | BlockState::PrismarineStairs_SouthTopInnerRightTrue
- | BlockState::PrismarineStairs_SouthTopInnerRightFalse
- | BlockState::PrismarineStairs_WestTopInnerLeftTrue
- | BlockState::PrismarineStairs_WestTopInnerLeftFalse
- | BlockState::PrismarineBrickStairs_SouthTopInnerRightTrue
- | BlockState::PrismarineBrickStairs_SouthTopInnerRightFalse
- | BlockState::PrismarineBrickStairs_WestTopInnerLeftTrue
- | BlockState::PrismarineBrickStairs_WestTopInnerLeftFalse
- | BlockState::DarkPrismarineStairs_SouthTopInnerRightTrue
- | BlockState::DarkPrismarineStairs_SouthTopInnerRightFalse
- | BlockState::DarkPrismarineStairs_WestTopInnerLeftTrue
- | BlockState::DarkPrismarineStairs_WestTopInnerLeftFalse
- | BlockState::RedSandstoneStairs_SouthTopInnerRightTrue
- | BlockState::RedSandstoneStairs_SouthTopInnerRightFalse
- | BlockState::RedSandstoneStairs_WestTopInnerLeftTrue
- | BlockState::RedSandstoneStairs_WestTopInnerLeftFalse
- | BlockState::PurpurStairs_SouthTopInnerRightTrue
- | BlockState::PurpurStairs_SouthTopInnerRightFalse
- | BlockState::PurpurStairs_WestTopInnerLeftTrue
- | BlockState::PurpurStairs_WestTopInnerLeftFalse
- | BlockState::PolishedGraniteStairs_SouthTopInnerRightTrue
- | BlockState::PolishedGraniteStairs_SouthTopInnerRightFalse
- | BlockState::PolishedGraniteStairs_WestTopInnerLeftTrue
- | BlockState::PolishedGraniteStairs_WestTopInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_SouthTopInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_SouthTopInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_WestTopInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_WestTopInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_SouthTopInnerRightTrue
- | BlockState::MossyStoneBrickStairs_SouthTopInnerRightFalse
- | BlockState::MossyStoneBrickStairs_WestTopInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_WestTopInnerLeftFalse
- | BlockState::PolishedDioriteStairs_SouthTopInnerRightTrue
- | BlockState::PolishedDioriteStairs_SouthTopInnerRightFalse
- | BlockState::PolishedDioriteStairs_WestTopInnerLeftTrue
- | BlockState::PolishedDioriteStairs_WestTopInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_SouthTopInnerRightTrue
- | BlockState::MossyCobblestoneStairs_SouthTopInnerRightFalse
- | BlockState::MossyCobblestoneStairs_WestTopInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_WestTopInnerLeftFalse
- | BlockState::EndStoneBrickStairs_SouthTopInnerRightTrue
- | BlockState::EndStoneBrickStairs_SouthTopInnerRightFalse
- | BlockState::EndStoneBrickStairs_WestTopInnerLeftTrue
- | BlockState::EndStoneBrickStairs_WestTopInnerLeftFalse
- | BlockState::StoneStairs_SouthTopInnerRightTrue
- | BlockState::StoneStairs_SouthTopInnerRightFalse
- | BlockState::StoneStairs_WestTopInnerLeftTrue
- | BlockState::StoneStairs_WestTopInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_SouthTopInnerRightTrue
- | BlockState::SmoothSandstoneStairs_SouthTopInnerRightFalse
- | BlockState::SmoothSandstoneStairs_WestTopInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_WestTopInnerLeftFalse
- | BlockState::SmoothQuartzStairs_SouthTopInnerRightTrue
- | BlockState::SmoothQuartzStairs_SouthTopInnerRightFalse
- | BlockState::SmoothQuartzStairs_WestTopInnerLeftTrue
- | BlockState::SmoothQuartzStairs_WestTopInnerLeftFalse
- | BlockState::GraniteStairs_SouthTopInnerRightTrue
- | BlockState::GraniteStairs_SouthTopInnerRightFalse
- | BlockState::GraniteStairs_WestTopInnerLeftTrue
- | BlockState::GraniteStairs_WestTopInnerLeftFalse
- | BlockState::AndesiteStairs_SouthTopInnerRightTrue
- | BlockState::AndesiteStairs_SouthTopInnerRightFalse
- | BlockState::AndesiteStairs_WestTopInnerLeftTrue
- | BlockState::AndesiteStairs_WestTopInnerLeftFalse
- | BlockState::RedNetherBrickStairs_SouthTopInnerRightTrue
- | BlockState::RedNetherBrickStairs_SouthTopInnerRightFalse
- | BlockState::RedNetherBrickStairs_WestTopInnerLeftTrue
- | BlockState::RedNetherBrickStairs_WestTopInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_SouthTopInnerRightTrue
- | BlockState::PolishedAndesiteStairs_SouthTopInnerRightFalse
- | BlockState::PolishedAndesiteStairs_WestTopInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_WestTopInnerLeftFalse
- | BlockState::DioriteStairs_SouthTopInnerRightTrue
- | BlockState::DioriteStairs_SouthTopInnerRightFalse
- | BlockState::DioriteStairs_WestTopInnerLeftTrue
- | BlockState::DioriteStairs_WestTopInnerLeftFalse
- | BlockState::CrimsonStairs_SouthTopInnerRightTrue
- | BlockState::CrimsonStairs_SouthTopInnerRightFalse
- | BlockState::CrimsonStairs_WestTopInnerLeftTrue
- | BlockState::CrimsonStairs_WestTopInnerLeftFalse
- | BlockState::WarpedStairs_SouthTopInnerRightTrue
- | BlockState::WarpedStairs_SouthTopInnerRightFalse
- | BlockState::WarpedStairs_WestTopInnerLeftTrue
- | BlockState::WarpedStairs_WestTopInnerLeftFalse
- | BlockState::BlackstoneStairs_SouthTopInnerRightTrue
- | BlockState::BlackstoneStairs_SouthTopInnerRightFalse
- | BlockState::BlackstoneStairs_WestTopInnerLeftTrue
- | BlockState::BlackstoneStairs_WestTopInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestTopInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestTopInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_SouthTopInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_SouthTopInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_WestTopInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_WestTopInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::ExposedCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::ExposedCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::CutCopperStairs_SouthTopInnerRightTrue
- | BlockState::CutCopperStairs_SouthTopInnerRightFalse
- | BlockState::CutCopperStairs_WestTopInnerLeftTrue
- | BlockState::CutCopperStairs_WestTopInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_SouthTopInnerRightTrue
- | BlockState::WaxedCutCopperStairs_SouthTopInnerRightFalse
- | BlockState::WaxedCutCopperStairs_WestTopInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_WestTopInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_SouthTopInnerRightTrue
- | BlockState::CobbledDeepslateStairs_SouthTopInnerRightFalse
- | BlockState::CobbledDeepslateStairs_WestTopInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_WestTopInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_SouthTopInnerRightTrue
- | BlockState::PolishedDeepslateStairs_SouthTopInnerRightFalse
- | BlockState::PolishedDeepslateStairs_WestTopInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_WestTopInnerLeftFalse
- | BlockState::DeepslateTileStairs_SouthTopInnerRightTrue
- | BlockState::DeepslateTileStairs_SouthTopInnerRightFalse
- | BlockState::DeepslateTileStairs_WestTopInnerLeftTrue
- | BlockState::DeepslateTileStairs_WestTopInnerLeftFalse
- | BlockState::DeepslateBrickStairs_SouthTopInnerRightTrue
- | BlockState::DeepslateBrickStairs_SouthTopInnerRightFalse
- | BlockState::DeepslateBrickStairs_WestTopInnerLeftTrue
- | BlockState::DeepslateBrickStairs_WestTopInnerLeftFalse => &SHAPE50,
- BlockState::OakStairs_SouthTopOuterLeftTrue
- | BlockState::OakStairs_SouthTopOuterLeftFalse
- | BlockState::OakStairs_EastTopOuterRightTrue
- | BlockState::OakStairs_EastTopOuterRightFalse
- | BlockState::CobblestoneStairs_SouthTopOuterLeftTrue
- | BlockState::CobblestoneStairs_SouthTopOuterLeftFalse
- | BlockState::CobblestoneStairs_EastTopOuterRightTrue
- | BlockState::CobblestoneStairs_EastTopOuterRightFalse
- | BlockState::BrickStairs_SouthTopOuterLeftTrue
- | BlockState::BrickStairs_SouthTopOuterLeftFalse
- | BlockState::BrickStairs_EastTopOuterRightTrue
- | BlockState::BrickStairs_EastTopOuterRightFalse
- | BlockState::StoneBrickStairs_SouthTopOuterLeftTrue
- | BlockState::StoneBrickStairs_SouthTopOuterLeftFalse
- | BlockState::StoneBrickStairs_EastTopOuterRightTrue
- | BlockState::StoneBrickStairs_EastTopOuterRightFalse
- | BlockState::MudBrickStairs_SouthTopOuterLeftTrue
- | BlockState::MudBrickStairs_SouthTopOuterLeftFalse
- | BlockState::MudBrickStairs_EastTopOuterRightTrue
- | BlockState::MudBrickStairs_EastTopOuterRightFalse
- | BlockState::NetherBrickStairs_SouthTopOuterLeftTrue
- | BlockState::NetherBrickStairs_SouthTopOuterLeftFalse
- | BlockState::NetherBrickStairs_EastTopOuterRightTrue
- | BlockState::NetherBrickStairs_EastTopOuterRightFalse
- | BlockState::SandstoneStairs_SouthTopOuterLeftTrue
- | BlockState::SandstoneStairs_SouthTopOuterLeftFalse
- | BlockState::SandstoneStairs_EastTopOuterRightTrue
- | BlockState::SandstoneStairs_EastTopOuterRightFalse
- | BlockState::SpruceStairs_SouthTopOuterLeftTrue
- | BlockState::SpruceStairs_SouthTopOuterLeftFalse
- | BlockState::SpruceStairs_EastTopOuterRightTrue
- | BlockState::SpruceStairs_EastTopOuterRightFalse
- | BlockState::BirchStairs_SouthTopOuterLeftTrue
- | BlockState::BirchStairs_SouthTopOuterLeftFalse
- | BlockState::BirchStairs_EastTopOuterRightTrue
- | BlockState::BirchStairs_EastTopOuterRightFalse
- | BlockState::JungleStairs_SouthTopOuterLeftTrue
- | BlockState::JungleStairs_SouthTopOuterLeftFalse
- | BlockState::JungleStairs_EastTopOuterRightTrue
- | BlockState::JungleStairs_EastTopOuterRightFalse
- | BlockState::QuartzStairs_SouthTopOuterLeftTrue
- | BlockState::QuartzStairs_SouthTopOuterLeftFalse
- | BlockState::QuartzStairs_EastTopOuterRightTrue
- | BlockState::QuartzStairs_EastTopOuterRightFalse
- | BlockState::AcaciaStairs_SouthTopOuterLeftTrue
- | BlockState::AcaciaStairs_SouthTopOuterLeftFalse
- | BlockState::AcaciaStairs_EastTopOuterRightTrue
- | BlockState::AcaciaStairs_EastTopOuterRightFalse
- | BlockState::DarkOakStairs_SouthTopOuterLeftTrue
- | BlockState::DarkOakStairs_SouthTopOuterLeftFalse
- | BlockState::DarkOakStairs_EastTopOuterRightTrue
- | BlockState::DarkOakStairs_EastTopOuterRightFalse
- | BlockState::MangroveStairs_SouthTopOuterLeftTrue
- | BlockState::MangroveStairs_SouthTopOuterLeftFalse
- | BlockState::MangroveStairs_EastTopOuterRightTrue
- | BlockState::MangroveStairs_EastTopOuterRightFalse
- | BlockState::BambooStairs_SouthTopOuterLeftTrue
- | BlockState::BambooStairs_SouthTopOuterLeftFalse
- | BlockState::BambooStairs_EastTopOuterRightTrue
- | BlockState::BambooStairs_EastTopOuterRightFalse
- | BlockState::BambooMosaicStairs_SouthTopOuterLeftTrue
- | BlockState::BambooMosaicStairs_SouthTopOuterLeftFalse
- | BlockState::BambooMosaicStairs_EastTopOuterRightTrue
- | BlockState::BambooMosaicStairs_EastTopOuterRightFalse
- | BlockState::PrismarineStairs_SouthTopOuterLeftTrue
- | BlockState::PrismarineStairs_SouthTopOuterLeftFalse
- | BlockState::PrismarineStairs_EastTopOuterRightTrue
- | BlockState::PrismarineStairs_EastTopOuterRightFalse
- | BlockState::PrismarineBrickStairs_SouthTopOuterLeftTrue
- | BlockState::PrismarineBrickStairs_SouthTopOuterLeftFalse
- | BlockState::PrismarineBrickStairs_EastTopOuterRightTrue
- | BlockState::PrismarineBrickStairs_EastTopOuterRightFalse
- | BlockState::DarkPrismarineStairs_SouthTopOuterLeftTrue
- | BlockState::DarkPrismarineStairs_SouthTopOuterLeftFalse
- | BlockState::DarkPrismarineStairs_EastTopOuterRightTrue
- | BlockState::DarkPrismarineStairs_EastTopOuterRightFalse
- | BlockState::RedSandstoneStairs_SouthTopOuterLeftTrue
- | BlockState::RedSandstoneStairs_SouthTopOuterLeftFalse
- | BlockState::RedSandstoneStairs_EastTopOuterRightTrue
- | BlockState::RedSandstoneStairs_EastTopOuterRightFalse
- | BlockState::PurpurStairs_SouthTopOuterLeftTrue
- | BlockState::PurpurStairs_SouthTopOuterLeftFalse
- | BlockState::PurpurStairs_EastTopOuterRightTrue
- | BlockState::PurpurStairs_EastTopOuterRightFalse
- | BlockState::PolishedGraniteStairs_SouthTopOuterLeftTrue
- | BlockState::PolishedGraniteStairs_SouthTopOuterLeftFalse
- | BlockState::PolishedGraniteStairs_EastTopOuterRightTrue
- | BlockState::PolishedGraniteStairs_EastTopOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_SouthTopOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_SouthTopOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_EastTopOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_EastTopOuterRightFalse
- | BlockState::MossyStoneBrickStairs_SouthTopOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_SouthTopOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_EastTopOuterRightTrue
- | BlockState::MossyStoneBrickStairs_EastTopOuterRightFalse
- | BlockState::PolishedDioriteStairs_SouthTopOuterLeftTrue
- | BlockState::PolishedDioriteStairs_SouthTopOuterLeftFalse
- | BlockState::PolishedDioriteStairs_EastTopOuterRightTrue
- | BlockState::PolishedDioriteStairs_EastTopOuterRightFalse
- | BlockState::MossyCobblestoneStairs_SouthTopOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_SouthTopOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_EastTopOuterRightTrue
- | BlockState::MossyCobblestoneStairs_EastTopOuterRightFalse
- | BlockState::EndStoneBrickStairs_SouthTopOuterLeftTrue
- | BlockState::EndStoneBrickStairs_SouthTopOuterLeftFalse
- | BlockState::EndStoneBrickStairs_EastTopOuterRightTrue
- | BlockState::EndStoneBrickStairs_EastTopOuterRightFalse
- | BlockState::StoneStairs_SouthTopOuterLeftTrue
- | BlockState::StoneStairs_SouthTopOuterLeftFalse
- | BlockState::StoneStairs_EastTopOuterRightTrue
- | BlockState::StoneStairs_EastTopOuterRightFalse
- | BlockState::SmoothSandstoneStairs_SouthTopOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_SouthTopOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_EastTopOuterRightTrue
- | BlockState::SmoothSandstoneStairs_EastTopOuterRightFalse
- | BlockState::SmoothQuartzStairs_SouthTopOuterLeftTrue
- | BlockState::SmoothQuartzStairs_SouthTopOuterLeftFalse
- | BlockState::SmoothQuartzStairs_EastTopOuterRightTrue
- | BlockState::SmoothQuartzStairs_EastTopOuterRightFalse
- | BlockState::GraniteStairs_SouthTopOuterLeftTrue
- | BlockState::GraniteStairs_SouthTopOuterLeftFalse
- | BlockState::GraniteStairs_EastTopOuterRightTrue
- | BlockState::GraniteStairs_EastTopOuterRightFalse
- | BlockState::AndesiteStairs_SouthTopOuterLeftTrue
- | BlockState::AndesiteStairs_SouthTopOuterLeftFalse
- | BlockState::AndesiteStairs_EastTopOuterRightTrue
- | BlockState::AndesiteStairs_EastTopOuterRightFalse
- | BlockState::RedNetherBrickStairs_SouthTopOuterLeftTrue
- | BlockState::RedNetherBrickStairs_SouthTopOuterLeftFalse
- | BlockState::RedNetherBrickStairs_EastTopOuterRightTrue
- | BlockState::RedNetherBrickStairs_EastTopOuterRightFalse
- | BlockState::PolishedAndesiteStairs_SouthTopOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_SouthTopOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_EastTopOuterRightTrue
- | BlockState::PolishedAndesiteStairs_EastTopOuterRightFalse
- | BlockState::DioriteStairs_SouthTopOuterLeftTrue
- | BlockState::DioriteStairs_SouthTopOuterLeftFalse
- | BlockState::DioriteStairs_EastTopOuterRightTrue
- | BlockState::DioriteStairs_EastTopOuterRightFalse
- | BlockState::CrimsonStairs_SouthTopOuterLeftTrue
- | BlockState::CrimsonStairs_SouthTopOuterLeftFalse
- | BlockState::CrimsonStairs_EastTopOuterRightTrue
- | BlockState::CrimsonStairs_EastTopOuterRightFalse
- | BlockState::WarpedStairs_SouthTopOuterLeftTrue
- | BlockState::WarpedStairs_SouthTopOuterLeftFalse
- | BlockState::WarpedStairs_EastTopOuterRightTrue
- | BlockState::WarpedStairs_EastTopOuterRightFalse
- | BlockState::BlackstoneStairs_SouthTopOuterLeftTrue
- | BlockState::BlackstoneStairs_SouthTopOuterLeftFalse
- | BlockState::BlackstoneStairs_EastTopOuterRightTrue
- | BlockState::BlackstoneStairs_EastTopOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastTopOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastTopOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_SouthTopOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_SouthTopOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_EastTopOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_EastTopOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_EastTopOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_EastTopOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_EastTopOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_EastTopOuterRightFalse
- | BlockState::ExposedCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_EastTopOuterRightTrue
- | BlockState::ExposedCutCopperStairs_EastTopOuterRightFalse
- | BlockState::CutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::CutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::CutCopperStairs_EastTopOuterRightTrue
- | BlockState::CutCopperStairs_EastTopOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_EastTopOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_EastTopOuterRightFalse
- | BlockState::WaxedCutCopperStairs_SouthTopOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_SouthTopOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_EastTopOuterRightTrue
- | BlockState::WaxedCutCopperStairs_EastTopOuterRightFalse
- | BlockState::CobbledDeepslateStairs_SouthTopOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_SouthTopOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_EastTopOuterRightTrue
- | BlockState::CobbledDeepslateStairs_EastTopOuterRightFalse
- | BlockState::PolishedDeepslateStairs_SouthTopOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_SouthTopOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_EastTopOuterRightTrue
- | BlockState::PolishedDeepslateStairs_EastTopOuterRightFalse
- | BlockState::DeepslateTileStairs_SouthTopOuterLeftTrue
- | BlockState::DeepslateTileStairs_SouthTopOuterLeftFalse
- | BlockState::DeepslateTileStairs_EastTopOuterRightTrue
- | BlockState::DeepslateTileStairs_EastTopOuterRightFalse
- | BlockState::DeepslateBrickStairs_SouthTopOuterLeftTrue
- | BlockState::DeepslateBrickStairs_SouthTopOuterLeftFalse
- | BlockState::DeepslateBrickStairs_EastTopOuterRightTrue
- | BlockState::DeepslateBrickStairs_EastTopOuterRightFalse => &SHAPE51,
- BlockState::OakStairs_SouthTopOuterRightTrue
- | BlockState::OakStairs_SouthTopOuterRightFalse
- | BlockState::OakStairs_WestTopOuterLeftTrue
- | BlockState::OakStairs_WestTopOuterLeftFalse
- | BlockState::CobblestoneStairs_SouthTopOuterRightTrue
- | BlockState::CobblestoneStairs_SouthTopOuterRightFalse
- | BlockState::CobblestoneStairs_WestTopOuterLeftTrue
- | BlockState::CobblestoneStairs_WestTopOuterLeftFalse
- | BlockState::BrickStairs_SouthTopOuterRightTrue
- | BlockState::BrickStairs_SouthTopOuterRightFalse
- | BlockState::BrickStairs_WestTopOuterLeftTrue
- | BlockState::BrickStairs_WestTopOuterLeftFalse
- | BlockState::StoneBrickStairs_SouthTopOuterRightTrue
- | BlockState::StoneBrickStairs_SouthTopOuterRightFalse
- | BlockState::StoneBrickStairs_WestTopOuterLeftTrue
- | BlockState::StoneBrickStairs_WestTopOuterLeftFalse
- | BlockState::MudBrickStairs_SouthTopOuterRightTrue
- | BlockState::MudBrickStairs_SouthTopOuterRightFalse
- | BlockState::MudBrickStairs_WestTopOuterLeftTrue
- | BlockState::MudBrickStairs_WestTopOuterLeftFalse
- | BlockState::NetherBrickStairs_SouthTopOuterRightTrue
- | BlockState::NetherBrickStairs_SouthTopOuterRightFalse
- | BlockState::NetherBrickStairs_WestTopOuterLeftTrue
- | BlockState::NetherBrickStairs_WestTopOuterLeftFalse
- | BlockState::SandstoneStairs_SouthTopOuterRightTrue
- | BlockState::SandstoneStairs_SouthTopOuterRightFalse
- | BlockState::SandstoneStairs_WestTopOuterLeftTrue
- | BlockState::SandstoneStairs_WestTopOuterLeftFalse
- | BlockState::SpruceStairs_SouthTopOuterRightTrue
- | BlockState::SpruceStairs_SouthTopOuterRightFalse
- | BlockState::SpruceStairs_WestTopOuterLeftTrue
- | BlockState::SpruceStairs_WestTopOuterLeftFalse
- | BlockState::BirchStairs_SouthTopOuterRightTrue
- | BlockState::BirchStairs_SouthTopOuterRightFalse
- | BlockState::BirchStairs_WestTopOuterLeftTrue
- | BlockState::BirchStairs_WestTopOuterLeftFalse
- | BlockState::JungleStairs_SouthTopOuterRightTrue
- | BlockState::JungleStairs_SouthTopOuterRightFalse
- | BlockState::JungleStairs_WestTopOuterLeftTrue
- | BlockState::JungleStairs_WestTopOuterLeftFalse
- | BlockState::QuartzStairs_SouthTopOuterRightTrue
- | BlockState::QuartzStairs_SouthTopOuterRightFalse
- | BlockState::QuartzStairs_WestTopOuterLeftTrue
- | BlockState::QuartzStairs_WestTopOuterLeftFalse
- | BlockState::AcaciaStairs_SouthTopOuterRightTrue
- | BlockState::AcaciaStairs_SouthTopOuterRightFalse
- | BlockState::AcaciaStairs_WestTopOuterLeftTrue
- | BlockState::AcaciaStairs_WestTopOuterLeftFalse
- | BlockState::DarkOakStairs_SouthTopOuterRightTrue
- | BlockState::DarkOakStairs_SouthTopOuterRightFalse
- | BlockState::DarkOakStairs_WestTopOuterLeftTrue
- | BlockState::DarkOakStairs_WestTopOuterLeftFalse
- | BlockState::MangroveStairs_SouthTopOuterRightTrue
- | BlockState::MangroveStairs_SouthTopOuterRightFalse
- | BlockState::MangroveStairs_WestTopOuterLeftTrue
- | BlockState::MangroveStairs_WestTopOuterLeftFalse
- | BlockState::BambooStairs_SouthTopOuterRightTrue
- | BlockState::BambooStairs_SouthTopOuterRightFalse
- | BlockState::BambooStairs_WestTopOuterLeftTrue
- | BlockState::BambooStairs_WestTopOuterLeftFalse
- | BlockState::BambooMosaicStairs_SouthTopOuterRightTrue
- | BlockState::BambooMosaicStairs_SouthTopOuterRightFalse
- | BlockState::BambooMosaicStairs_WestTopOuterLeftTrue
- | BlockState::BambooMosaicStairs_WestTopOuterLeftFalse
- | BlockState::PrismarineStairs_SouthTopOuterRightTrue
- | BlockState::PrismarineStairs_SouthTopOuterRightFalse
- | BlockState::PrismarineStairs_WestTopOuterLeftTrue
- | BlockState::PrismarineStairs_WestTopOuterLeftFalse
- | BlockState::PrismarineBrickStairs_SouthTopOuterRightTrue
- | BlockState::PrismarineBrickStairs_SouthTopOuterRightFalse
- | BlockState::PrismarineBrickStairs_WestTopOuterLeftTrue
- | BlockState::PrismarineBrickStairs_WestTopOuterLeftFalse
- | BlockState::DarkPrismarineStairs_SouthTopOuterRightTrue
- | BlockState::DarkPrismarineStairs_SouthTopOuterRightFalse
- | BlockState::DarkPrismarineStairs_WestTopOuterLeftTrue
- | BlockState::DarkPrismarineStairs_WestTopOuterLeftFalse
- | BlockState::RedSandstoneStairs_SouthTopOuterRightTrue
- | BlockState::RedSandstoneStairs_SouthTopOuterRightFalse
- | BlockState::RedSandstoneStairs_WestTopOuterLeftTrue
- | BlockState::RedSandstoneStairs_WestTopOuterLeftFalse
- | BlockState::PurpurStairs_SouthTopOuterRightTrue
- | BlockState::PurpurStairs_SouthTopOuterRightFalse
- | BlockState::PurpurStairs_WestTopOuterLeftTrue
- | BlockState::PurpurStairs_WestTopOuterLeftFalse
- | BlockState::PolishedGraniteStairs_SouthTopOuterRightTrue
- | BlockState::PolishedGraniteStairs_SouthTopOuterRightFalse
- | BlockState::PolishedGraniteStairs_WestTopOuterLeftTrue
- | BlockState::PolishedGraniteStairs_WestTopOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_SouthTopOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_SouthTopOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_WestTopOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_WestTopOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_SouthTopOuterRightTrue
- | BlockState::MossyStoneBrickStairs_SouthTopOuterRightFalse
- | BlockState::MossyStoneBrickStairs_WestTopOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_WestTopOuterLeftFalse
- | BlockState::PolishedDioriteStairs_SouthTopOuterRightTrue
- | BlockState::PolishedDioriteStairs_SouthTopOuterRightFalse
- | BlockState::PolishedDioriteStairs_WestTopOuterLeftTrue
- | BlockState::PolishedDioriteStairs_WestTopOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_SouthTopOuterRightTrue
- | BlockState::MossyCobblestoneStairs_SouthTopOuterRightFalse
- | BlockState::MossyCobblestoneStairs_WestTopOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_WestTopOuterLeftFalse
- | BlockState::EndStoneBrickStairs_SouthTopOuterRightTrue
- | BlockState::EndStoneBrickStairs_SouthTopOuterRightFalse
- | BlockState::EndStoneBrickStairs_WestTopOuterLeftTrue
- | BlockState::EndStoneBrickStairs_WestTopOuterLeftFalse
- | BlockState::StoneStairs_SouthTopOuterRightTrue
- | BlockState::StoneStairs_SouthTopOuterRightFalse
- | BlockState::StoneStairs_WestTopOuterLeftTrue
- | BlockState::StoneStairs_WestTopOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_SouthTopOuterRightTrue
- | BlockState::SmoothSandstoneStairs_SouthTopOuterRightFalse
- | BlockState::SmoothSandstoneStairs_WestTopOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_WestTopOuterLeftFalse
- | BlockState::SmoothQuartzStairs_SouthTopOuterRightTrue
- | BlockState::SmoothQuartzStairs_SouthTopOuterRightFalse
- | BlockState::SmoothQuartzStairs_WestTopOuterLeftTrue
- | BlockState::SmoothQuartzStairs_WestTopOuterLeftFalse
- | BlockState::GraniteStairs_SouthTopOuterRightTrue
- | BlockState::GraniteStairs_SouthTopOuterRightFalse
- | BlockState::GraniteStairs_WestTopOuterLeftTrue
- | BlockState::GraniteStairs_WestTopOuterLeftFalse
- | BlockState::AndesiteStairs_SouthTopOuterRightTrue
- | BlockState::AndesiteStairs_SouthTopOuterRightFalse
- | BlockState::AndesiteStairs_WestTopOuterLeftTrue
- | BlockState::AndesiteStairs_WestTopOuterLeftFalse
- | BlockState::RedNetherBrickStairs_SouthTopOuterRightTrue
- | BlockState::RedNetherBrickStairs_SouthTopOuterRightFalse
- | BlockState::RedNetherBrickStairs_WestTopOuterLeftTrue
- | BlockState::RedNetherBrickStairs_WestTopOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_SouthTopOuterRightTrue
- | BlockState::PolishedAndesiteStairs_SouthTopOuterRightFalse
- | BlockState::PolishedAndesiteStairs_WestTopOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_WestTopOuterLeftFalse
- | BlockState::DioriteStairs_SouthTopOuterRightTrue
- | BlockState::DioriteStairs_SouthTopOuterRightFalse
- | BlockState::DioriteStairs_WestTopOuterLeftTrue
- | BlockState::DioriteStairs_WestTopOuterLeftFalse
- | BlockState::CrimsonStairs_SouthTopOuterRightTrue
- | BlockState::CrimsonStairs_SouthTopOuterRightFalse
- | BlockState::CrimsonStairs_WestTopOuterLeftTrue
- | BlockState::CrimsonStairs_WestTopOuterLeftFalse
- | BlockState::WarpedStairs_SouthTopOuterRightTrue
- | BlockState::WarpedStairs_SouthTopOuterRightFalse
- | BlockState::WarpedStairs_WestTopOuterLeftTrue
- | BlockState::WarpedStairs_WestTopOuterLeftFalse
- | BlockState::BlackstoneStairs_SouthTopOuterRightTrue
- | BlockState::BlackstoneStairs_SouthTopOuterRightFalse
- | BlockState::BlackstoneStairs_WestTopOuterLeftTrue
- | BlockState::BlackstoneStairs_WestTopOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthTopOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestTopOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestTopOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_SouthTopOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_SouthTopOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_WestTopOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_WestTopOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::ExposedCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::ExposedCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::CutCopperStairs_SouthTopOuterRightTrue
- | BlockState::CutCopperStairs_SouthTopOuterRightFalse
- | BlockState::CutCopperStairs_WestTopOuterLeftTrue
- | BlockState::CutCopperStairs_WestTopOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_SouthTopOuterRightTrue
- | BlockState::WaxedCutCopperStairs_SouthTopOuterRightFalse
- | BlockState::WaxedCutCopperStairs_WestTopOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_WestTopOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_SouthTopOuterRightTrue
- | BlockState::CobbledDeepslateStairs_SouthTopOuterRightFalse
- | BlockState::CobbledDeepslateStairs_WestTopOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_WestTopOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_SouthTopOuterRightTrue
- | BlockState::PolishedDeepslateStairs_SouthTopOuterRightFalse
- | BlockState::PolishedDeepslateStairs_WestTopOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_WestTopOuterLeftFalse
- | BlockState::DeepslateTileStairs_SouthTopOuterRightTrue
- | BlockState::DeepslateTileStairs_SouthTopOuterRightFalse
- | BlockState::DeepslateTileStairs_WestTopOuterLeftTrue
- | BlockState::DeepslateTileStairs_WestTopOuterLeftFalse
- | BlockState::DeepslateBrickStairs_SouthTopOuterRightTrue
- | BlockState::DeepslateBrickStairs_SouthTopOuterRightFalse
- | BlockState::DeepslateBrickStairs_WestTopOuterLeftTrue
- | BlockState::DeepslateBrickStairs_WestTopOuterLeftFalse => &SHAPE52,
- BlockState::OakStairs_SouthBottomStraightTrue
- | BlockState::OakStairs_SouthBottomStraightFalse
- | BlockState::CobblestoneStairs_SouthBottomStraightTrue
- | BlockState::CobblestoneStairs_SouthBottomStraightFalse
- | BlockState::BrickStairs_SouthBottomStraightTrue
- | BlockState::BrickStairs_SouthBottomStraightFalse
- | BlockState::StoneBrickStairs_SouthBottomStraightTrue
- | BlockState::StoneBrickStairs_SouthBottomStraightFalse
- | BlockState::MudBrickStairs_SouthBottomStraightTrue
- | BlockState::MudBrickStairs_SouthBottomStraightFalse
- | BlockState::NetherBrickStairs_SouthBottomStraightTrue
- | BlockState::NetherBrickStairs_SouthBottomStraightFalse
- | BlockState::SandstoneStairs_SouthBottomStraightTrue
- | BlockState::SandstoneStairs_SouthBottomStraightFalse
- | BlockState::SpruceStairs_SouthBottomStraightTrue
- | BlockState::SpruceStairs_SouthBottomStraightFalse
- | BlockState::BirchStairs_SouthBottomStraightTrue
- | BlockState::BirchStairs_SouthBottomStraightFalse
- | BlockState::JungleStairs_SouthBottomStraightTrue
- | BlockState::JungleStairs_SouthBottomStraightFalse
- | BlockState::QuartzStairs_SouthBottomStraightTrue
- | BlockState::QuartzStairs_SouthBottomStraightFalse
- | BlockState::AcaciaStairs_SouthBottomStraightTrue
- | BlockState::AcaciaStairs_SouthBottomStraightFalse
- | BlockState::DarkOakStairs_SouthBottomStraightTrue
- | BlockState::DarkOakStairs_SouthBottomStraightFalse
- | BlockState::MangroveStairs_SouthBottomStraightTrue
- | BlockState::MangroveStairs_SouthBottomStraightFalse
- | BlockState::BambooStairs_SouthBottomStraightTrue
- | BlockState::BambooStairs_SouthBottomStraightFalse
- | BlockState::BambooMosaicStairs_SouthBottomStraightTrue
- | BlockState::BambooMosaicStairs_SouthBottomStraightFalse
- | BlockState::PrismarineStairs_SouthBottomStraightTrue
- | BlockState::PrismarineStairs_SouthBottomStraightFalse
- | BlockState::PrismarineBrickStairs_SouthBottomStraightTrue
- | BlockState::PrismarineBrickStairs_SouthBottomStraightFalse
- | BlockState::DarkPrismarineStairs_SouthBottomStraightTrue
- | BlockState::DarkPrismarineStairs_SouthBottomStraightFalse
- | BlockState::RedSandstoneStairs_SouthBottomStraightTrue
- | BlockState::RedSandstoneStairs_SouthBottomStraightFalse
- | BlockState::PurpurStairs_SouthBottomStraightTrue
- | BlockState::PurpurStairs_SouthBottomStraightFalse
- | BlockState::PolishedGraniteStairs_SouthBottomStraightTrue
- | BlockState::PolishedGraniteStairs_SouthBottomStraightFalse
- | BlockState::SmoothRedSandstoneStairs_SouthBottomStraightTrue
- | BlockState::SmoothRedSandstoneStairs_SouthBottomStraightFalse
- | BlockState::MossyStoneBrickStairs_SouthBottomStraightTrue
- | BlockState::MossyStoneBrickStairs_SouthBottomStraightFalse
- | BlockState::PolishedDioriteStairs_SouthBottomStraightTrue
- | BlockState::PolishedDioriteStairs_SouthBottomStraightFalse
- | BlockState::MossyCobblestoneStairs_SouthBottomStraightTrue
- | BlockState::MossyCobblestoneStairs_SouthBottomStraightFalse
- | BlockState::EndStoneBrickStairs_SouthBottomStraightTrue
- | BlockState::EndStoneBrickStairs_SouthBottomStraightFalse
- | BlockState::StoneStairs_SouthBottomStraightTrue
- | BlockState::StoneStairs_SouthBottomStraightFalse
- | BlockState::SmoothSandstoneStairs_SouthBottomStraightTrue
- | BlockState::SmoothSandstoneStairs_SouthBottomStraightFalse
- | BlockState::SmoothQuartzStairs_SouthBottomStraightTrue
- | BlockState::SmoothQuartzStairs_SouthBottomStraightFalse
- | BlockState::GraniteStairs_SouthBottomStraightTrue
- | BlockState::GraniteStairs_SouthBottomStraightFalse
- | BlockState::AndesiteStairs_SouthBottomStraightTrue
- | BlockState::AndesiteStairs_SouthBottomStraightFalse
- | BlockState::RedNetherBrickStairs_SouthBottomStraightTrue
- | BlockState::RedNetherBrickStairs_SouthBottomStraightFalse
- | BlockState::PolishedAndesiteStairs_SouthBottomStraightTrue
- | BlockState::PolishedAndesiteStairs_SouthBottomStraightFalse
- | BlockState::DioriteStairs_SouthBottomStraightTrue
- | BlockState::DioriteStairs_SouthBottomStraightFalse
- | BlockState::CrimsonStairs_SouthBottomStraightTrue
- | BlockState::CrimsonStairs_SouthBottomStraightFalse
- | BlockState::WarpedStairs_SouthBottomStraightTrue
- | BlockState::WarpedStairs_SouthBottomStraightFalse
- | BlockState::BlackstoneStairs_SouthBottomStraightTrue
- | BlockState::BlackstoneStairs_SouthBottomStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomStraightFalse
- | BlockState::PolishedBlackstoneStairs_SouthBottomStraightTrue
- | BlockState::PolishedBlackstoneStairs_SouthBottomStraightFalse
- | BlockState::OxidizedCutCopperStairs_SouthBottomStraightTrue
- | BlockState::OxidizedCutCopperStairs_SouthBottomStraightFalse
- | BlockState::WeatheredCutCopperStairs_SouthBottomStraightTrue
- | BlockState::WeatheredCutCopperStairs_SouthBottomStraightFalse
- | BlockState::ExposedCutCopperStairs_SouthBottomStraightTrue
- | BlockState::ExposedCutCopperStairs_SouthBottomStraightFalse
- | BlockState::CutCopperStairs_SouthBottomStraightTrue
- | BlockState::CutCopperStairs_SouthBottomStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomStraightFalse
- | BlockState::WaxedCutCopperStairs_SouthBottomStraightTrue
- | BlockState::WaxedCutCopperStairs_SouthBottomStraightFalse
- | BlockState::CobbledDeepslateStairs_SouthBottomStraightTrue
- | BlockState::CobbledDeepslateStairs_SouthBottomStraightFalse
- | BlockState::PolishedDeepslateStairs_SouthBottomStraightTrue
- | BlockState::PolishedDeepslateStairs_SouthBottomStraightFalse
- | BlockState::DeepslateTileStairs_SouthBottomStraightTrue
- | BlockState::DeepslateTileStairs_SouthBottomStraightFalse
- | BlockState::DeepslateBrickStairs_SouthBottomStraightTrue
- | BlockState::DeepslateBrickStairs_SouthBottomStraightFalse => &SHAPE53,
- BlockState::OakStairs_SouthBottomInnerLeftTrue
- | BlockState::OakStairs_SouthBottomInnerLeftFalse
- | BlockState::OakStairs_EastBottomInnerRightTrue
- | BlockState::OakStairs_EastBottomInnerRightFalse
- | BlockState::CobblestoneStairs_SouthBottomInnerLeftTrue
- | BlockState::CobblestoneStairs_SouthBottomInnerLeftFalse
- | BlockState::CobblestoneStairs_EastBottomInnerRightTrue
- | BlockState::CobblestoneStairs_EastBottomInnerRightFalse
- | BlockState::BrickStairs_SouthBottomInnerLeftTrue
- | BlockState::BrickStairs_SouthBottomInnerLeftFalse
- | BlockState::BrickStairs_EastBottomInnerRightTrue
- | BlockState::BrickStairs_EastBottomInnerRightFalse
- | BlockState::StoneBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::StoneBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::StoneBrickStairs_EastBottomInnerRightTrue
- | BlockState::StoneBrickStairs_EastBottomInnerRightFalse
- | BlockState::MudBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::MudBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::MudBrickStairs_EastBottomInnerRightTrue
- | BlockState::MudBrickStairs_EastBottomInnerRightFalse
- | BlockState::NetherBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::NetherBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::NetherBrickStairs_EastBottomInnerRightTrue
- | BlockState::NetherBrickStairs_EastBottomInnerRightFalse
- | BlockState::SandstoneStairs_SouthBottomInnerLeftTrue
- | BlockState::SandstoneStairs_SouthBottomInnerLeftFalse
- | BlockState::SandstoneStairs_EastBottomInnerRightTrue
- | BlockState::SandstoneStairs_EastBottomInnerRightFalse
- | BlockState::SpruceStairs_SouthBottomInnerLeftTrue
- | BlockState::SpruceStairs_SouthBottomInnerLeftFalse
- | BlockState::SpruceStairs_EastBottomInnerRightTrue
- | BlockState::SpruceStairs_EastBottomInnerRightFalse
- | BlockState::BirchStairs_SouthBottomInnerLeftTrue
- | BlockState::BirchStairs_SouthBottomInnerLeftFalse
- | BlockState::BirchStairs_EastBottomInnerRightTrue
- | BlockState::BirchStairs_EastBottomInnerRightFalse
- | BlockState::JungleStairs_SouthBottomInnerLeftTrue
- | BlockState::JungleStairs_SouthBottomInnerLeftFalse
- | BlockState::JungleStairs_EastBottomInnerRightTrue
- | BlockState::JungleStairs_EastBottomInnerRightFalse
- | BlockState::QuartzStairs_SouthBottomInnerLeftTrue
- | BlockState::QuartzStairs_SouthBottomInnerLeftFalse
- | BlockState::QuartzStairs_EastBottomInnerRightTrue
- | BlockState::QuartzStairs_EastBottomInnerRightFalse
- | BlockState::AcaciaStairs_SouthBottomInnerLeftTrue
- | BlockState::AcaciaStairs_SouthBottomInnerLeftFalse
- | BlockState::AcaciaStairs_EastBottomInnerRightTrue
- | BlockState::AcaciaStairs_EastBottomInnerRightFalse
- | BlockState::DarkOakStairs_SouthBottomInnerLeftTrue
- | BlockState::DarkOakStairs_SouthBottomInnerLeftFalse
- | BlockState::DarkOakStairs_EastBottomInnerRightTrue
- | BlockState::DarkOakStairs_EastBottomInnerRightFalse
- | BlockState::MangroveStairs_SouthBottomInnerLeftTrue
- | BlockState::MangroveStairs_SouthBottomInnerLeftFalse
- | BlockState::MangroveStairs_EastBottomInnerRightTrue
- | BlockState::MangroveStairs_EastBottomInnerRightFalse
- | BlockState::BambooStairs_SouthBottomInnerLeftTrue
- | BlockState::BambooStairs_SouthBottomInnerLeftFalse
- | BlockState::BambooStairs_EastBottomInnerRightTrue
- | BlockState::BambooStairs_EastBottomInnerRightFalse
- | BlockState::BambooMosaicStairs_SouthBottomInnerLeftTrue
- | BlockState::BambooMosaicStairs_SouthBottomInnerLeftFalse
- | BlockState::BambooMosaicStairs_EastBottomInnerRightTrue
- | BlockState::BambooMosaicStairs_EastBottomInnerRightFalse
- | BlockState::PrismarineStairs_SouthBottomInnerLeftTrue
- | BlockState::PrismarineStairs_SouthBottomInnerLeftFalse
- | BlockState::PrismarineStairs_EastBottomInnerRightTrue
- | BlockState::PrismarineStairs_EastBottomInnerRightFalse
- | BlockState::PrismarineBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::PrismarineBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::PrismarineBrickStairs_EastBottomInnerRightTrue
- | BlockState::PrismarineBrickStairs_EastBottomInnerRightFalse
- | BlockState::DarkPrismarineStairs_SouthBottomInnerLeftTrue
- | BlockState::DarkPrismarineStairs_SouthBottomInnerLeftFalse
- | BlockState::DarkPrismarineStairs_EastBottomInnerRightTrue
- | BlockState::DarkPrismarineStairs_EastBottomInnerRightFalse
- | BlockState::RedSandstoneStairs_SouthBottomInnerLeftTrue
- | BlockState::RedSandstoneStairs_SouthBottomInnerLeftFalse
- | BlockState::RedSandstoneStairs_EastBottomInnerRightTrue
- | BlockState::RedSandstoneStairs_EastBottomInnerRightFalse
- | BlockState::PurpurStairs_SouthBottomInnerLeftTrue
- | BlockState::PurpurStairs_SouthBottomInnerLeftFalse
- | BlockState::PurpurStairs_EastBottomInnerRightTrue
- | BlockState::PurpurStairs_EastBottomInnerRightFalse
- | BlockState::PolishedGraniteStairs_SouthBottomInnerLeftTrue
- | BlockState::PolishedGraniteStairs_SouthBottomInnerLeftFalse
- | BlockState::PolishedGraniteStairs_EastBottomInnerRightTrue
- | BlockState::PolishedGraniteStairs_EastBottomInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_SouthBottomInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_SouthBottomInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_EastBottomInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_EastBottomInnerRightFalse
- | BlockState::MossyStoneBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_EastBottomInnerRightTrue
- | BlockState::MossyStoneBrickStairs_EastBottomInnerRightFalse
- | BlockState::PolishedDioriteStairs_SouthBottomInnerLeftTrue
- | BlockState::PolishedDioriteStairs_SouthBottomInnerLeftFalse
- | BlockState::PolishedDioriteStairs_EastBottomInnerRightTrue
- | BlockState::PolishedDioriteStairs_EastBottomInnerRightFalse
- | BlockState::MossyCobblestoneStairs_SouthBottomInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_SouthBottomInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_EastBottomInnerRightTrue
- | BlockState::MossyCobblestoneStairs_EastBottomInnerRightFalse
- | BlockState::EndStoneBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::EndStoneBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::EndStoneBrickStairs_EastBottomInnerRightTrue
- | BlockState::EndStoneBrickStairs_EastBottomInnerRightFalse
- | BlockState::StoneStairs_SouthBottomInnerLeftTrue
- | BlockState::StoneStairs_SouthBottomInnerLeftFalse
- | BlockState::StoneStairs_EastBottomInnerRightTrue
- | BlockState::StoneStairs_EastBottomInnerRightFalse
- | BlockState::SmoothSandstoneStairs_SouthBottomInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_SouthBottomInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_EastBottomInnerRightTrue
- | BlockState::SmoothSandstoneStairs_EastBottomInnerRightFalse
- | BlockState::SmoothQuartzStairs_SouthBottomInnerLeftTrue
- | BlockState::SmoothQuartzStairs_SouthBottomInnerLeftFalse
- | BlockState::SmoothQuartzStairs_EastBottomInnerRightTrue
- | BlockState::SmoothQuartzStairs_EastBottomInnerRightFalse
- | BlockState::GraniteStairs_SouthBottomInnerLeftTrue
- | BlockState::GraniteStairs_SouthBottomInnerLeftFalse
- | BlockState::GraniteStairs_EastBottomInnerRightTrue
- | BlockState::GraniteStairs_EastBottomInnerRightFalse
- | BlockState::AndesiteStairs_SouthBottomInnerLeftTrue
- | BlockState::AndesiteStairs_SouthBottomInnerLeftFalse
- | BlockState::AndesiteStairs_EastBottomInnerRightTrue
- | BlockState::AndesiteStairs_EastBottomInnerRightFalse
- | BlockState::RedNetherBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::RedNetherBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::RedNetherBrickStairs_EastBottomInnerRightTrue
- | BlockState::RedNetherBrickStairs_EastBottomInnerRightFalse
- | BlockState::PolishedAndesiteStairs_SouthBottomInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_SouthBottomInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_EastBottomInnerRightTrue
- | BlockState::PolishedAndesiteStairs_EastBottomInnerRightFalse
- | BlockState::DioriteStairs_SouthBottomInnerLeftTrue
- | BlockState::DioriteStairs_SouthBottomInnerLeftFalse
- | BlockState::DioriteStairs_EastBottomInnerRightTrue
- | BlockState::DioriteStairs_EastBottomInnerRightFalse
- | BlockState::CrimsonStairs_SouthBottomInnerLeftTrue
- | BlockState::CrimsonStairs_SouthBottomInnerLeftFalse
- | BlockState::CrimsonStairs_EastBottomInnerRightTrue
- | BlockState::CrimsonStairs_EastBottomInnerRightFalse
- | BlockState::WarpedStairs_SouthBottomInnerLeftTrue
- | BlockState::WarpedStairs_SouthBottomInnerLeftFalse
- | BlockState::WarpedStairs_EastBottomInnerRightTrue
- | BlockState::WarpedStairs_EastBottomInnerRightFalse
- | BlockState::BlackstoneStairs_SouthBottomInnerLeftTrue
- | BlockState::BlackstoneStairs_SouthBottomInnerLeftFalse
- | BlockState::BlackstoneStairs_EastBottomInnerRightTrue
- | BlockState::BlackstoneStairs_EastBottomInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_SouthBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_SouthBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_EastBottomInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_EastBottomInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::ExposedCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::ExposedCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::CutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::CutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::CutCopperStairs_EastBottomInnerRightTrue
- | BlockState::CutCopperStairs_EastBottomInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::WaxedCutCopperStairs_SouthBottomInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_SouthBottomInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_EastBottomInnerRightTrue
- | BlockState::WaxedCutCopperStairs_EastBottomInnerRightFalse
- | BlockState::CobbledDeepslateStairs_SouthBottomInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_SouthBottomInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_EastBottomInnerRightTrue
- | BlockState::CobbledDeepslateStairs_EastBottomInnerRightFalse
- | BlockState::PolishedDeepslateStairs_SouthBottomInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_SouthBottomInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_EastBottomInnerRightTrue
- | BlockState::PolishedDeepslateStairs_EastBottomInnerRightFalse
- | BlockState::DeepslateTileStairs_SouthBottomInnerLeftTrue
- | BlockState::DeepslateTileStairs_SouthBottomInnerLeftFalse
- | BlockState::DeepslateTileStairs_EastBottomInnerRightTrue
- | BlockState::DeepslateTileStairs_EastBottomInnerRightFalse
- | BlockState::DeepslateBrickStairs_SouthBottomInnerLeftTrue
- | BlockState::DeepslateBrickStairs_SouthBottomInnerLeftFalse
- | BlockState::DeepslateBrickStairs_EastBottomInnerRightTrue
- | BlockState::DeepslateBrickStairs_EastBottomInnerRightFalse => &SHAPE54,
- BlockState::OakStairs_SouthBottomInnerRightTrue
- | BlockState::OakStairs_SouthBottomInnerRightFalse
- | BlockState::OakStairs_WestBottomInnerLeftTrue
- | BlockState::OakStairs_WestBottomInnerLeftFalse
- | BlockState::CobblestoneStairs_SouthBottomInnerRightTrue
- | BlockState::CobblestoneStairs_SouthBottomInnerRightFalse
- | BlockState::CobblestoneStairs_WestBottomInnerLeftTrue
- | BlockState::CobblestoneStairs_WestBottomInnerLeftFalse
- | BlockState::BrickStairs_SouthBottomInnerRightTrue
- | BlockState::BrickStairs_SouthBottomInnerRightFalse
- | BlockState::BrickStairs_WestBottomInnerLeftTrue
- | BlockState::BrickStairs_WestBottomInnerLeftFalse
- | BlockState::StoneBrickStairs_SouthBottomInnerRightTrue
- | BlockState::StoneBrickStairs_SouthBottomInnerRightFalse
- | BlockState::StoneBrickStairs_WestBottomInnerLeftTrue
- | BlockState::StoneBrickStairs_WestBottomInnerLeftFalse
- | BlockState::MudBrickStairs_SouthBottomInnerRightTrue
- | BlockState::MudBrickStairs_SouthBottomInnerRightFalse
- | BlockState::MudBrickStairs_WestBottomInnerLeftTrue
- | BlockState::MudBrickStairs_WestBottomInnerLeftFalse
- | BlockState::NetherBrickStairs_SouthBottomInnerRightTrue
- | BlockState::NetherBrickStairs_SouthBottomInnerRightFalse
- | BlockState::NetherBrickStairs_WestBottomInnerLeftTrue
- | BlockState::NetherBrickStairs_WestBottomInnerLeftFalse
- | BlockState::SandstoneStairs_SouthBottomInnerRightTrue
- | BlockState::SandstoneStairs_SouthBottomInnerRightFalse
- | BlockState::SandstoneStairs_WestBottomInnerLeftTrue
- | BlockState::SandstoneStairs_WestBottomInnerLeftFalse
- | BlockState::SpruceStairs_SouthBottomInnerRightTrue
- | BlockState::SpruceStairs_SouthBottomInnerRightFalse
- | BlockState::SpruceStairs_WestBottomInnerLeftTrue
- | BlockState::SpruceStairs_WestBottomInnerLeftFalse
- | BlockState::BirchStairs_SouthBottomInnerRightTrue
- | BlockState::BirchStairs_SouthBottomInnerRightFalse
- | BlockState::BirchStairs_WestBottomInnerLeftTrue
- | BlockState::BirchStairs_WestBottomInnerLeftFalse
- | BlockState::JungleStairs_SouthBottomInnerRightTrue
- | BlockState::JungleStairs_SouthBottomInnerRightFalse
- | BlockState::JungleStairs_WestBottomInnerLeftTrue
- | BlockState::JungleStairs_WestBottomInnerLeftFalse
- | BlockState::QuartzStairs_SouthBottomInnerRightTrue
- | BlockState::QuartzStairs_SouthBottomInnerRightFalse
- | BlockState::QuartzStairs_WestBottomInnerLeftTrue
- | BlockState::QuartzStairs_WestBottomInnerLeftFalse
- | BlockState::AcaciaStairs_SouthBottomInnerRightTrue
- | BlockState::AcaciaStairs_SouthBottomInnerRightFalse
- | BlockState::AcaciaStairs_WestBottomInnerLeftTrue
- | BlockState::AcaciaStairs_WestBottomInnerLeftFalse
- | BlockState::DarkOakStairs_SouthBottomInnerRightTrue
- | BlockState::DarkOakStairs_SouthBottomInnerRightFalse
- | BlockState::DarkOakStairs_WestBottomInnerLeftTrue
- | BlockState::DarkOakStairs_WestBottomInnerLeftFalse
- | BlockState::MangroveStairs_SouthBottomInnerRightTrue
- | BlockState::MangroveStairs_SouthBottomInnerRightFalse
- | BlockState::MangroveStairs_WestBottomInnerLeftTrue
- | BlockState::MangroveStairs_WestBottomInnerLeftFalse
- | BlockState::BambooStairs_SouthBottomInnerRightTrue
- | BlockState::BambooStairs_SouthBottomInnerRightFalse
- | BlockState::BambooStairs_WestBottomInnerLeftTrue
- | BlockState::BambooStairs_WestBottomInnerLeftFalse
- | BlockState::BambooMosaicStairs_SouthBottomInnerRightTrue
- | BlockState::BambooMosaicStairs_SouthBottomInnerRightFalse
- | BlockState::BambooMosaicStairs_WestBottomInnerLeftTrue
- | BlockState::BambooMosaicStairs_WestBottomInnerLeftFalse
- | BlockState::PrismarineStairs_SouthBottomInnerRightTrue
- | BlockState::PrismarineStairs_SouthBottomInnerRightFalse
- | BlockState::PrismarineStairs_WestBottomInnerLeftTrue
- | BlockState::PrismarineStairs_WestBottomInnerLeftFalse
- | BlockState::PrismarineBrickStairs_SouthBottomInnerRightTrue
- | BlockState::PrismarineBrickStairs_SouthBottomInnerRightFalse
- | BlockState::PrismarineBrickStairs_WestBottomInnerLeftTrue
- | BlockState::PrismarineBrickStairs_WestBottomInnerLeftFalse
- | BlockState::DarkPrismarineStairs_SouthBottomInnerRightTrue
- | BlockState::DarkPrismarineStairs_SouthBottomInnerRightFalse
- | BlockState::DarkPrismarineStairs_WestBottomInnerLeftTrue
- | BlockState::DarkPrismarineStairs_WestBottomInnerLeftFalse
- | BlockState::RedSandstoneStairs_SouthBottomInnerRightTrue
- | BlockState::RedSandstoneStairs_SouthBottomInnerRightFalse
- | BlockState::RedSandstoneStairs_WestBottomInnerLeftTrue
- | BlockState::RedSandstoneStairs_WestBottomInnerLeftFalse
- | BlockState::PurpurStairs_SouthBottomInnerRightTrue
- | BlockState::PurpurStairs_SouthBottomInnerRightFalse
- | BlockState::PurpurStairs_WestBottomInnerLeftTrue
- | BlockState::PurpurStairs_WestBottomInnerLeftFalse
- | BlockState::PolishedGraniteStairs_SouthBottomInnerRightTrue
- | BlockState::PolishedGraniteStairs_SouthBottomInnerRightFalse
- | BlockState::PolishedGraniteStairs_WestBottomInnerLeftTrue
- | BlockState::PolishedGraniteStairs_WestBottomInnerLeftFalse
- | BlockState::SmoothRedSandstoneStairs_SouthBottomInnerRightTrue
- | BlockState::SmoothRedSandstoneStairs_SouthBottomInnerRightFalse
- | BlockState::SmoothRedSandstoneStairs_WestBottomInnerLeftTrue
- | BlockState::SmoothRedSandstoneStairs_WestBottomInnerLeftFalse
- | BlockState::MossyStoneBrickStairs_SouthBottomInnerRightTrue
- | BlockState::MossyStoneBrickStairs_SouthBottomInnerRightFalse
- | BlockState::MossyStoneBrickStairs_WestBottomInnerLeftTrue
- | BlockState::MossyStoneBrickStairs_WestBottomInnerLeftFalse
- | BlockState::PolishedDioriteStairs_SouthBottomInnerRightTrue
- | BlockState::PolishedDioriteStairs_SouthBottomInnerRightFalse
- | BlockState::PolishedDioriteStairs_WestBottomInnerLeftTrue
- | BlockState::PolishedDioriteStairs_WestBottomInnerLeftFalse
- | BlockState::MossyCobblestoneStairs_SouthBottomInnerRightTrue
- | BlockState::MossyCobblestoneStairs_SouthBottomInnerRightFalse
- | BlockState::MossyCobblestoneStairs_WestBottomInnerLeftTrue
- | BlockState::MossyCobblestoneStairs_WestBottomInnerLeftFalse
- | BlockState::EndStoneBrickStairs_SouthBottomInnerRightTrue
- | BlockState::EndStoneBrickStairs_SouthBottomInnerRightFalse
- | BlockState::EndStoneBrickStairs_WestBottomInnerLeftTrue
- | BlockState::EndStoneBrickStairs_WestBottomInnerLeftFalse
- | BlockState::StoneStairs_SouthBottomInnerRightTrue
- | BlockState::StoneStairs_SouthBottomInnerRightFalse
- | BlockState::StoneStairs_WestBottomInnerLeftTrue
- | BlockState::StoneStairs_WestBottomInnerLeftFalse
- | BlockState::SmoothSandstoneStairs_SouthBottomInnerRightTrue
- | BlockState::SmoothSandstoneStairs_SouthBottomInnerRightFalse
- | BlockState::SmoothSandstoneStairs_WestBottomInnerLeftTrue
- | BlockState::SmoothSandstoneStairs_WestBottomInnerLeftFalse
- | BlockState::SmoothQuartzStairs_SouthBottomInnerRightTrue
- | BlockState::SmoothQuartzStairs_SouthBottomInnerRightFalse
- | BlockState::SmoothQuartzStairs_WestBottomInnerLeftTrue
- | BlockState::SmoothQuartzStairs_WestBottomInnerLeftFalse
- | BlockState::GraniteStairs_SouthBottomInnerRightTrue
- | BlockState::GraniteStairs_SouthBottomInnerRightFalse
- | BlockState::GraniteStairs_WestBottomInnerLeftTrue
- | BlockState::GraniteStairs_WestBottomInnerLeftFalse
- | BlockState::AndesiteStairs_SouthBottomInnerRightTrue
- | BlockState::AndesiteStairs_SouthBottomInnerRightFalse
- | BlockState::AndesiteStairs_WestBottomInnerLeftTrue
- | BlockState::AndesiteStairs_WestBottomInnerLeftFalse
- | BlockState::RedNetherBrickStairs_SouthBottomInnerRightTrue
- | BlockState::RedNetherBrickStairs_SouthBottomInnerRightFalse
- | BlockState::RedNetherBrickStairs_WestBottomInnerLeftTrue
- | BlockState::RedNetherBrickStairs_WestBottomInnerLeftFalse
- | BlockState::PolishedAndesiteStairs_SouthBottomInnerRightTrue
- | BlockState::PolishedAndesiteStairs_SouthBottomInnerRightFalse
- | BlockState::PolishedAndesiteStairs_WestBottomInnerLeftTrue
- | BlockState::PolishedAndesiteStairs_WestBottomInnerLeftFalse
- | BlockState::DioriteStairs_SouthBottomInnerRightTrue
- | BlockState::DioriteStairs_SouthBottomInnerRightFalse
- | BlockState::DioriteStairs_WestBottomInnerLeftTrue
- | BlockState::DioriteStairs_WestBottomInnerLeftFalse
- | BlockState::CrimsonStairs_SouthBottomInnerRightTrue
- | BlockState::CrimsonStairs_SouthBottomInnerRightFalse
- | BlockState::CrimsonStairs_WestBottomInnerLeftTrue
- | BlockState::CrimsonStairs_WestBottomInnerLeftFalse
- | BlockState::WarpedStairs_SouthBottomInnerRightTrue
- | BlockState::WarpedStairs_SouthBottomInnerRightFalse
- | BlockState::WarpedStairs_WestBottomInnerLeftTrue
- | BlockState::WarpedStairs_WestBottomInnerLeftFalse
- | BlockState::BlackstoneStairs_SouthBottomInnerRightTrue
- | BlockState::BlackstoneStairs_SouthBottomInnerRightFalse
- | BlockState::BlackstoneStairs_WestBottomInnerLeftTrue
- | BlockState::BlackstoneStairs_WestBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomInnerRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomInnerRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomInnerLeftFalse
- | BlockState::PolishedBlackstoneStairs_SouthBottomInnerRightTrue
- | BlockState::PolishedBlackstoneStairs_SouthBottomInnerRightFalse
- | BlockState::PolishedBlackstoneStairs_WestBottomInnerLeftTrue
- | BlockState::PolishedBlackstoneStairs_WestBottomInnerLeftFalse
- | BlockState::OxidizedCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::OxidizedCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::OxidizedCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::OxidizedCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::WeatheredCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::WeatheredCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::WeatheredCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::WeatheredCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::ExposedCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::ExposedCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::ExposedCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::ExposedCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::CutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::CutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::CutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::CutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::WaxedExposedCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::WaxedCutCopperStairs_SouthBottomInnerRightTrue
- | BlockState::WaxedCutCopperStairs_SouthBottomInnerRightFalse
- | BlockState::WaxedCutCopperStairs_WestBottomInnerLeftTrue
- | BlockState::WaxedCutCopperStairs_WestBottomInnerLeftFalse
- | BlockState::CobbledDeepslateStairs_SouthBottomInnerRightTrue
- | BlockState::CobbledDeepslateStairs_SouthBottomInnerRightFalse
- | BlockState::CobbledDeepslateStairs_WestBottomInnerLeftTrue
- | BlockState::CobbledDeepslateStairs_WestBottomInnerLeftFalse
- | BlockState::PolishedDeepslateStairs_SouthBottomInnerRightTrue
- | BlockState::PolishedDeepslateStairs_SouthBottomInnerRightFalse
- | BlockState::PolishedDeepslateStairs_WestBottomInnerLeftTrue
- | BlockState::PolishedDeepslateStairs_WestBottomInnerLeftFalse
- | BlockState::DeepslateTileStairs_SouthBottomInnerRightTrue
- | BlockState::DeepslateTileStairs_SouthBottomInnerRightFalse
- | BlockState::DeepslateTileStairs_WestBottomInnerLeftTrue
- | BlockState::DeepslateTileStairs_WestBottomInnerLeftFalse
- | BlockState::DeepslateBrickStairs_SouthBottomInnerRightTrue
- | BlockState::DeepslateBrickStairs_SouthBottomInnerRightFalse
- | BlockState::DeepslateBrickStairs_WestBottomInnerLeftTrue
- | BlockState::DeepslateBrickStairs_WestBottomInnerLeftFalse => &SHAPE55,
- BlockState::OakStairs_SouthBottomOuterLeftTrue
- | BlockState::OakStairs_SouthBottomOuterLeftFalse
- | BlockState::OakStairs_EastBottomOuterRightTrue
- | BlockState::OakStairs_EastBottomOuterRightFalse
- | BlockState::CobblestoneStairs_SouthBottomOuterLeftTrue
- | BlockState::CobblestoneStairs_SouthBottomOuterLeftFalse
- | BlockState::CobblestoneStairs_EastBottomOuterRightTrue
- | BlockState::CobblestoneStairs_EastBottomOuterRightFalse
- | BlockState::BrickStairs_SouthBottomOuterLeftTrue
- | BlockState::BrickStairs_SouthBottomOuterLeftFalse
- | BlockState::BrickStairs_EastBottomOuterRightTrue
- | BlockState::BrickStairs_EastBottomOuterRightFalse
- | BlockState::StoneBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::StoneBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::StoneBrickStairs_EastBottomOuterRightTrue
- | BlockState::StoneBrickStairs_EastBottomOuterRightFalse
- | BlockState::MudBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::MudBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::MudBrickStairs_EastBottomOuterRightTrue
- | BlockState::MudBrickStairs_EastBottomOuterRightFalse
- | BlockState::NetherBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::NetherBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::NetherBrickStairs_EastBottomOuterRightTrue
- | BlockState::NetherBrickStairs_EastBottomOuterRightFalse
- | BlockState::SandstoneStairs_SouthBottomOuterLeftTrue
- | BlockState::SandstoneStairs_SouthBottomOuterLeftFalse
- | BlockState::SandstoneStairs_EastBottomOuterRightTrue
- | BlockState::SandstoneStairs_EastBottomOuterRightFalse
- | BlockState::SpruceStairs_SouthBottomOuterLeftTrue
- | BlockState::SpruceStairs_SouthBottomOuterLeftFalse
- | BlockState::SpruceStairs_EastBottomOuterRightTrue
- | BlockState::SpruceStairs_EastBottomOuterRightFalse
- | BlockState::BirchStairs_SouthBottomOuterLeftTrue
- | BlockState::BirchStairs_SouthBottomOuterLeftFalse
- | BlockState::BirchStairs_EastBottomOuterRightTrue
- | BlockState::BirchStairs_EastBottomOuterRightFalse
- | BlockState::JungleStairs_SouthBottomOuterLeftTrue
- | BlockState::JungleStairs_SouthBottomOuterLeftFalse
- | BlockState::JungleStairs_EastBottomOuterRightTrue
- | BlockState::JungleStairs_EastBottomOuterRightFalse
- | BlockState::QuartzStairs_SouthBottomOuterLeftTrue
- | BlockState::QuartzStairs_SouthBottomOuterLeftFalse
- | BlockState::QuartzStairs_EastBottomOuterRightTrue
- | BlockState::QuartzStairs_EastBottomOuterRightFalse
- | BlockState::AcaciaStairs_SouthBottomOuterLeftTrue
- | BlockState::AcaciaStairs_SouthBottomOuterLeftFalse
- | BlockState::AcaciaStairs_EastBottomOuterRightTrue
- | BlockState::AcaciaStairs_EastBottomOuterRightFalse
- | BlockState::DarkOakStairs_SouthBottomOuterLeftTrue
- | BlockState::DarkOakStairs_SouthBottomOuterLeftFalse
- | BlockState::DarkOakStairs_EastBottomOuterRightTrue
- | BlockState::DarkOakStairs_EastBottomOuterRightFalse
- | BlockState::MangroveStairs_SouthBottomOuterLeftTrue
- | BlockState::MangroveStairs_SouthBottomOuterLeftFalse
- | BlockState::MangroveStairs_EastBottomOuterRightTrue
- | BlockState::MangroveStairs_EastBottomOuterRightFalse
- | BlockState::BambooStairs_SouthBottomOuterLeftTrue
- | BlockState::BambooStairs_SouthBottomOuterLeftFalse
- | BlockState::BambooStairs_EastBottomOuterRightTrue
- | BlockState::BambooStairs_EastBottomOuterRightFalse
- | BlockState::BambooMosaicStairs_SouthBottomOuterLeftTrue
- | BlockState::BambooMosaicStairs_SouthBottomOuterLeftFalse
- | BlockState::BambooMosaicStairs_EastBottomOuterRightTrue
- | BlockState::BambooMosaicStairs_EastBottomOuterRightFalse
- | BlockState::PrismarineStairs_SouthBottomOuterLeftTrue
- | BlockState::PrismarineStairs_SouthBottomOuterLeftFalse
- | BlockState::PrismarineStairs_EastBottomOuterRightTrue
- | BlockState::PrismarineStairs_EastBottomOuterRightFalse
- | BlockState::PrismarineBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::PrismarineBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::PrismarineBrickStairs_EastBottomOuterRightTrue
- | BlockState::PrismarineBrickStairs_EastBottomOuterRightFalse
- | BlockState::DarkPrismarineStairs_SouthBottomOuterLeftTrue
- | BlockState::DarkPrismarineStairs_SouthBottomOuterLeftFalse
- | BlockState::DarkPrismarineStairs_EastBottomOuterRightTrue
- | BlockState::DarkPrismarineStairs_EastBottomOuterRightFalse
- | BlockState::RedSandstoneStairs_SouthBottomOuterLeftTrue
- | BlockState::RedSandstoneStairs_SouthBottomOuterLeftFalse
- | BlockState::RedSandstoneStairs_EastBottomOuterRightTrue
- | BlockState::RedSandstoneStairs_EastBottomOuterRightFalse
- | BlockState::PurpurStairs_SouthBottomOuterLeftTrue
- | BlockState::PurpurStairs_SouthBottomOuterLeftFalse
- | BlockState::PurpurStairs_EastBottomOuterRightTrue
- | BlockState::PurpurStairs_EastBottomOuterRightFalse
- | BlockState::PolishedGraniteStairs_SouthBottomOuterLeftTrue
- | BlockState::PolishedGraniteStairs_SouthBottomOuterLeftFalse
- | BlockState::PolishedGraniteStairs_EastBottomOuterRightTrue
- | BlockState::PolishedGraniteStairs_EastBottomOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_SouthBottomOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_SouthBottomOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_EastBottomOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_EastBottomOuterRightFalse
- | BlockState::MossyStoneBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_EastBottomOuterRightTrue
- | BlockState::MossyStoneBrickStairs_EastBottomOuterRightFalse
- | BlockState::PolishedDioriteStairs_SouthBottomOuterLeftTrue
- | BlockState::PolishedDioriteStairs_SouthBottomOuterLeftFalse
- | BlockState::PolishedDioriteStairs_EastBottomOuterRightTrue
- | BlockState::PolishedDioriteStairs_EastBottomOuterRightFalse
- | BlockState::MossyCobblestoneStairs_SouthBottomOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_SouthBottomOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_EastBottomOuterRightTrue
- | BlockState::MossyCobblestoneStairs_EastBottomOuterRightFalse
- | BlockState::EndStoneBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::EndStoneBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::EndStoneBrickStairs_EastBottomOuterRightTrue
- | BlockState::EndStoneBrickStairs_EastBottomOuterRightFalse
- | BlockState::StoneStairs_SouthBottomOuterLeftTrue
- | BlockState::StoneStairs_SouthBottomOuterLeftFalse
- | BlockState::StoneStairs_EastBottomOuterRightTrue
- | BlockState::StoneStairs_EastBottomOuterRightFalse
- | BlockState::SmoothSandstoneStairs_SouthBottomOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_SouthBottomOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_EastBottomOuterRightTrue
- | BlockState::SmoothSandstoneStairs_EastBottomOuterRightFalse
- | BlockState::SmoothQuartzStairs_SouthBottomOuterLeftTrue
- | BlockState::SmoothQuartzStairs_SouthBottomOuterLeftFalse
- | BlockState::SmoothQuartzStairs_EastBottomOuterRightTrue
- | BlockState::SmoothQuartzStairs_EastBottomOuterRightFalse
- | BlockState::GraniteStairs_SouthBottomOuterLeftTrue
- | BlockState::GraniteStairs_SouthBottomOuterLeftFalse
- | BlockState::GraniteStairs_EastBottomOuterRightTrue
- | BlockState::GraniteStairs_EastBottomOuterRightFalse
- | BlockState::AndesiteStairs_SouthBottomOuterLeftTrue
- | BlockState::AndesiteStairs_SouthBottomOuterLeftFalse
- | BlockState::AndesiteStairs_EastBottomOuterRightTrue
- | BlockState::AndesiteStairs_EastBottomOuterRightFalse
- | BlockState::RedNetherBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::RedNetherBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::RedNetherBrickStairs_EastBottomOuterRightTrue
- | BlockState::RedNetherBrickStairs_EastBottomOuterRightFalse
- | BlockState::PolishedAndesiteStairs_SouthBottomOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_SouthBottomOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_EastBottomOuterRightTrue
- | BlockState::PolishedAndesiteStairs_EastBottomOuterRightFalse
- | BlockState::DioriteStairs_SouthBottomOuterLeftTrue
- | BlockState::DioriteStairs_SouthBottomOuterLeftFalse
- | BlockState::DioriteStairs_EastBottomOuterRightTrue
- | BlockState::DioriteStairs_EastBottomOuterRightFalse
- | BlockState::CrimsonStairs_SouthBottomOuterLeftTrue
- | BlockState::CrimsonStairs_SouthBottomOuterLeftFalse
- | BlockState::CrimsonStairs_EastBottomOuterRightTrue
- | BlockState::CrimsonStairs_EastBottomOuterRightFalse
- | BlockState::WarpedStairs_SouthBottomOuterLeftTrue
- | BlockState::WarpedStairs_SouthBottomOuterLeftFalse
- | BlockState::WarpedStairs_EastBottomOuterRightTrue
- | BlockState::WarpedStairs_EastBottomOuterRightFalse
- | BlockState::BlackstoneStairs_SouthBottomOuterLeftTrue
- | BlockState::BlackstoneStairs_SouthBottomOuterLeftFalse
- | BlockState::BlackstoneStairs_EastBottomOuterRightTrue
- | BlockState::BlackstoneStairs_EastBottomOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_SouthBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_SouthBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_EastBottomOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_EastBottomOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::ExposedCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::ExposedCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::CutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::CutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::CutCopperStairs_EastBottomOuterRightTrue
- | BlockState::CutCopperStairs_EastBottomOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::WaxedCutCopperStairs_SouthBottomOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_SouthBottomOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_EastBottomOuterRightTrue
- | BlockState::WaxedCutCopperStairs_EastBottomOuterRightFalse
- | BlockState::CobbledDeepslateStairs_SouthBottomOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_SouthBottomOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_EastBottomOuterRightTrue
- | BlockState::CobbledDeepslateStairs_EastBottomOuterRightFalse
- | BlockState::PolishedDeepslateStairs_SouthBottomOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_SouthBottomOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_EastBottomOuterRightTrue
- | BlockState::PolishedDeepslateStairs_EastBottomOuterRightFalse
- | BlockState::DeepslateTileStairs_SouthBottomOuterLeftTrue
- | BlockState::DeepslateTileStairs_SouthBottomOuterLeftFalse
- | BlockState::DeepslateTileStairs_EastBottomOuterRightTrue
- | BlockState::DeepslateTileStairs_EastBottomOuterRightFalse
- | BlockState::DeepslateBrickStairs_SouthBottomOuterLeftTrue
- | BlockState::DeepslateBrickStairs_SouthBottomOuterLeftFalse
- | BlockState::DeepslateBrickStairs_EastBottomOuterRightTrue
- | BlockState::DeepslateBrickStairs_EastBottomOuterRightFalse => &SHAPE56,
- BlockState::OakStairs_SouthBottomOuterRightTrue
- | BlockState::OakStairs_SouthBottomOuterRightFalse
- | BlockState::OakStairs_WestBottomOuterLeftTrue
- | BlockState::OakStairs_WestBottomOuterLeftFalse
- | BlockState::CobblestoneStairs_SouthBottomOuterRightTrue
- | BlockState::CobblestoneStairs_SouthBottomOuterRightFalse
- | BlockState::CobblestoneStairs_WestBottomOuterLeftTrue
- | BlockState::CobblestoneStairs_WestBottomOuterLeftFalse
- | BlockState::BrickStairs_SouthBottomOuterRightTrue
- | BlockState::BrickStairs_SouthBottomOuterRightFalse
- | BlockState::BrickStairs_WestBottomOuterLeftTrue
- | BlockState::BrickStairs_WestBottomOuterLeftFalse
- | BlockState::StoneBrickStairs_SouthBottomOuterRightTrue
- | BlockState::StoneBrickStairs_SouthBottomOuterRightFalse
- | BlockState::StoneBrickStairs_WestBottomOuterLeftTrue
- | BlockState::StoneBrickStairs_WestBottomOuterLeftFalse
- | BlockState::MudBrickStairs_SouthBottomOuterRightTrue
- | BlockState::MudBrickStairs_SouthBottomOuterRightFalse
- | BlockState::MudBrickStairs_WestBottomOuterLeftTrue
- | BlockState::MudBrickStairs_WestBottomOuterLeftFalse
- | BlockState::NetherBrickStairs_SouthBottomOuterRightTrue
- | BlockState::NetherBrickStairs_SouthBottomOuterRightFalse
- | BlockState::NetherBrickStairs_WestBottomOuterLeftTrue
- | BlockState::NetherBrickStairs_WestBottomOuterLeftFalse
- | BlockState::SandstoneStairs_SouthBottomOuterRightTrue
- | BlockState::SandstoneStairs_SouthBottomOuterRightFalse
- | BlockState::SandstoneStairs_WestBottomOuterLeftTrue
- | BlockState::SandstoneStairs_WestBottomOuterLeftFalse
- | BlockState::SpruceStairs_SouthBottomOuterRightTrue
- | BlockState::SpruceStairs_SouthBottomOuterRightFalse
- | BlockState::SpruceStairs_WestBottomOuterLeftTrue
- | BlockState::SpruceStairs_WestBottomOuterLeftFalse
- | BlockState::BirchStairs_SouthBottomOuterRightTrue
- | BlockState::BirchStairs_SouthBottomOuterRightFalse
- | BlockState::BirchStairs_WestBottomOuterLeftTrue
- | BlockState::BirchStairs_WestBottomOuterLeftFalse
- | BlockState::JungleStairs_SouthBottomOuterRightTrue
- | BlockState::JungleStairs_SouthBottomOuterRightFalse
- | BlockState::JungleStairs_WestBottomOuterLeftTrue
- | BlockState::JungleStairs_WestBottomOuterLeftFalse
- | BlockState::QuartzStairs_SouthBottomOuterRightTrue
- | BlockState::QuartzStairs_SouthBottomOuterRightFalse
- | BlockState::QuartzStairs_WestBottomOuterLeftTrue
- | BlockState::QuartzStairs_WestBottomOuterLeftFalse
- | BlockState::AcaciaStairs_SouthBottomOuterRightTrue
- | BlockState::AcaciaStairs_SouthBottomOuterRightFalse
- | BlockState::AcaciaStairs_WestBottomOuterLeftTrue
- | BlockState::AcaciaStairs_WestBottomOuterLeftFalse
- | BlockState::DarkOakStairs_SouthBottomOuterRightTrue
- | BlockState::DarkOakStairs_SouthBottomOuterRightFalse
- | BlockState::DarkOakStairs_WestBottomOuterLeftTrue
- | BlockState::DarkOakStairs_WestBottomOuterLeftFalse
- | BlockState::MangroveStairs_SouthBottomOuterRightTrue
- | BlockState::MangroveStairs_SouthBottomOuterRightFalse
- | BlockState::MangroveStairs_WestBottomOuterLeftTrue
- | BlockState::MangroveStairs_WestBottomOuterLeftFalse
- | BlockState::BambooStairs_SouthBottomOuterRightTrue
- | BlockState::BambooStairs_SouthBottomOuterRightFalse
- | BlockState::BambooStairs_WestBottomOuterLeftTrue
- | BlockState::BambooStairs_WestBottomOuterLeftFalse
- | BlockState::BambooMosaicStairs_SouthBottomOuterRightTrue
- | BlockState::BambooMosaicStairs_SouthBottomOuterRightFalse
- | BlockState::BambooMosaicStairs_WestBottomOuterLeftTrue
- | BlockState::BambooMosaicStairs_WestBottomOuterLeftFalse
- | BlockState::PrismarineStairs_SouthBottomOuterRightTrue
- | BlockState::PrismarineStairs_SouthBottomOuterRightFalse
- | BlockState::PrismarineStairs_WestBottomOuterLeftTrue
- | BlockState::PrismarineStairs_WestBottomOuterLeftFalse
- | BlockState::PrismarineBrickStairs_SouthBottomOuterRightTrue
- | BlockState::PrismarineBrickStairs_SouthBottomOuterRightFalse
- | BlockState::PrismarineBrickStairs_WestBottomOuterLeftTrue
- | BlockState::PrismarineBrickStairs_WestBottomOuterLeftFalse
- | BlockState::DarkPrismarineStairs_SouthBottomOuterRightTrue
- | BlockState::DarkPrismarineStairs_SouthBottomOuterRightFalse
- | BlockState::DarkPrismarineStairs_WestBottomOuterLeftTrue
- | BlockState::DarkPrismarineStairs_WestBottomOuterLeftFalse
- | BlockState::RedSandstoneStairs_SouthBottomOuterRightTrue
- | BlockState::RedSandstoneStairs_SouthBottomOuterRightFalse
- | BlockState::RedSandstoneStairs_WestBottomOuterLeftTrue
- | BlockState::RedSandstoneStairs_WestBottomOuterLeftFalse
- | BlockState::PurpurStairs_SouthBottomOuterRightTrue
- | BlockState::PurpurStairs_SouthBottomOuterRightFalse
- | BlockState::PurpurStairs_WestBottomOuterLeftTrue
- | BlockState::PurpurStairs_WestBottomOuterLeftFalse
- | BlockState::PolishedGraniteStairs_SouthBottomOuterRightTrue
- | BlockState::PolishedGraniteStairs_SouthBottomOuterRightFalse
- | BlockState::PolishedGraniteStairs_WestBottomOuterLeftTrue
- | BlockState::PolishedGraniteStairs_WestBottomOuterLeftFalse
- | BlockState::SmoothRedSandstoneStairs_SouthBottomOuterRightTrue
- | BlockState::SmoothRedSandstoneStairs_SouthBottomOuterRightFalse
- | BlockState::SmoothRedSandstoneStairs_WestBottomOuterLeftTrue
- | BlockState::SmoothRedSandstoneStairs_WestBottomOuterLeftFalse
- | BlockState::MossyStoneBrickStairs_SouthBottomOuterRightTrue
- | BlockState::MossyStoneBrickStairs_SouthBottomOuterRightFalse
- | BlockState::MossyStoneBrickStairs_WestBottomOuterLeftTrue
- | BlockState::MossyStoneBrickStairs_WestBottomOuterLeftFalse
- | BlockState::PolishedDioriteStairs_SouthBottomOuterRightTrue
- | BlockState::PolishedDioriteStairs_SouthBottomOuterRightFalse
- | BlockState::PolishedDioriteStairs_WestBottomOuterLeftTrue
- | BlockState::PolishedDioriteStairs_WestBottomOuterLeftFalse
- | BlockState::MossyCobblestoneStairs_SouthBottomOuterRightTrue
- | BlockState::MossyCobblestoneStairs_SouthBottomOuterRightFalse
- | BlockState::MossyCobblestoneStairs_WestBottomOuterLeftTrue
- | BlockState::MossyCobblestoneStairs_WestBottomOuterLeftFalse
- | BlockState::EndStoneBrickStairs_SouthBottomOuterRightTrue
- | BlockState::EndStoneBrickStairs_SouthBottomOuterRightFalse
- | BlockState::EndStoneBrickStairs_WestBottomOuterLeftTrue
- | BlockState::EndStoneBrickStairs_WestBottomOuterLeftFalse
- | BlockState::StoneStairs_SouthBottomOuterRightTrue
- | BlockState::StoneStairs_SouthBottomOuterRightFalse
- | BlockState::StoneStairs_WestBottomOuterLeftTrue
- | BlockState::StoneStairs_WestBottomOuterLeftFalse
- | BlockState::SmoothSandstoneStairs_SouthBottomOuterRightTrue
- | BlockState::SmoothSandstoneStairs_SouthBottomOuterRightFalse
- | BlockState::SmoothSandstoneStairs_WestBottomOuterLeftTrue
- | BlockState::SmoothSandstoneStairs_WestBottomOuterLeftFalse
- | BlockState::SmoothQuartzStairs_SouthBottomOuterRightTrue
- | BlockState::SmoothQuartzStairs_SouthBottomOuterRightFalse
- | BlockState::SmoothQuartzStairs_WestBottomOuterLeftTrue
- | BlockState::SmoothQuartzStairs_WestBottomOuterLeftFalse
- | BlockState::GraniteStairs_SouthBottomOuterRightTrue
- | BlockState::GraniteStairs_SouthBottomOuterRightFalse
- | BlockState::GraniteStairs_WestBottomOuterLeftTrue
- | BlockState::GraniteStairs_WestBottomOuterLeftFalse
- | BlockState::AndesiteStairs_SouthBottomOuterRightTrue
- | BlockState::AndesiteStairs_SouthBottomOuterRightFalse
- | BlockState::AndesiteStairs_WestBottomOuterLeftTrue
- | BlockState::AndesiteStairs_WestBottomOuterLeftFalse
- | BlockState::RedNetherBrickStairs_SouthBottomOuterRightTrue
- | BlockState::RedNetherBrickStairs_SouthBottomOuterRightFalse
- | BlockState::RedNetherBrickStairs_WestBottomOuterLeftTrue
- | BlockState::RedNetherBrickStairs_WestBottomOuterLeftFalse
- | BlockState::PolishedAndesiteStairs_SouthBottomOuterRightTrue
- | BlockState::PolishedAndesiteStairs_SouthBottomOuterRightFalse
- | BlockState::PolishedAndesiteStairs_WestBottomOuterLeftTrue
- | BlockState::PolishedAndesiteStairs_WestBottomOuterLeftFalse
- | BlockState::DioriteStairs_SouthBottomOuterRightTrue
- | BlockState::DioriteStairs_SouthBottomOuterRightFalse
- | BlockState::DioriteStairs_WestBottomOuterLeftTrue
- | BlockState::DioriteStairs_WestBottomOuterLeftFalse
- | BlockState::CrimsonStairs_SouthBottomOuterRightTrue
- | BlockState::CrimsonStairs_SouthBottomOuterRightFalse
- | BlockState::CrimsonStairs_WestBottomOuterLeftTrue
- | BlockState::CrimsonStairs_WestBottomOuterLeftFalse
- | BlockState::WarpedStairs_SouthBottomOuterRightTrue
- | BlockState::WarpedStairs_SouthBottomOuterRightFalse
- | BlockState::WarpedStairs_WestBottomOuterLeftTrue
- | BlockState::WarpedStairs_WestBottomOuterLeftFalse
- | BlockState::BlackstoneStairs_SouthBottomOuterRightTrue
- | BlockState::BlackstoneStairs_SouthBottomOuterRightFalse
- | BlockState::BlackstoneStairs_WestBottomOuterLeftTrue
- | BlockState::BlackstoneStairs_WestBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomOuterRightTrue
- | BlockState::PolishedBlackstoneBrickStairs_SouthBottomOuterRightFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomOuterLeftFalse
- | BlockState::PolishedBlackstoneStairs_SouthBottomOuterRightTrue
- | BlockState::PolishedBlackstoneStairs_SouthBottomOuterRightFalse
- | BlockState::PolishedBlackstoneStairs_WestBottomOuterLeftTrue
- | BlockState::PolishedBlackstoneStairs_WestBottomOuterLeftFalse
- | BlockState::OxidizedCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::OxidizedCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::OxidizedCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::OxidizedCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::WeatheredCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::WeatheredCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::WeatheredCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::WeatheredCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::ExposedCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::ExposedCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::ExposedCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::ExposedCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::CutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::CutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::CutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::CutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::WaxedExposedCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::WaxedExposedCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::WaxedExposedCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::WaxedCutCopperStairs_SouthBottomOuterRightTrue
- | BlockState::WaxedCutCopperStairs_SouthBottomOuterRightFalse
- | BlockState::WaxedCutCopperStairs_WestBottomOuterLeftTrue
- | BlockState::WaxedCutCopperStairs_WestBottomOuterLeftFalse
- | BlockState::CobbledDeepslateStairs_SouthBottomOuterRightTrue
- | BlockState::CobbledDeepslateStairs_SouthBottomOuterRightFalse
- | BlockState::CobbledDeepslateStairs_WestBottomOuterLeftTrue
- | BlockState::CobbledDeepslateStairs_WestBottomOuterLeftFalse
- | BlockState::PolishedDeepslateStairs_SouthBottomOuterRightTrue
- | BlockState::PolishedDeepslateStairs_SouthBottomOuterRightFalse
- | BlockState::PolishedDeepslateStairs_WestBottomOuterLeftTrue
- | BlockState::PolishedDeepslateStairs_WestBottomOuterLeftFalse
- | BlockState::DeepslateTileStairs_SouthBottomOuterRightTrue
- | BlockState::DeepslateTileStairs_SouthBottomOuterRightFalse
- | BlockState::DeepslateTileStairs_WestBottomOuterLeftTrue
- | BlockState::DeepslateTileStairs_WestBottomOuterLeftFalse
- | BlockState::DeepslateBrickStairs_SouthBottomOuterRightTrue
- | BlockState::DeepslateBrickStairs_SouthBottomOuterRightFalse
- | BlockState::DeepslateBrickStairs_WestBottomOuterLeftTrue
- | BlockState::DeepslateBrickStairs_WestBottomOuterLeftFalse => &SHAPE57,
- BlockState::OakStairs_WestTopStraightTrue
- | BlockState::OakStairs_WestTopStraightFalse
- | BlockState::CobblestoneStairs_WestTopStraightTrue
- | BlockState::CobblestoneStairs_WestTopStraightFalse
- | BlockState::BrickStairs_WestTopStraightTrue
- | BlockState::BrickStairs_WestTopStraightFalse
- | BlockState::StoneBrickStairs_WestTopStraightTrue
- | BlockState::StoneBrickStairs_WestTopStraightFalse
- | BlockState::MudBrickStairs_WestTopStraightTrue
- | BlockState::MudBrickStairs_WestTopStraightFalse
- | BlockState::NetherBrickStairs_WestTopStraightTrue
- | BlockState::NetherBrickStairs_WestTopStraightFalse
- | BlockState::SandstoneStairs_WestTopStraightTrue
- | BlockState::SandstoneStairs_WestTopStraightFalse
- | BlockState::SpruceStairs_WestTopStraightTrue
- | BlockState::SpruceStairs_WestTopStraightFalse
- | BlockState::BirchStairs_WestTopStraightTrue
- | BlockState::BirchStairs_WestTopStraightFalse
- | BlockState::JungleStairs_WestTopStraightTrue
- | BlockState::JungleStairs_WestTopStraightFalse
- | BlockState::QuartzStairs_WestTopStraightTrue
- | BlockState::QuartzStairs_WestTopStraightFalse
- | BlockState::AcaciaStairs_WestTopStraightTrue
- | BlockState::AcaciaStairs_WestTopStraightFalse
- | BlockState::DarkOakStairs_WestTopStraightTrue
- | BlockState::DarkOakStairs_WestTopStraightFalse
- | BlockState::MangroveStairs_WestTopStraightTrue
- | BlockState::MangroveStairs_WestTopStraightFalse
- | BlockState::BambooStairs_WestTopStraightTrue
- | BlockState::BambooStairs_WestTopStraightFalse
- | BlockState::BambooMosaicStairs_WestTopStraightTrue
- | BlockState::BambooMosaicStairs_WestTopStraightFalse
- | BlockState::PrismarineStairs_WestTopStraightTrue
- | BlockState::PrismarineStairs_WestTopStraightFalse
- | BlockState::PrismarineBrickStairs_WestTopStraightTrue
- | BlockState::PrismarineBrickStairs_WestTopStraightFalse
- | BlockState::DarkPrismarineStairs_WestTopStraightTrue
- | BlockState::DarkPrismarineStairs_WestTopStraightFalse
- | BlockState::RedSandstoneStairs_WestTopStraightTrue
- | BlockState::RedSandstoneStairs_WestTopStraightFalse
- | BlockState::PurpurStairs_WestTopStraightTrue
- | BlockState::PurpurStairs_WestTopStraightFalse
- | BlockState::PolishedGraniteStairs_WestTopStraightTrue
- | BlockState::PolishedGraniteStairs_WestTopStraightFalse
- | BlockState::SmoothRedSandstoneStairs_WestTopStraightTrue
- | BlockState::SmoothRedSandstoneStairs_WestTopStraightFalse
- | BlockState::MossyStoneBrickStairs_WestTopStraightTrue
- | BlockState::MossyStoneBrickStairs_WestTopStraightFalse
- | BlockState::PolishedDioriteStairs_WestTopStraightTrue
- | BlockState::PolishedDioriteStairs_WestTopStraightFalse
- | BlockState::MossyCobblestoneStairs_WestTopStraightTrue
- | BlockState::MossyCobblestoneStairs_WestTopStraightFalse
- | BlockState::EndStoneBrickStairs_WestTopStraightTrue
- | BlockState::EndStoneBrickStairs_WestTopStraightFalse
- | BlockState::StoneStairs_WestTopStraightTrue
- | BlockState::StoneStairs_WestTopStraightFalse
- | BlockState::SmoothSandstoneStairs_WestTopStraightTrue
- | BlockState::SmoothSandstoneStairs_WestTopStraightFalse
- | BlockState::SmoothQuartzStairs_WestTopStraightTrue
- | BlockState::SmoothQuartzStairs_WestTopStraightFalse
- | BlockState::GraniteStairs_WestTopStraightTrue
- | BlockState::GraniteStairs_WestTopStraightFalse
- | BlockState::AndesiteStairs_WestTopStraightTrue
- | BlockState::AndesiteStairs_WestTopStraightFalse
- | BlockState::RedNetherBrickStairs_WestTopStraightTrue
- | BlockState::RedNetherBrickStairs_WestTopStraightFalse
- | BlockState::PolishedAndesiteStairs_WestTopStraightTrue
- | BlockState::PolishedAndesiteStairs_WestTopStraightFalse
- | BlockState::DioriteStairs_WestTopStraightTrue
- | BlockState::DioriteStairs_WestTopStraightFalse
- | BlockState::CrimsonStairs_WestTopStraightTrue
- | BlockState::CrimsonStairs_WestTopStraightFalse
- | BlockState::WarpedStairs_WestTopStraightTrue
- | BlockState::WarpedStairs_WestTopStraightFalse
- | BlockState::BlackstoneStairs_WestTopStraightTrue
- | BlockState::BlackstoneStairs_WestTopStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestTopStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestTopStraightFalse
- | BlockState::PolishedBlackstoneStairs_WestTopStraightTrue
- | BlockState::PolishedBlackstoneStairs_WestTopStraightFalse
- | BlockState::OxidizedCutCopperStairs_WestTopStraightTrue
- | BlockState::OxidizedCutCopperStairs_WestTopStraightFalse
- | BlockState::WeatheredCutCopperStairs_WestTopStraightTrue
- | BlockState::WeatheredCutCopperStairs_WestTopStraightFalse
- | BlockState::ExposedCutCopperStairs_WestTopStraightTrue
- | BlockState::ExposedCutCopperStairs_WestTopStraightFalse
- | BlockState::CutCopperStairs_WestTopStraightTrue
- | BlockState::CutCopperStairs_WestTopStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestTopStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestTopStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_WestTopStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_WestTopStraightFalse
- | BlockState::WaxedCutCopperStairs_WestTopStraightTrue
- | BlockState::WaxedCutCopperStairs_WestTopStraightFalse
- | BlockState::CobbledDeepslateStairs_WestTopStraightTrue
- | BlockState::CobbledDeepslateStairs_WestTopStraightFalse
- | BlockState::PolishedDeepslateStairs_WestTopStraightTrue
- | BlockState::PolishedDeepslateStairs_WestTopStraightFalse
- | BlockState::DeepslateTileStairs_WestTopStraightTrue
- | BlockState::DeepslateTileStairs_WestTopStraightFalse
- | BlockState::DeepslateBrickStairs_WestTopStraightTrue
- | BlockState::DeepslateBrickStairs_WestTopStraightFalse => &SHAPE36,
- BlockState::OakStairs_WestBottomStraightTrue
- | BlockState::OakStairs_WestBottomStraightFalse
- | BlockState::CobblestoneStairs_WestBottomStraightTrue
- | BlockState::CobblestoneStairs_WestBottomStraightFalse
- | BlockState::BrickStairs_WestBottomStraightTrue
- | BlockState::BrickStairs_WestBottomStraightFalse
- | BlockState::StoneBrickStairs_WestBottomStraightTrue
- | BlockState::StoneBrickStairs_WestBottomStraightFalse
- | BlockState::MudBrickStairs_WestBottomStraightTrue
- | BlockState::MudBrickStairs_WestBottomStraightFalse
- | BlockState::NetherBrickStairs_WestBottomStraightTrue
- | BlockState::NetherBrickStairs_WestBottomStraightFalse
- | BlockState::SandstoneStairs_WestBottomStraightTrue
- | BlockState::SandstoneStairs_WestBottomStraightFalse
- | BlockState::SpruceStairs_WestBottomStraightTrue
- | BlockState::SpruceStairs_WestBottomStraightFalse
- | BlockState::BirchStairs_WestBottomStraightTrue
- | BlockState::BirchStairs_WestBottomStraightFalse
- | BlockState::JungleStairs_WestBottomStraightTrue
- | BlockState::JungleStairs_WestBottomStraightFalse
- | BlockState::QuartzStairs_WestBottomStraightTrue
- | BlockState::QuartzStairs_WestBottomStraightFalse
- | BlockState::AcaciaStairs_WestBottomStraightTrue
- | BlockState::AcaciaStairs_WestBottomStraightFalse
- | BlockState::DarkOakStairs_WestBottomStraightTrue
- | BlockState::DarkOakStairs_WestBottomStraightFalse
- | BlockState::MangroveStairs_WestBottomStraightTrue
- | BlockState::MangroveStairs_WestBottomStraightFalse
- | BlockState::BambooStairs_WestBottomStraightTrue
- | BlockState::BambooStairs_WestBottomStraightFalse
- | BlockState::BambooMosaicStairs_WestBottomStraightTrue
- | BlockState::BambooMosaicStairs_WestBottomStraightFalse
- | BlockState::PrismarineStairs_WestBottomStraightTrue
- | BlockState::PrismarineStairs_WestBottomStraightFalse
- | BlockState::PrismarineBrickStairs_WestBottomStraightTrue
- | BlockState::PrismarineBrickStairs_WestBottomStraightFalse
- | BlockState::DarkPrismarineStairs_WestBottomStraightTrue
- | BlockState::DarkPrismarineStairs_WestBottomStraightFalse
- | BlockState::RedSandstoneStairs_WestBottomStraightTrue
- | BlockState::RedSandstoneStairs_WestBottomStraightFalse
- | BlockState::PurpurStairs_WestBottomStraightTrue
- | BlockState::PurpurStairs_WestBottomStraightFalse
- | BlockState::PolishedGraniteStairs_WestBottomStraightTrue
- | BlockState::PolishedGraniteStairs_WestBottomStraightFalse
- | BlockState::SmoothRedSandstoneStairs_WestBottomStraightTrue
- | BlockState::SmoothRedSandstoneStairs_WestBottomStraightFalse
- | BlockState::MossyStoneBrickStairs_WestBottomStraightTrue
- | BlockState::MossyStoneBrickStairs_WestBottomStraightFalse
- | BlockState::PolishedDioriteStairs_WestBottomStraightTrue
- | BlockState::PolishedDioriteStairs_WestBottomStraightFalse
- | BlockState::MossyCobblestoneStairs_WestBottomStraightTrue
- | BlockState::MossyCobblestoneStairs_WestBottomStraightFalse
- | BlockState::EndStoneBrickStairs_WestBottomStraightTrue
- | BlockState::EndStoneBrickStairs_WestBottomStraightFalse
- | BlockState::StoneStairs_WestBottomStraightTrue
- | BlockState::StoneStairs_WestBottomStraightFalse
- | BlockState::SmoothSandstoneStairs_WestBottomStraightTrue
- | BlockState::SmoothSandstoneStairs_WestBottomStraightFalse
- | BlockState::SmoothQuartzStairs_WestBottomStraightTrue
- | BlockState::SmoothQuartzStairs_WestBottomStraightFalse
- | BlockState::GraniteStairs_WestBottomStraightTrue
- | BlockState::GraniteStairs_WestBottomStraightFalse
- | BlockState::AndesiteStairs_WestBottomStraightTrue
- | BlockState::AndesiteStairs_WestBottomStraightFalse
- | BlockState::RedNetherBrickStairs_WestBottomStraightTrue
- | BlockState::RedNetherBrickStairs_WestBottomStraightFalse
- | BlockState::PolishedAndesiteStairs_WestBottomStraightTrue
- | BlockState::PolishedAndesiteStairs_WestBottomStraightFalse
- | BlockState::DioriteStairs_WestBottomStraightTrue
- | BlockState::DioriteStairs_WestBottomStraightFalse
- | BlockState::CrimsonStairs_WestBottomStraightTrue
- | BlockState::CrimsonStairs_WestBottomStraightFalse
- | BlockState::WarpedStairs_WestBottomStraightTrue
- | BlockState::WarpedStairs_WestBottomStraightFalse
- | BlockState::BlackstoneStairs_WestBottomStraightTrue
- | BlockState::BlackstoneStairs_WestBottomStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_WestBottomStraightFalse
- | BlockState::PolishedBlackstoneStairs_WestBottomStraightTrue
- | BlockState::PolishedBlackstoneStairs_WestBottomStraightFalse
- | BlockState::OxidizedCutCopperStairs_WestBottomStraightTrue
- | BlockState::OxidizedCutCopperStairs_WestBottomStraightFalse
- | BlockState::WeatheredCutCopperStairs_WestBottomStraightTrue
- | BlockState::WeatheredCutCopperStairs_WestBottomStraightFalse
- | BlockState::ExposedCutCopperStairs_WestBottomStraightTrue
- | BlockState::ExposedCutCopperStairs_WestBottomStraightFalse
- | BlockState::CutCopperStairs_WestBottomStraightTrue
- | BlockState::CutCopperStairs_WestBottomStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_WestBottomStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_WestBottomStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_WestBottomStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_WestBottomStraightFalse
- | BlockState::WaxedCutCopperStairs_WestBottomStraightTrue
- | BlockState::WaxedCutCopperStairs_WestBottomStraightFalse
- | BlockState::CobbledDeepslateStairs_WestBottomStraightTrue
- | BlockState::CobbledDeepslateStairs_WestBottomStraightFalse
- | BlockState::PolishedDeepslateStairs_WestBottomStraightTrue
- | BlockState::PolishedDeepslateStairs_WestBottomStraightFalse
- | BlockState::DeepslateTileStairs_WestBottomStraightTrue
- | BlockState::DeepslateTileStairs_WestBottomStraightFalse
- | BlockState::DeepslateBrickStairs_WestBottomStraightTrue
- | BlockState::DeepslateBrickStairs_WestBottomStraightFalse => &SHAPE43,
- BlockState::OakStairs_EastTopStraightTrue
- | BlockState::OakStairs_EastTopStraightFalse
- | BlockState::CobblestoneStairs_EastTopStraightTrue
- | BlockState::CobblestoneStairs_EastTopStraightFalse
- | BlockState::BrickStairs_EastTopStraightTrue
- | BlockState::BrickStairs_EastTopStraightFalse
- | BlockState::StoneBrickStairs_EastTopStraightTrue
- | BlockState::StoneBrickStairs_EastTopStraightFalse
- | BlockState::MudBrickStairs_EastTopStraightTrue
- | BlockState::MudBrickStairs_EastTopStraightFalse
- | BlockState::NetherBrickStairs_EastTopStraightTrue
- | BlockState::NetherBrickStairs_EastTopStraightFalse
- | BlockState::SandstoneStairs_EastTopStraightTrue
- | BlockState::SandstoneStairs_EastTopStraightFalse
- | BlockState::SpruceStairs_EastTopStraightTrue
- | BlockState::SpruceStairs_EastTopStraightFalse
- | BlockState::BirchStairs_EastTopStraightTrue
- | BlockState::BirchStairs_EastTopStraightFalse
- | BlockState::JungleStairs_EastTopStraightTrue
- | BlockState::JungleStairs_EastTopStraightFalse
- | BlockState::QuartzStairs_EastTopStraightTrue
- | BlockState::QuartzStairs_EastTopStraightFalse
- | BlockState::AcaciaStairs_EastTopStraightTrue
- | BlockState::AcaciaStairs_EastTopStraightFalse
- | BlockState::DarkOakStairs_EastTopStraightTrue
- | BlockState::DarkOakStairs_EastTopStraightFalse
- | BlockState::MangroveStairs_EastTopStraightTrue
- | BlockState::MangroveStairs_EastTopStraightFalse
- | BlockState::BambooStairs_EastTopStraightTrue
- | BlockState::BambooStairs_EastTopStraightFalse
- | BlockState::BambooMosaicStairs_EastTopStraightTrue
- | BlockState::BambooMosaicStairs_EastTopStraightFalse
- | BlockState::PrismarineStairs_EastTopStraightTrue
- | BlockState::PrismarineStairs_EastTopStraightFalse
- | BlockState::PrismarineBrickStairs_EastTopStraightTrue
- | BlockState::PrismarineBrickStairs_EastTopStraightFalse
- | BlockState::DarkPrismarineStairs_EastTopStraightTrue
- | BlockState::DarkPrismarineStairs_EastTopStraightFalse
- | BlockState::RedSandstoneStairs_EastTopStraightTrue
- | BlockState::RedSandstoneStairs_EastTopStraightFalse
- | BlockState::PurpurStairs_EastTopStraightTrue
- | BlockState::PurpurStairs_EastTopStraightFalse
- | BlockState::PolishedGraniteStairs_EastTopStraightTrue
- | BlockState::PolishedGraniteStairs_EastTopStraightFalse
- | BlockState::SmoothRedSandstoneStairs_EastTopStraightTrue
- | BlockState::SmoothRedSandstoneStairs_EastTopStraightFalse
- | BlockState::MossyStoneBrickStairs_EastTopStraightTrue
- | BlockState::MossyStoneBrickStairs_EastTopStraightFalse
- | BlockState::PolishedDioriteStairs_EastTopStraightTrue
- | BlockState::PolishedDioriteStairs_EastTopStraightFalse
- | BlockState::MossyCobblestoneStairs_EastTopStraightTrue
- | BlockState::MossyCobblestoneStairs_EastTopStraightFalse
- | BlockState::EndStoneBrickStairs_EastTopStraightTrue
- | BlockState::EndStoneBrickStairs_EastTopStraightFalse
- | BlockState::StoneStairs_EastTopStraightTrue
- | BlockState::StoneStairs_EastTopStraightFalse
- | BlockState::SmoothSandstoneStairs_EastTopStraightTrue
- | BlockState::SmoothSandstoneStairs_EastTopStraightFalse
- | BlockState::SmoothQuartzStairs_EastTopStraightTrue
- | BlockState::SmoothQuartzStairs_EastTopStraightFalse
- | BlockState::GraniteStairs_EastTopStraightTrue
- | BlockState::GraniteStairs_EastTopStraightFalse
- | BlockState::AndesiteStairs_EastTopStraightTrue
- | BlockState::AndesiteStairs_EastTopStraightFalse
- | BlockState::RedNetherBrickStairs_EastTopStraightTrue
- | BlockState::RedNetherBrickStairs_EastTopStraightFalse
- | BlockState::PolishedAndesiteStairs_EastTopStraightTrue
- | BlockState::PolishedAndesiteStairs_EastTopStraightFalse
- | BlockState::DioriteStairs_EastTopStraightTrue
- | BlockState::DioriteStairs_EastTopStraightFalse
- | BlockState::CrimsonStairs_EastTopStraightTrue
- | BlockState::CrimsonStairs_EastTopStraightFalse
- | BlockState::WarpedStairs_EastTopStraightTrue
- | BlockState::WarpedStairs_EastTopStraightFalse
- | BlockState::BlackstoneStairs_EastTopStraightTrue
- | BlockState::BlackstoneStairs_EastTopStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastTopStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastTopStraightFalse
- | BlockState::PolishedBlackstoneStairs_EastTopStraightTrue
- | BlockState::PolishedBlackstoneStairs_EastTopStraightFalse
- | BlockState::OxidizedCutCopperStairs_EastTopStraightTrue
- | BlockState::OxidizedCutCopperStairs_EastTopStraightFalse
- | BlockState::WeatheredCutCopperStairs_EastTopStraightTrue
- | BlockState::WeatheredCutCopperStairs_EastTopStraightFalse
- | BlockState::ExposedCutCopperStairs_EastTopStraightTrue
- | BlockState::ExposedCutCopperStairs_EastTopStraightFalse
- | BlockState::CutCopperStairs_EastTopStraightTrue
- | BlockState::CutCopperStairs_EastTopStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastTopStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastTopStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_EastTopStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_EastTopStraightFalse
- | BlockState::WaxedCutCopperStairs_EastTopStraightTrue
- | BlockState::WaxedCutCopperStairs_EastTopStraightFalse
- | BlockState::CobbledDeepslateStairs_EastTopStraightTrue
- | BlockState::CobbledDeepslateStairs_EastTopStraightFalse
- | BlockState::PolishedDeepslateStairs_EastTopStraightTrue
- | BlockState::PolishedDeepslateStairs_EastTopStraightFalse
- | BlockState::DeepslateTileStairs_EastTopStraightTrue
- | BlockState::DeepslateTileStairs_EastTopStraightFalse
- | BlockState::DeepslateBrickStairs_EastTopStraightTrue
- | BlockState::DeepslateBrickStairs_EastTopStraightFalse => &SHAPE38,
- BlockState::OakStairs_EastBottomStraightTrue
- | BlockState::OakStairs_EastBottomStraightFalse
- | BlockState::CobblestoneStairs_EastBottomStraightTrue
- | BlockState::CobblestoneStairs_EastBottomStraightFalse
- | BlockState::BrickStairs_EastBottomStraightTrue
- | BlockState::BrickStairs_EastBottomStraightFalse
- | BlockState::StoneBrickStairs_EastBottomStraightTrue
- | BlockState::StoneBrickStairs_EastBottomStraightFalse
- | BlockState::MudBrickStairs_EastBottomStraightTrue
- | BlockState::MudBrickStairs_EastBottomStraightFalse
- | BlockState::NetherBrickStairs_EastBottomStraightTrue
- | BlockState::NetherBrickStairs_EastBottomStraightFalse
- | BlockState::SandstoneStairs_EastBottomStraightTrue
- | BlockState::SandstoneStairs_EastBottomStraightFalse
- | BlockState::SpruceStairs_EastBottomStraightTrue
- | BlockState::SpruceStairs_EastBottomStraightFalse
- | BlockState::BirchStairs_EastBottomStraightTrue
- | BlockState::BirchStairs_EastBottomStraightFalse
- | BlockState::JungleStairs_EastBottomStraightTrue
- | BlockState::JungleStairs_EastBottomStraightFalse
- | BlockState::QuartzStairs_EastBottomStraightTrue
- | BlockState::QuartzStairs_EastBottomStraightFalse
- | BlockState::AcaciaStairs_EastBottomStraightTrue
- | BlockState::AcaciaStairs_EastBottomStraightFalse
- | BlockState::DarkOakStairs_EastBottomStraightTrue
- | BlockState::DarkOakStairs_EastBottomStraightFalse
- | BlockState::MangroveStairs_EastBottomStraightTrue
- | BlockState::MangroveStairs_EastBottomStraightFalse
- | BlockState::BambooStairs_EastBottomStraightTrue
- | BlockState::BambooStairs_EastBottomStraightFalse
- | BlockState::BambooMosaicStairs_EastBottomStraightTrue
- | BlockState::BambooMosaicStairs_EastBottomStraightFalse
- | BlockState::PrismarineStairs_EastBottomStraightTrue
- | BlockState::PrismarineStairs_EastBottomStraightFalse
- | BlockState::PrismarineBrickStairs_EastBottomStraightTrue
- | BlockState::PrismarineBrickStairs_EastBottomStraightFalse
- | BlockState::DarkPrismarineStairs_EastBottomStraightTrue
- | BlockState::DarkPrismarineStairs_EastBottomStraightFalse
- | BlockState::RedSandstoneStairs_EastBottomStraightTrue
- | BlockState::RedSandstoneStairs_EastBottomStraightFalse
- | BlockState::PurpurStairs_EastBottomStraightTrue
- | BlockState::PurpurStairs_EastBottomStraightFalse
- | BlockState::PolishedGraniteStairs_EastBottomStraightTrue
- | BlockState::PolishedGraniteStairs_EastBottomStraightFalse
- | BlockState::SmoothRedSandstoneStairs_EastBottomStraightTrue
- | BlockState::SmoothRedSandstoneStairs_EastBottomStraightFalse
- | BlockState::MossyStoneBrickStairs_EastBottomStraightTrue
- | BlockState::MossyStoneBrickStairs_EastBottomStraightFalse
- | BlockState::PolishedDioriteStairs_EastBottomStraightTrue
- | BlockState::PolishedDioriteStairs_EastBottomStraightFalse
- | BlockState::MossyCobblestoneStairs_EastBottomStraightTrue
- | BlockState::MossyCobblestoneStairs_EastBottomStraightFalse
- | BlockState::EndStoneBrickStairs_EastBottomStraightTrue
- | BlockState::EndStoneBrickStairs_EastBottomStraightFalse
- | BlockState::StoneStairs_EastBottomStraightTrue
- | BlockState::StoneStairs_EastBottomStraightFalse
- | BlockState::SmoothSandstoneStairs_EastBottomStraightTrue
- | BlockState::SmoothSandstoneStairs_EastBottomStraightFalse
- | BlockState::SmoothQuartzStairs_EastBottomStraightTrue
- | BlockState::SmoothQuartzStairs_EastBottomStraightFalse
- | BlockState::GraniteStairs_EastBottomStraightTrue
- | BlockState::GraniteStairs_EastBottomStraightFalse
- | BlockState::AndesiteStairs_EastBottomStraightTrue
- | BlockState::AndesiteStairs_EastBottomStraightFalse
- | BlockState::RedNetherBrickStairs_EastBottomStraightTrue
- | BlockState::RedNetherBrickStairs_EastBottomStraightFalse
- | BlockState::PolishedAndesiteStairs_EastBottomStraightTrue
- | BlockState::PolishedAndesiteStairs_EastBottomStraightFalse
- | BlockState::DioriteStairs_EastBottomStraightTrue
- | BlockState::DioriteStairs_EastBottomStraightFalse
- | BlockState::CrimsonStairs_EastBottomStraightTrue
- | BlockState::CrimsonStairs_EastBottomStraightFalse
- | BlockState::WarpedStairs_EastBottomStraightTrue
- | BlockState::WarpedStairs_EastBottomStraightFalse
- | BlockState::BlackstoneStairs_EastBottomStraightTrue
- | BlockState::BlackstoneStairs_EastBottomStraightFalse
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomStraightTrue
- | BlockState::PolishedBlackstoneBrickStairs_EastBottomStraightFalse
- | BlockState::PolishedBlackstoneStairs_EastBottomStraightTrue
- | BlockState::PolishedBlackstoneStairs_EastBottomStraightFalse
- | BlockState::OxidizedCutCopperStairs_EastBottomStraightTrue
- | BlockState::OxidizedCutCopperStairs_EastBottomStraightFalse
- | BlockState::WeatheredCutCopperStairs_EastBottomStraightTrue
- | BlockState::WeatheredCutCopperStairs_EastBottomStraightFalse
- | BlockState::ExposedCutCopperStairs_EastBottomStraightTrue
- | BlockState::ExposedCutCopperStairs_EastBottomStraightFalse
- | BlockState::CutCopperStairs_EastBottomStraightTrue
- | BlockState::CutCopperStairs_EastBottomStraightFalse
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomStraightTrue
- | BlockState::WaxedOxidizedCutCopperStairs_EastBottomStraightFalse
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomStraightTrue
- | BlockState::WaxedWeatheredCutCopperStairs_EastBottomStraightFalse
- | BlockState::WaxedExposedCutCopperStairs_EastBottomStraightTrue
- | BlockState::WaxedExposedCutCopperStairs_EastBottomStraightFalse
- | BlockState::WaxedCutCopperStairs_EastBottomStraightTrue
- | BlockState::WaxedCutCopperStairs_EastBottomStraightFalse
- | BlockState::CobbledDeepslateStairs_EastBottomStraightTrue
- | BlockState::CobbledDeepslateStairs_EastBottomStraightFalse
- | BlockState::PolishedDeepslateStairs_EastBottomStraightTrue
- | BlockState::PolishedDeepslateStairs_EastBottomStraightFalse
- | BlockState::DeepslateTileStairs_EastBottomStraightTrue
- | BlockState::DeepslateTileStairs_EastBottomStraightFalse
- | BlockState::DeepslateBrickStairs_EastBottomStraightTrue
- | BlockState::DeepslateBrickStairs_EastBottomStraightFalse => &SHAPE45,
- BlockState::Chest_SingleNorthTrue
- | BlockState::Chest_SingleNorthFalse
- | BlockState::Chest_SingleSouthTrue
- | BlockState::Chest_SingleSouthFalse
- | BlockState::Chest_SingleWestTrue
- | BlockState::Chest_SingleWestFalse
- | BlockState::Chest_SingleEastTrue
- | BlockState::Chest_SingleEastFalse
- | BlockState::EnderChest_NorthTrue
- | BlockState::EnderChest_NorthFalse
- | BlockState::EnderChest_SouthTrue
- | BlockState::EnderChest_SouthFalse
- | BlockState::EnderChest_WestTrue
- | BlockState::EnderChest_WestFalse
- | BlockState::EnderChest_EastTrue
- | BlockState::EnderChest_EastFalse
- | BlockState::TrappedChest_SingleNorthTrue
- | BlockState::TrappedChest_SingleNorthFalse
- | BlockState::TrappedChest_SingleSouthTrue
- | BlockState::TrappedChest_SingleSouthFalse
- | BlockState::TrappedChest_SingleWestTrue
- | BlockState::TrappedChest_SingleWestFalse
- | BlockState::TrappedChest_SingleEastTrue
- | BlockState::TrappedChest_SingleEastFalse => &SHAPE58,
- BlockState::Chest_LeftNorthTrue
- | BlockState::Chest_LeftNorthFalse
- | BlockState::Chest_RightSouthTrue
- | BlockState::Chest_RightSouthFalse
- | BlockState::TrappedChest_LeftNorthTrue
- | BlockState::TrappedChest_LeftNorthFalse
- | BlockState::TrappedChest_RightSouthTrue
- | BlockState::TrappedChest_RightSouthFalse => &SHAPE60,
- BlockState::Chest_RightNorthTrue
- | BlockState::Chest_RightNorthFalse
- | BlockState::Chest_LeftSouthTrue
- | BlockState::Chest_LeftSouthFalse
- | BlockState::TrappedChest_RightNorthTrue
- | BlockState::TrappedChest_RightNorthFalse
- | BlockState::TrappedChest_LeftSouthTrue
- | BlockState::TrappedChest_LeftSouthFalse => &SHAPE61,
- BlockState::Chest_LeftWestTrue
- | BlockState::Chest_LeftWestFalse
- | BlockState::Chest_RightEastTrue
- | BlockState::Chest_RightEastFalse
- | BlockState::TrappedChest_LeftWestTrue
- | BlockState::TrappedChest_LeftWestFalse
- | BlockState::TrappedChest_RightEastTrue
- | BlockState::TrappedChest_RightEastFalse => &SHAPE62,
- BlockState::Chest_RightWestTrue
- | BlockState::Chest_RightWestFalse
- | BlockState::Chest_LeftEastTrue
- | BlockState::Chest_LeftEastFalse
- | BlockState::TrappedChest_RightWestTrue
- | BlockState::TrappedChest_RightWestFalse
- | BlockState::TrappedChest_LeftEastTrue
- | BlockState::TrappedChest_LeftEastFalse => &SHAPE63,
- BlockState::Farmland__0
- | BlockState::Farmland__1
- | BlockState::Farmland__2
- | BlockState::Farmland__3
- | BlockState::Farmland__4
- | BlockState::Farmland__5
- | BlockState::Farmland__6
- | BlockState::Farmland__7
- | BlockState::DirtPath => &SHAPE67,
- BlockState::OakDoor_NorthUpperLeftTrueTrue
- | BlockState::OakDoor_NorthUpperLeftTrueFalse
- | BlockState::OakDoor_NorthLowerLeftTrueTrue
- | BlockState::OakDoor_NorthLowerLeftTrueFalse
- | BlockState::OakDoor_SouthUpperRightTrueTrue
- | BlockState::OakDoor_SouthUpperRightTrueFalse
- | BlockState::OakDoor_SouthLowerRightTrueTrue
- | BlockState::OakDoor_SouthLowerRightTrueFalse
- | BlockState::OakDoor_EastUpperLeftFalseTrue
- | BlockState::OakDoor_EastUpperLeftFalseFalse
- | BlockState::OakDoor_EastUpperRightFalseTrue
- | BlockState::OakDoor_EastUpperRightFalseFalse
- | BlockState::OakDoor_EastLowerLeftFalseTrue
- | BlockState::OakDoor_EastLowerLeftFalseFalse
- | BlockState::OakDoor_EastLowerRightFalseTrue
- | BlockState::OakDoor_EastLowerRightFalseFalse
- | BlockState::Ladder_EastTrue
- | BlockState::Ladder_EastFalse
- | BlockState::IronDoor_NorthUpperLeftTrueTrue
- | BlockState::IronDoor_NorthUpperLeftTrueFalse
- | BlockState::IronDoor_NorthLowerLeftTrueTrue
- | BlockState::IronDoor_NorthLowerLeftTrueFalse
- | BlockState::IronDoor_SouthUpperRightTrueTrue
- | BlockState::IronDoor_SouthUpperRightTrueFalse
- | BlockState::IronDoor_SouthLowerRightTrueTrue
- | BlockState::IronDoor_SouthLowerRightTrueFalse
- | BlockState::IronDoor_EastUpperLeftFalseTrue
- | BlockState::IronDoor_EastUpperLeftFalseFalse
- | BlockState::IronDoor_EastUpperRightFalseTrue
- | BlockState::IronDoor_EastUpperRightFalseFalse
- | BlockState::IronDoor_EastLowerLeftFalseTrue
- | BlockState::IronDoor_EastLowerLeftFalseFalse
- | BlockState::IronDoor_EastLowerRightFalseTrue
- | BlockState::IronDoor_EastLowerRightFalseFalse
- | BlockState::OakTrapdoor_EastTopTrueTrueTrue
- | BlockState::OakTrapdoor_EastTopTrueTrueFalse
- | BlockState::OakTrapdoor_EastTopTrueFalseTrue
- | BlockState::OakTrapdoor_EastTopTrueFalseFalse
- | BlockState::OakTrapdoor_EastBottomTrueTrueTrue
- | BlockState::OakTrapdoor_EastBottomTrueTrueFalse
- | BlockState::OakTrapdoor_EastBottomTrueFalseTrue
- | BlockState::OakTrapdoor_EastBottomTrueFalseFalse
- | BlockState::SpruceTrapdoor_EastTopTrueTrueTrue
- | BlockState::SpruceTrapdoor_EastTopTrueTrueFalse
- | BlockState::SpruceTrapdoor_EastTopTrueFalseTrue
- | BlockState::SpruceTrapdoor_EastTopTrueFalseFalse
- | BlockState::SpruceTrapdoor_EastBottomTrueTrueTrue
- | BlockState::SpruceTrapdoor_EastBottomTrueTrueFalse
- | BlockState::SpruceTrapdoor_EastBottomTrueFalseTrue
- | BlockState::SpruceTrapdoor_EastBottomTrueFalseFalse
- | BlockState::BirchTrapdoor_EastTopTrueTrueTrue
- | BlockState::BirchTrapdoor_EastTopTrueTrueFalse
- | BlockState::BirchTrapdoor_EastTopTrueFalseTrue
- | BlockState::BirchTrapdoor_EastTopTrueFalseFalse
- | BlockState::BirchTrapdoor_EastBottomTrueTrueTrue
- | BlockState::BirchTrapdoor_EastBottomTrueTrueFalse
- | BlockState::BirchTrapdoor_EastBottomTrueFalseTrue
- | BlockState::BirchTrapdoor_EastBottomTrueFalseFalse
- | BlockState::JungleTrapdoor_EastTopTrueTrueTrue
- | BlockState::JungleTrapdoor_EastTopTrueTrueFalse
- | BlockState::JungleTrapdoor_EastTopTrueFalseTrue
- | BlockState::JungleTrapdoor_EastTopTrueFalseFalse
- | BlockState::JungleTrapdoor_EastBottomTrueTrueTrue
- | BlockState::JungleTrapdoor_EastBottomTrueTrueFalse
- | BlockState::JungleTrapdoor_EastBottomTrueFalseTrue
- | BlockState::JungleTrapdoor_EastBottomTrueFalseFalse
- | BlockState::AcaciaTrapdoor_EastTopTrueTrueTrue
- | BlockState::AcaciaTrapdoor_EastTopTrueTrueFalse
- | BlockState::AcaciaTrapdoor_EastTopTrueFalseTrue
- | BlockState::AcaciaTrapdoor_EastTopTrueFalseFalse
- | BlockState::AcaciaTrapdoor_EastBottomTrueTrueTrue
- | BlockState::AcaciaTrapdoor_EastBottomTrueTrueFalse
- | BlockState::AcaciaTrapdoor_EastBottomTrueFalseTrue
- | BlockState::AcaciaTrapdoor_EastBottomTrueFalseFalse
- | BlockState::DarkOakTrapdoor_EastTopTrueTrueTrue
- | BlockState::DarkOakTrapdoor_EastTopTrueTrueFalse
- | BlockState::DarkOakTrapdoor_EastTopTrueFalseTrue
- | BlockState::DarkOakTrapdoor_EastTopTrueFalseFalse
- | BlockState::DarkOakTrapdoor_EastBottomTrueTrueTrue
- | BlockState::DarkOakTrapdoor_EastBottomTrueTrueFalse
- | BlockState::DarkOakTrapdoor_EastBottomTrueFalseTrue
- | BlockState::DarkOakTrapdoor_EastBottomTrueFalseFalse
- | BlockState::MangroveTrapdoor_EastTopTrueTrueTrue
- | BlockState::MangroveTrapdoor_EastTopTrueTrueFalse
- | BlockState::MangroveTrapdoor_EastTopTrueFalseTrue
- | BlockState::MangroveTrapdoor_EastTopTrueFalseFalse
- | BlockState::MangroveTrapdoor_EastBottomTrueTrueTrue
- | BlockState::MangroveTrapdoor_EastBottomTrueTrueFalse
- | BlockState::MangroveTrapdoor_EastBottomTrueFalseTrue
- | BlockState::MangroveTrapdoor_EastBottomTrueFalseFalse
- | BlockState::BambooTrapdoor_EastTopTrueTrueTrue
- | BlockState::BambooTrapdoor_EastTopTrueTrueFalse
- | BlockState::BambooTrapdoor_EastTopTrueFalseTrue
- | BlockState::BambooTrapdoor_EastTopTrueFalseFalse
- | BlockState::BambooTrapdoor_EastBottomTrueTrueTrue
- | BlockState::BambooTrapdoor_EastBottomTrueTrueFalse
- | BlockState::BambooTrapdoor_EastBottomTrueFalseTrue
- | BlockState::BambooTrapdoor_EastBottomTrueFalseFalse
- | BlockState::IronTrapdoor_EastTopTrueTrueTrue
- | BlockState::IronTrapdoor_EastTopTrueTrueFalse
- | BlockState::IronTrapdoor_EastTopTrueFalseTrue
- | BlockState::IronTrapdoor_EastTopTrueFalseFalse
- | BlockState::IronTrapdoor_EastBottomTrueTrueTrue
- | BlockState::IronTrapdoor_EastBottomTrueTrueFalse
- | BlockState::IronTrapdoor_EastBottomTrueFalseTrue
- | BlockState::IronTrapdoor_EastBottomTrueFalseFalse
- | BlockState::SpruceDoor_NorthUpperLeftTrueTrue
- | BlockState::SpruceDoor_NorthUpperLeftTrueFalse
- | BlockState::SpruceDoor_NorthLowerLeftTrueTrue
- | BlockState::SpruceDoor_NorthLowerLeftTrueFalse
- | BlockState::SpruceDoor_SouthUpperRightTrueTrue
- | BlockState::SpruceDoor_SouthUpperRightTrueFalse
- | BlockState::SpruceDoor_SouthLowerRightTrueTrue
- | BlockState::SpruceDoor_SouthLowerRightTrueFalse
- | BlockState::SpruceDoor_EastUpperLeftFalseTrue
- | BlockState::SpruceDoor_EastUpperLeftFalseFalse
- | BlockState::SpruceDoor_EastUpperRightFalseTrue
- | BlockState::SpruceDoor_EastUpperRightFalseFalse
- | BlockState::SpruceDoor_EastLowerLeftFalseTrue
- | BlockState::SpruceDoor_EastLowerLeftFalseFalse
- | BlockState::SpruceDoor_EastLowerRightFalseTrue
- | BlockState::SpruceDoor_EastLowerRightFalseFalse
- | BlockState::BirchDoor_NorthUpperLeftTrueTrue
- | BlockState::BirchDoor_NorthUpperLeftTrueFalse
- | BlockState::BirchDoor_NorthLowerLeftTrueTrue
- | BlockState::BirchDoor_NorthLowerLeftTrueFalse
- | BlockState::BirchDoor_SouthUpperRightTrueTrue
- | BlockState::BirchDoor_SouthUpperRightTrueFalse
- | BlockState::BirchDoor_SouthLowerRightTrueTrue
- | BlockState::BirchDoor_SouthLowerRightTrueFalse
- | BlockState::BirchDoor_EastUpperLeftFalseTrue
- | BlockState::BirchDoor_EastUpperLeftFalseFalse
- | BlockState::BirchDoor_EastUpperRightFalseTrue
- | BlockState::BirchDoor_EastUpperRightFalseFalse
- | BlockState::BirchDoor_EastLowerLeftFalseTrue
- | BlockState::BirchDoor_EastLowerLeftFalseFalse
- | BlockState::BirchDoor_EastLowerRightFalseTrue
- | BlockState::BirchDoor_EastLowerRightFalseFalse
- | BlockState::JungleDoor_NorthUpperLeftTrueTrue
- | BlockState::JungleDoor_NorthUpperLeftTrueFalse
- | BlockState::JungleDoor_NorthLowerLeftTrueTrue
- | BlockState::JungleDoor_NorthLowerLeftTrueFalse
- | BlockState::JungleDoor_SouthUpperRightTrueTrue
- | BlockState::JungleDoor_SouthUpperRightTrueFalse
- | BlockState::JungleDoor_SouthLowerRightTrueTrue
- | BlockState::JungleDoor_SouthLowerRightTrueFalse
- | BlockState::JungleDoor_EastUpperLeftFalseTrue
- | BlockState::JungleDoor_EastUpperLeftFalseFalse
- | BlockState::JungleDoor_EastUpperRightFalseTrue
- | BlockState::JungleDoor_EastUpperRightFalseFalse
- | BlockState::JungleDoor_EastLowerLeftFalseTrue
- | BlockState::JungleDoor_EastLowerLeftFalseFalse
- | BlockState::JungleDoor_EastLowerRightFalseTrue
- | BlockState::JungleDoor_EastLowerRightFalseFalse
- | BlockState::AcaciaDoor_NorthUpperLeftTrueTrue
- | BlockState::AcaciaDoor_NorthUpperLeftTrueFalse
- | BlockState::AcaciaDoor_NorthLowerLeftTrueTrue
- | BlockState::AcaciaDoor_NorthLowerLeftTrueFalse
- | BlockState::AcaciaDoor_SouthUpperRightTrueTrue
- | BlockState::AcaciaDoor_SouthUpperRightTrueFalse
- | BlockState::AcaciaDoor_SouthLowerRightTrueTrue
- | BlockState::AcaciaDoor_SouthLowerRightTrueFalse
- | BlockState::AcaciaDoor_EastUpperLeftFalseTrue
- | BlockState::AcaciaDoor_EastUpperLeftFalseFalse
- | BlockState::AcaciaDoor_EastUpperRightFalseTrue
- | BlockState::AcaciaDoor_EastUpperRightFalseFalse
- | BlockState::AcaciaDoor_EastLowerLeftFalseTrue
- | BlockState::AcaciaDoor_EastLowerLeftFalseFalse
- | BlockState::AcaciaDoor_EastLowerRightFalseTrue
- | BlockState::AcaciaDoor_EastLowerRightFalseFalse
- | BlockState::DarkOakDoor_NorthUpperLeftTrueTrue
- | BlockState::DarkOakDoor_NorthUpperLeftTrueFalse
- | BlockState::DarkOakDoor_NorthLowerLeftTrueTrue
- | BlockState::DarkOakDoor_NorthLowerLeftTrueFalse
- | BlockState::DarkOakDoor_SouthUpperRightTrueTrue
- | BlockState::DarkOakDoor_SouthUpperRightTrueFalse
- | BlockState::DarkOakDoor_SouthLowerRightTrueTrue
- | BlockState::DarkOakDoor_SouthLowerRightTrueFalse
- | BlockState::DarkOakDoor_EastUpperLeftFalseTrue
- | BlockState::DarkOakDoor_EastUpperLeftFalseFalse
- | BlockState::DarkOakDoor_EastUpperRightFalseTrue
- | BlockState::DarkOakDoor_EastUpperRightFalseFalse
- | BlockState::DarkOakDoor_EastLowerLeftFalseTrue
- | BlockState::DarkOakDoor_EastLowerLeftFalseFalse
- | BlockState::DarkOakDoor_EastLowerRightFalseTrue
- | BlockState::DarkOakDoor_EastLowerRightFalseFalse
- | BlockState::MangroveDoor_NorthUpperLeftTrueTrue
- | BlockState::MangroveDoor_NorthUpperLeftTrueFalse
- | BlockState::MangroveDoor_NorthLowerLeftTrueTrue
- | BlockState::MangroveDoor_NorthLowerLeftTrueFalse
- | BlockState::MangroveDoor_SouthUpperRightTrueTrue
- | BlockState::MangroveDoor_SouthUpperRightTrueFalse
- | BlockState::MangroveDoor_SouthLowerRightTrueTrue
- | BlockState::MangroveDoor_SouthLowerRightTrueFalse
- | BlockState::MangroveDoor_EastUpperLeftFalseTrue
- | BlockState::MangroveDoor_EastUpperLeftFalseFalse
- | BlockState::MangroveDoor_EastUpperRightFalseTrue
- | BlockState::MangroveDoor_EastUpperRightFalseFalse
- | BlockState::MangroveDoor_EastLowerLeftFalseTrue
- | BlockState::MangroveDoor_EastLowerLeftFalseFalse
- | BlockState::MangroveDoor_EastLowerRightFalseTrue
- | BlockState::MangroveDoor_EastLowerRightFalseFalse
- | BlockState::BambooDoor_NorthUpperLeftTrueTrue
- | BlockState::BambooDoor_NorthUpperLeftTrueFalse
- | BlockState::BambooDoor_NorthLowerLeftTrueTrue
- | BlockState::BambooDoor_NorthLowerLeftTrueFalse
- | BlockState::BambooDoor_SouthUpperRightTrueTrue
- | BlockState::BambooDoor_SouthUpperRightTrueFalse
- | BlockState::BambooDoor_SouthLowerRightTrueTrue
- | BlockState::BambooDoor_SouthLowerRightTrueFalse
- | BlockState::BambooDoor_EastUpperLeftFalseTrue
- | BlockState::BambooDoor_EastUpperLeftFalseFalse
- | BlockState::BambooDoor_EastUpperRightFalseTrue
- | BlockState::BambooDoor_EastUpperRightFalseFalse
- | BlockState::BambooDoor_EastLowerLeftFalseTrue
- | BlockState::BambooDoor_EastLowerLeftFalseFalse
- | BlockState::BambooDoor_EastLowerRightFalseTrue
- | BlockState::BambooDoor_EastLowerRightFalseFalse
- | BlockState::CrimsonTrapdoor_EastTopTrueTrueTrue
- | BlockState::CrimsonTrapdoor_EastTopTrueTrueFalse
- | BlockState::CrimsonTrapdoor_EastTopTrueFalseTrue
- | BlockState::CrimsonTrapdoor_EastTopTrueFalseFalse
- | BlockState::CrimsonTrapdoor_EastBottomTrueTrueTrue
- | BlockState::CrimsonTrapdoor_EastBottomTrueTrueFalse
- | BlockState::CrimsonTrapdoor_EastBottomTrueFalseTrue
- | BlockState::CrimsonTrapdoor_EastBottomTrueFalseFalse
- | BlockState::WarpedTrapdoor_EastTopTrueTrueTrue
- | BlockState::WarpedTrapdoor_EastTopTrueTrueFalse
- | BlockState::WarpedTrapdoor_EastTopTrueFalseTrue
- | BlockState::WarpedTrapdoor_EastTopTrueFalseFalse
- | BlockState::WarpedTrapdoor_EastBottomTrueTrueTrue
- | BlockState::WarpedTrapdoor_EastBottomTrueTrueFalse
- | BlockState::WarpedTrapdoor_EastBottomTrueFalseTrue
- | BlockState::WarpedTrapdoor_EastBottomTrueFalseFalse
- | BlockState::CrimsonDoor_NorthUpperLeftTrueTrue
- | BlockState::CrimsonDoor_NorthUpperLeftTrueFalse
- | BlockState::CrimsonDoor_NorthLowerLeftTrueTrue
- | BlockState::CrimsonDoor_NorthLowerLeftTrueFalse
- | BlockState::CrimsonDoor_SouthUpperRightTrueTrue
- | BlockState::CrimsonDoor_SouthUpperRightTrueFalse
- | BlockState::CrimsonDoor_SouthLowerRightTrueTrue
- | BlockState::CrimsonDoor_SouthLowerRightTrueFalse
- | BlockState::CrimsonDoor_EastUpperLeftFalseTrue
- | BlockState::CrimsonDoor_EastUpperLeftFalseFalse
- | BlockState::CrimsonDoor_EastUpperRightFalseTrue
- | BlockState::CrimsonDoor_EastUpperRightFalseFalse
- | BlockState::CrimsonDoor_EastLowerLeftFalseTrue
- | BlockState::CrimsonDoor_EastLowerLeftFalseFalse
- | BlockState::CrimsonDoor_EastLowerRightFalseTrue
- | BlockState::CrimsonDoor_EastLowerRightFalseFalse
- | BlockState::WarpedDoor_NorthUpperLeftTrueTrue
- | BlockState::WarpedDoor_NorthUpperLeftTrueFalse
- | BlockState::WarpedDoor_NorthLowerLeftTrueTrue
- | BlockState::WarpedDoor_NorthLowerLeftTrueFalse
- | BlockState::WarpedDoor_SouthUpperRightTrueTrue
- | BlockState::WarpedDoor_SouthUpperRightTrueFalse
- | BlockState::WarpedDoor_SouthLowerRightTrueTrue
- | BlockState::WarpedDoor_SouthLowerRightTrueFalse
- | BlockState::WarpedDoor_EastUpperLeftFalseTrue
- | BlockState::WarpedDoor_EastUpperLeftFalseFalse
- | BlockState::WarpedDoor_EastUpperRightFalseTrue
- | BlockState::WarpedDoor_EastUpperRightFalseFalse
- | BlockState::WarpedDoor_EastLowerLeftFalseTrue
- | BlockState::WarpedDoor_EastLowerLeftFalseFalse
- | BlockState::WarpedDoor_EastLowerRightFalseTrue
- | BlockState::WarpedDoor_EastLowerRightFalseFalse => &SHAPE69,
- BlockState::OakDoor_NorthUpperLeftFalseTrue
- | BlockState::OakDoor_NorthUpperLeftFalseFalse
- | BlockState::OakDoor_NorthUpperRightFalseTrue
- | BlockState::OakDoor_NorthUpperRightFalseFalse
- | BlockState::OakDoor_NorthLowerLeftFalseTrue
- | BlockState::OakDoor_NorthLowerLeftFalseFalse
- | BlockState::OakDoor_NorthLowerRightFalseTrue
- | BlockState::OakDoor_NorthLowerRightFalseFalse
- | BlockState::OakDoor_WestUpperLeftTrueTrue
- | BlockState::OakDoor_WestUpperLeftTrueFalse
- | BlockState::OakDoor_WestLowerLeftTrueTrue
- | BlockState::OakDoor_WestLowerLeftTrueFalse
- | BlockState::OakDoor_EastUpperRightTrueTrue
- | BlockState::OakDoor_EastUpperRightTrueFalse
- | BlockState::OakDoor_EastLowerRightTrueTrue
- | BlockState::OakDoor_EastLowerRightTrueFalse
- | BlockState::Ladder_NorthTrue
- | BlockState::Ladder_NorthFalse
- | BlockState::IronDoor_NorthUpperLeftFalseTrue
- | BlockState::IronDoor_NorthUpperLeftFalseFalse
- | BlockState::IronDoor_NorthUpperRightFalseTrue
- | BlockState::IronDoor_NorthUpperRightFalseFalse
- | BlockState::IronDoor_NorthLowerLeftFalseTrue
- | BlockState::IronDoor_NorthLowerLeftFalseFalse
- | BlockState::IronDoor_NorthLowerRightFalseTrue
- | BlockState::IronDoor_NorthLowerRightFalseFalse
- | BlockState::IronDoor_WestUpperLeftTrueTrue
- | BlockState::IronDoor_WestUpperLeftTrueFalse
- | BlockState::IronDoor_WestLowerLeftTrueTrue
- | BlockState::IronDoor_WestLowerLeftTrueFalse
- | BlockState::IronDoor_EastUpperRightTrueTrue
- | BlockState::IronDoor_EastUpperRightTrueFalse
- | BlockState::IronDoor_EastLowerRightTrueTrue
- | BlockState::IronDoor_EastLowerRightTrueFalse
- | BlockState::OakTrapdoor_NorthTopTrueTrueTrue
- | BlockState::OakTrapdoor_NorthTopTrueTrueFalse
- | BlockState::OakTrapdoor_NorthTopTrueFalseTrue
- | BlockState::OakTrapdoor_NorthTopTrueFalseFalse
- | BlockState::OakTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::OakTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::OakTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::OakTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::SpruceTrapdoor_NorthTopTrueTrueTrue
- | BlockState::SpruceTrapdoor_NorthTopTrueTrueFalse
- | BlockState::SpruceTrapdoor_NorthTopTrueFalseTrue
- | BlockState::SpruceTrapdoor_NorthTopTrueFalseFalse
- | BlockState::SpruceTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::SpruceTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::SpruceTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::SpruceTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::BirchTrapdoor_NorthTopTrueTrueTrue
- | BlockState::BirchTrapdoor_NorthTopTrueTrueFalse
- | BlockState::BirchTrapdoor_NorthTopTrueFalseTrue
- | BlockState::BirchTrapdoor_NorthTopTrueFalseFalse
- | BlockState::BirchTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::BirchTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::BirchTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::BirchTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::JungleTrapdoor_NorthTopTrueTrueTrue
- | BlockState::JungleTrapdoor_NorthTopTrueTrueFalse
- | BlockState::JungleTrapdoor_NorthTopTrueFalseTrue
- | BlockState::JungleTrapdoor_NorthTopTrueFalseFalse
- | BlockState::JungleTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::JungleTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::JungleTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::JungleTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::AcaciaTrapdoor_NorthTopTrueTrueTrue
- | BlockState::AcaciaTrapdoor_NorthTopTrueTrueFalse
- | BlockState::AcaciaTrapdoor_NorthTopTrueFalseTrue
- | BlockState::AcaciaTrapdoor_NorthTopTrueFalseFalse
- | BlockState::AcaciaTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::AcaciaTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::AcaciaTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::AcaciaTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::DarkOakTrapdoor_NorthTopTrueTrueTrue
- | BlockState::DarkOakTrapdoor_NorthTopTrueTrueFalse
- | BlockState::DarkOakTrapdoor_NorthTopTrueFalseTrue
- | BlockState::DarkOakTrapdoor_NorthTopTrueFalseFalse
- | BlockState::DarkOakTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::DarkOakTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::DarkOakTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::DarkOakTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::MangroveTrapdoor_NorthTopTrueTrueTrue
- | BlockState::MangroveTrapdoor_NorthTopTrueTrueFalse
- | BlockState::MangroveTrapdoor_NorthTopTrueFalseTrue
- | BlockState::MangroveTrapdoor_NorthTopTrueFalseFalse
- | BlockState::MangroveTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::MangroveTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::MangroveTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::MangroveTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::BambooTrapdoor_NorthTopTrueTrueTrue
- | BlockState::BambooTrapdoor_NorthTopTrueTrueFalse
- | BlockState::BambooTrapdoor_NorthTopTrueFalseTrue
- | BlockState::BambooTrapdoor_NorthTopTrueFalseFalse
- | BlockState::BambooTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::BambooTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::BambooTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::BambooTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::IronTrapdoor_NorthTopTrueTrueTrue
- | BlockState::IronTrapdoor_NorthTopTrueTrueFalse
- | BlockState::IronTrapdoor_NorthTopTrueFalseTrue
- | BlockState::IronTrapdoor_NorthTopTrueFalseFalse
- | BlockState::IronTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::IronTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::IronTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::IronTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::SpruceDoor_NorthUpperLeftFalseTrue
- | BlockState::SpruceDoor_NorthUpperLeftFalseFalse
- | BlockState::SpruceDoor_NorthUpperRightFalseTrue
- | BlockState::SpruceDoor_NorthUpperRightFalseFalse
- | BlockState::SpruceDoor_NorthLowerLeftFalseTrue
- | BlockState::SpruceDoor_NorthLowerLeftFalseFalse
- | BlockState::SpruceDoor_NorthLowerRightFalseTrue
- | BlockState::SpruceDoor_NorthLowerRightFalseFalse
- | BlockState::SpruceDoor_WestUpperLeftTrueTrue
- | BlockState::SpruceDoor_WestUpperLeftTrueFalse
- | BlockState::SpruceDoor_WestLowerLeftTrueTrue
- | BlockState::SpruceDoor_WestLowerLeftTrueFalse
- | BlockState::SpruceDoor_EastUpperRightTrueTrue
- | BlockState::SpruceDoor_EastUpperRightTrueFalse
- | BlockState::SpruceDoor_EastLowerRightTrueTrue
- | BlockState::SpruceDoor_EastLowerRightTrueFalse
- | BlockState::BirchDoor_NorthUpperLeftFalseTrue
- | BlockState::BirchDoor_NorthUpperLeftFalseFalse
- | BlockState::BirchDoor_NorthUpperRightFalseTrue
- | BlockState::BirchDoor_NorthUpperRightFalseFalse
- | BlockState::BirchDoor_NorthLowerLeftFalseTrue
- | BlockState::BirchDoor_NorthLowerLeftFalseFalse
- | BlockState::BirchDoor_NorthLowerRightFalseTrue
- | BlockState::BirchDoor_NorthLowerRightFalseFalse
- | BlockState::BirchDoor_WestUpperLeftTrueTrue
- | BlockState::BirchDoor_WestUpperLeftTrueFalse
- | BlockState::BirchDoor_WestLowerLeftTrueTrue
- | BlockState::BirchDoor_WestLowerLeftTrueFalse
- | BlockState::BirchDoor_EastUpperRightTrueTrue
- | BlockState::BirchDoor_EastUpperRightTrueFalse
- | BlockState::BirchDoor_EastLowerRightTrueTrue
- | BlockState::BirchDoor_EastLowerRightTrueFalse
- | BlockState::JungleDoor_NorthUpperLeftFalseTrue
- | BlockState::JungleDoor_NorthUpperLeftFalseFalse
- | BlockState::JungleDoor_NorthUpperRightFalseTrue
- | BlockState::JungleDoor_NorthUpperRightFalseFalse
- | BlockState::JungleDoor_NorthLowerLeftFalseTrue
- | BlockState::JungleDoor_NorthLowerLeftFalseFalse
- | BlockState::JungleDoor_NorthLowerRightFalseTrue
- | BlockState::JungleDoor_NorthLowerRightFalseFalse
- | BlockState::JungleDoor_WestUpperLeftTrueTrue
- | BlockState::JungleDoor_WestUpperLeftTrueFalse
- | BlockState::JungleDoor_WestLowerLeftTrueTrue
- | BlockState::JungleDoor_WestLowerLeftTrueFalse
- | BlockState::JungleDoor_EastUpperRightTrueTrue
- | BlockState::JungleDoor_EastUpperRightTrueFalse
- | BlockState::JungleDoor_EastLowerRightTrueTrue
- | BlockState::JungleDoor_EastLowerRightTrueFalse
- | BlockState::AcaciaDoor_NorthUpperLeftFalseTrue
- | BlockState::AcaciaDoor_NorthUpperLeftFalseFalse
- | BlockState::AcaciaDoor_NorthUpperRightFalseTrue
- | BlockState::AcaciaDoor_NorthUpperRightFalseFalse
- | BlockState::AcaciaDoor_NorthLowerLeftFalseTrue
- | BlockState::AcaciaDoor_NorthLowerLeftFalseFalse
- | BlockState::AcaciaDoor_NorthLowerRightFalseTrue
- | BlockState::AcaciaDoor_NorthLowerRightFalseFalse
- | BlockState::AcaciaDoor_WestUpperLeftTrueTrue
- | BlockState::AcaciaDoor_WestUpperLeftTrueFalse
- | BlockState::AcaciaDoor_WestLowerLeftTrueTrue
- | BlockState::AcaciaDoor_WestLowerLeftTrueFalse
- | BlockState::AcaciaDoor_EastUpperRightTrueTrue
- | BlockState::AcaciaDoor_EastUpperRightTrueFalse
- | BlockState::AcaciaDoor_EastLowerRightTrueTrue
- | BlockState::AcaciaDoor_EastLowerRightTrueFalse
- | BlockState::DarkOakDoor_NorthUpperLeftFalseTrue
- | BlockState::DarkOakDoor_NorthUpperLeftFalseFalse
- | BlockState::DarkOakDoor_NorthUpperRightFalseTrue
- | BlockState::DarkOakDoor_NorthUpperRightFalseFalse
- | BlockState::DarkOakDoor_NorthLowerLeftFalseTrue
- | BlockState::DarkOakDoor_NorthLowerLeftFalseFalse
- | BlockState::DarkOakDoor_NorthLowerRightFalseTrue
- | BlockState::DarkOakDoor_NorthLowerRightFalseFalse
- | BlockState::DarkOakDoor_WestUpperLeftTrueTrue
- | BlockState::DarkOakDoor_WestUpperLeftTrueFalse
- | BlockState::DarkOakDoor_WestLowerLeftTrueTrue
- | BlockState::DarkOakDoor_WestLowerLeftTrueFalse
- | BlockState::DarkOakDoor_EastUpperRightTrueTrue
- | BlockState::DarkOakDoor_EastUpperRightTrueFalse
- | BlockState::DarkOakDoor_EastLowerRightTrueTrue
- | BlockState::DarkOakDoor_EastLowerRightTrueFalse
- | BlockState::MangroveDoor_NorthUpperLeftFalseTrue
- | BlockState::MangroveDoor_NorthUpperLeftFalseFalse
- | BlockState::MangroveDoor_NorthUpperRightFalseTrue
- | BlockState::MangroveDoor_NorthUpperRightFalseFalse
- | BlockState::MangroveDoor_NorthLowerLeftFalseTrue
- | BlockState::MangroveDoor_NorthLowerLeftFalseFalse
- | BlockState::MangroveDoor_NorthLowerRightFalseTrue
- | BlockState::MangroveDoor_NorthLowerRightFalseFalse
- | BlockState::MangroveDoor_WestUpperLeftTrueTrue
- | BlockState::MangroveDoor_WestUpperLeftTrueFalse
- | BlockState::MangroveDoor_WestLowerLeftTrueTrue
- | BlockState::MangroveDoor_WestLowerLeftTrueFalse
- | BlockState::MangroveDoor_EastUpperRightTrueTrue
- | BlockState::MangroveDoor_EastUpperRightTrueFalse
- | BlockState::MangroveDoor_EastLowerRightTrueTrue
- | BlockState::MangroveDoor_EastLowerRightTrueFalse
- | BlockState::BambooDoor_NorthUpperLeftFalseTrue
- | BlockState::BambooDoor_NorthUpperLeftFalseFalse
- | BlockState::BambooDoor_NorthUpperRightFalseTrue
- | BlockState::BambooDoor_NorthUpperRightFalseFalse
- | BlockState::BambooDoor_NorthLowerLeftFalseTrue
- | BlockState::BambooDoor_NorthLowerLeftFalseFalse
- | BlockState::BambooDoor_NorthLowerRightFalseTrue
- | BlockState::BambooDoor_NorthLowerRightFalseFalse
- | BlockState::BambooDoor_WestUpperLeftTrueTrue
- | BlockState::BambooDoor_WestUpperLeftTrueFalse
- | BlockState::BambooDoor_WestLowerLeftTrueTrue
- | BlockState::BambooDoor_WestLowerLeftTrueFalse
- | BlockState::BambooDoor_EastUpperRightTrueTrue
- | BlockState::BambooDoor_EastUpperRightTrueFalse
- | BlockState::BambooDoor_EastLowerRightTrueTrue
- | BlockState::BambooDoor_EastLowerRightTrueFalse
- | BlockState::CrimsonTrapdoor_NorthTopTrueTrueTrue
- | BlockState::CrimsonTrapdoor_NorthTopTrueTrueFalse
- | BlockState::CrimsonTrapdoor_NorthTopTrueFalseTrue
- | BlockState::CrimsonTrapdoor_NorthTopTrueFalseFalse
- | BlockState::CrimsonTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::CrimsonTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::CrimsonTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::CrimsonTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::WarpedTrapdoor_NorthTopTrueTrueTrue
- | BlockState::WarpedTrapdoor_NorthTopTrueTrueFalse
- | BlockState::WarpedTrapdoor_NorthTopTrueFalseTrue
- | BlockState::WarpedTrapdoor_NorthTopTrueFalseFalse
- | BlockState::WarpedTrapdoor_NorthBottomTrueTrueTrue
- | BlockState::WarpedTrapdoor_NorthBottomTrueTrueFalse
- | BlockState::WarpedTrapdoor_NorthBottomTrueFalseTrue
- | BlockState::WarpedTrapdoor_NorthBottomTrueFalseFalse
- | BlockState::CrimsonDoor_NorthUpperLeftFalseTrue
- | BlockState::CrimsonDoor_NorthUpperLeftFalseFalse
- | BlockState::CrimsonDoor_NorthUpperRightFalseTrue
- | BlockState::CrimsonDoor_NorthUpperRightFalseFalse
- | BlockState::CrimsonDoor_NorthLowerLeftFalseTrue
- | BlockState::CrimsonDoor_NorthLowerLeftFalseFalse
- | BlockState::CrimsonDoor_NorthLowerRightFalseTrue
- | BlockState::CrimsonDoor_NorthLowerRightFalseFalse
- | BlockState::CrimsonDoor_WestUpperLeftTrueTrue
- | BlockState::CrimsonDoor_WestUpperLeftTrueFalse
- | BlockState::CrimsonDoor_WestLowerLeftTrueTrue
- | BlockState::CrimsonDoor_WestLowerLeftTrueFalse
- | BlockState::CrimsonDoor_EastUpperRightTrueTrue
- | BlockState::CrimsonDoor_EastUpperRightTrueFalse
- | BlockState::CrimsonDoor_EastLowerRightTrueTrue
- | BlockState::CrimsonDoor_EastLowerRightTrueFalse
- | BlockState::WarpedDoor_NorthUpperLeftFalseTrue
- | BlockState::WarpedDoor_NorthUpperLeftFalseFalse
- | BlockState::WarpedDoor_NorthUpperRightFalseTrue
- | BlockState::WarpedDoor_NorthUpperRightFalseFalse
- | BlockState::WarpedDoor_NorthLowerLeftFalseTrue
- | BlockState::WarpedDoor_NorthLowerLeftFalseFalse
- | BlockState::WarpedDoor_NorthLowerRightFalseTrue
- | BlockState::WarpedDoor_NorthLowerRightFalseFalse
- | BlockState::WarpedDoor_WestUpperLeftTrueTrue
- | BlockState::WarpedDoor_WestUpperLeftTrueFalse
- | BlockState::WarpedDoor_WestLowerLeftTrueTrue
- | BlockState::WarpedDoor_WestLowerLeftTrueFalse
- | BlockState::WarpedDoor_EastUpperRightTrueTrue
- | BlockState::WarpedDoor_EastUpperRightTrueFalse
- | BlockState::WarpedDoor_EastLowerRightTrueTrue
- | BlockState::WarpedDoor_EastLowerRightTrueFalse => &SHAPE70,
- BlockState::OakDoor_NorthUpperRightTrueTrue
- | BlockState::OakDoor_NorthUpperRightTrueFalse
- | BlockState::OakDoor_NorthLowerRightTrueTrue
- | BlockState::OakDoor_NorthLowerRightTrueFalse
- | BlockState::OakDoor_SouthUpperLeftTrueTrue
- | BlockState::OakDoor_SouthUpperLeftTrueFalse
- | BlockState::OakDoor_SouthLowerLeftTrueTrue
- | BlockState::OakDoor_SouthLowerLeftTrueFalse
- | BlockState::OakDoor_WestUpperLeftFalseTrue
- | BlockState::OakDoor_WestUpperLeftFalseFalse
- | BlockState::OakDoor_WestUpperRightFalseTrue
- | BlockState::OakDoor_WestUpperRightFalseFalse
- | BlockState::OakDoor_WestLowerLeftFalseTrue
- | BlockState::OakDoor_WestLowerLeftFalseFalse
- | BlockState::OakDoor_WestLowerRightFalseTrue
- | BlockState::OakDoor_WestLowerRightFalseFalse
- | BlockState::Ladder_WestTrue
- | BlockState::Ladder_WestFalse
- | BlockState::IronDoor_NorthUpperRightTrueTrue
- | BlockState::IronDoor_NorthUpperRightTrueFalse
- | BlockState::IronDoor_NorthLowerRightTrueTrue
- | BlockState::IronDoor_NorthLowerRightTrueFalse
- | BlockState::IronDoor_SouthUpperLeftTrueTrue
- | BlockState::IronDoor_SouthUpperLeftTrueFalse
- | BlockState::IronDoor_SouthLowerLeftTrueTrue
- | BlockState::IronDoor_SouthLowerLeftTrueFalse
- | BlockState::IronDoor_WestUpperLeftFalseTrue
- | BlockState::IronDoor_WestUpperLeftFalseFalse
- | BlockState::IronDoor_WestUpperRightFalseTrue
- | BlockState::IronDoor_WestUpperRightFalseFalse
- | BlockState::IronDoor_WestLowerLeftFalseTrue
- | BlockState::IronDoor_WestLowerLeftFalseFalse
- | BlockState::IronDoor_WestLowerRightFalseTrue
- | BlockState::IronDoor_WestLowerRightFalseFalse
- | BlockState::OakTrapdoor_WestTopTrueTrueTrue
- | BlockState::OakTrapdoor_WestTopTrueTrueFalse
- | BlockState::OakTrapdoor_WestTopTrueFalseTrue
- | BlockState::OakTrapdoor_WestTopTrueFalseFalse
- | BlockState::OakTrapdoor_WestBottomTrueTrueTrue
- | BlockState::OakTrapdoor_WestBottomTrueTrueFalse
- | BlockState::OakTrapdoor_WestBottomTrueFalseTrue
- | BlockState::OakTrapdoor_WestBottomTrueFalseFalse
- | BlockState::SpruceTrapdoor_WestTopTrueTrueTrue
- | BlockState::SpruceTrapdoor_WestTopTrueTrueFalse
- | BlockState::SpruceTrapdoor_WestTopTrueFalseTrue
- | BlockState::SpruceTrapdoor_WestTopTrueFalseFalse
- | BlockState::SpruceTrapdoor_WestBottomTrueTrueTrue
- | BlockState::SpruceTrapdoor_WestBottomTrueTrueFalse
- | BlockState::SpruceTrapdoor_WestBottomTrueFalseTrue
- | BlockState::SpruceTrapdoor_WestBottomTrueFalseFalse
- | BlockState::BirchTrapdoor_WestTopTrueTrueTrue
- | BlockState::BirchTrapdoor_WestTopTrueTrueFalse
- | BlockState::BirchTrapdoor_WestTopTrueFalseTrue
- | BlockState::BirchTrapdoor_WestTopTrueFalseFalse
- | BlockState::BirchTrapdoor_WestBottomTrueTrueTrue
- | BlockState::BirchTrapdoor_WestBottomTrueTrueFalse
- | BlockState::BirchTrapdoor_WestBottomTrueFalseTrue
- | BlockState::BirchTrapdoor_WestBottomTrueFalseFalse
- | BlockState::JungleTrapdoor_WestTopTrueTrueTrue
- | BlockState::JungleTrapdoor_WestTopTrueTrueFalse
- | BlockState::JungleTrapdoor_WestTopTrueFalseTrue
- | BlockState::JungleTrapdoor_WestTopTrueFalseFalse
- | BlockState::JungleTrapdoor_WestBottomTrueTrueTrue
- | BlockState::JungleTrapdoor_WestBottomTrueTrueFalse
- | BlockState::JungleTrapdoor_WestBottomTrueFalseTrue
- | BlockState::JungleTrapdoor_WestBottomTrueFalseFalse
- | BlockState::AcaciaTrapdoor_WestTopTrueTrueTrue
- | BlockState::AcaciaTrapdoor_WestTopTrueTrueFalse
- | BlockState::AcaciaTrapdoor_WestTopTrueFalseTrue
- | BlockState::AcaciaTrapdoor_WestTopTrueFalseFalse
- | BlockState::AcaciaTrapdoor_WestBottomTrueTrueTrue
- | BlockState::AcaciaTrapdoor_WestBottomTrueTrueFalse
- | BlockState::AcaciaTrapdoor_WestBottomTrueFalseTrue
- | BlockState::AcaciaTrapdoor_WestBottomTrueFalseFalse
- | BlockState::DarkOakTrapdoor_WestTopTrueTrueTrue
- | BlockState::DarkOakTrapdoor_WestTopTrueTrueFalse
- | BlockState::DarkOakTrapdoor_WestTopTrueFalseTrue
- | BlockState::DarkOakTrapdoor_WestTopTrueFalseFalse
- | BlockState::DarkOakTrapdoor_WestBottomTrueTrueTrue
- | BlockState::DarkOakTrapdoor_WestBottomTrueTrueFalse
- | BlockState::DarkOakTrapdoor_WestBottomTrueFalseTrue
- | BlockState::DarkOakTrapdoor_WestBottomTrueFalseFalse
- | BlockState::MangroveTrapdoor_WestTopTrueTrueTrue
- | BlockState::MangroveTrapdoor_WestTopTrueTrueFalse
- | BlockState::MangroveTrapdoor_WestTopTrueFalseTrue
- | BlockState::MangroveTrapdoor_WestTopTrueFalseFalse
- | BlockState::MangroveTrapdoor_WestBottomTrueTrueTrue
- | BlockState::MangroveTrapdoor_WestBottomTrueTrueFalse
- | BlockState::MangroveTrapdoor_WestBottomTrueFalseTrue
- | BlockState::MangroveTrapdoor_WestBottomTrueFalseFalse
- | BlockState::BambooTrapdoor_WestTopTrueTrueTrue
- | BlockState::BambooTrapdoor_WestTopTrueTrueFalse
- | BlockState::BambooTrapdoor_WestTopTrueFalseTrue
- | BlockState::BambooTrapdoor_WestTopTrueFalseFalse
- | BlockState::BambooTrapdoor_WestBottomTrueTrueTrue
- | BlockState::BambooTrapdoor_WestBottomTrueTrueFalse
- | BlockState::BambooTrapdoor_WestBottomTrueFalseTrue
- | BlockState::BambooTrapdoor_WestBottomTrueFalseFalse
- | BlockState::IronTrapdoor_WestTopTrueTrueTrue
- | BlockState::IronTrapdoor_WestTopTrueTrueFalse
- | BlockState::IronTrapdoor_WestTopTrueFalseTrue
- | BlockState::IronTrapdoor_WestTopTrueFalseFalse
- | BlockState::IronTrapdoor_WestBottomTrueTrueTrue
- | BlockState::IronTrapdoor_WestBottomTrueTrueFalse
- | BlockState::IronTrapdoor_WestBottomTrueFalseTrue
- | BlockState::IronTrapdoor_WestBottomTrueFalseFalse
- | BlockState::SpruceDoor_NorthUpperRightTrueTrue
- | BlockState::SpruceDoor_NorthUpperRightTrueFalse
- | BlockState::SpruceDoor_NorthLowerRightTrueTrue
- | BlockState::SpruceDoor_NorthLowerRightTrueFalse
- | BlockState::SpruceDoor_SouthUpperLeftTrueTrue
- | BlockState::SpruceDoor_SouthUpperLeftTrueFalse
- | BlockState::SpruceDoor_SouthLowerLeftTrueTrue
- | BlockState::SpruceDoor_SouthLowerLeftTrueFalse
- | BlockState::SpruceDoor_WestUpperLeftFalseTrue
- | BlockState::SpruceDoor_WestUpperLeftFalseFalse
- | BlockState::SpruceDoor_WestUpperRightFalseTrue
- | BlockState::SpruceDoor_WestUpperRightFalseFalse
- | BlockState::SpruceDoor_WestLowerLeftFalseTrue
- | BlockState::SpruceDoor_WestLowerLeftFalseFalse
- | BlockState::SpruceDoor_WestLowerRightFalseTrue
- | BlockState::SpruceDoor_WestLowerRightFalseFalse
- | BlockState::BirchDoor_NorthUpperRightTrueTrue
- | BlockState::BirchDoor_NorthUpperRightTrueFalse
- | BlockState::BirchDoor_NorthLowerRightTrueTrue
- | BlockState::BirchDoor_NorthLowerRightTrueFalse
- | BlockState::BirchDoor_SouthUpperLeftTrueTrue
- | BlockState::BirchDoor_SouthUpperLeftTrueFalse
- | BlockState::BirchDoor_SouthLowerLeftTrueTrue
- | BlockState::BirchDoor_SouthLowerLeftTrueFalse
- | BlockState::BirchDoor_WestUpperLeftFalseTrue
- | BlockState::BirchDoor_WestUpperLeftFalseFalse
- | BlockState::BirchDoor_WestUpperRightFalseTrue
- | BlockState::BirchDoor_WestUpperRightFalseFalse
- | BlockState::BirchDoor_WestLowerLeftFalseTrue
- | BlockState::BirchDoor_WestLowerLeftFalseFalse
- | BlockState::BirchDoor_WestLowerRightFalseTrue
- | BlockState::BirchDoor_WestLowerRightFalseFalse
- | BlockState::JungleDoor_NorthUpperRightTrueTrue
- | BlockState::JungleDoor_NorthUpperRightTrueFalse
- | BlockState::JungleDoor_NorthLowerRightTrueTrue
- | BlockState::JungleDoor_NorthLowerRightTrueFalse
- | BlockState::JungleDoor_SouthUpperLeftTrueTrue
- | BlockState::JungleDoor_SouthUpperLeftTrueFalse
- | BlockState::JungleDoor_SouthLowerLeftTrueTrue
- | BlockState::JungleDoor_SouthLowerLeftTrueFalse
- | BlockState::JungleDoor_WestUpperLeftFalseTrue
- | BlockState::JungleDoor_WestUpperLeftFalseFalse
- | BlockState::JungleDoor_WestUpperRightFalseTrue
- | BlockState::JungleDoor_WestUpperRightFalseFalse
- | BlockState::JungleDoor_WestLowerLeftFalseTrue
- | BlockState::JungleDoor_WestLowerLeftFalseFalse
- | BlockState::JungleDoor_WestLowerRightFalseTrue
- | BlockState::JungleDoor_WestLowerRightFalseFalse
- | BlockState::AcaciaDoor_NorthUpperRightTrueTrue
- | BlockState::AcaciaDoor_NorthUpperRightTrueFalse
- | BlockState::AcaciaDoor_NorthLowerRightTrueTrue
- | BlockState::AcaciaDoor_NorthLowerRightTrueFalse
- | BlockState::AcaciaDoor_SouthUpperLeftTrueTrue
- | BlockState::AcaciaDoor_SouthUpperLeftTrueFalse
- | BlockState::AcaciaDoor_SouthLowerLeftTrueTrue
- | BlockState::AcaciaDoor_SouthLowerLeftTrueFalse
- | BlockState::AcaciaDoor_WestUpperLeftFalseTrue
- | BlockState::AcaciaDoor_WestUpperLeftFalseFalse
- | BlockState::AcaciaDoor_WestUpperRightFalseTrue
- | BlockState::AcaciaDoor_WestUpperRightFalseFalse
- | BlockState::AcaciaDoor_WestLowerLeftFalseTrue
- | BlockState::AcaciaDoor_WestLowerLeftFalseFalse
- | BlockState::AcaciaDoor_WestLowerRightFalseTrue
- | BlockState::AcaciaDoor_WestLowerRightFalseFalse
- | BlockState::DarkOakDoor_NorthUpperRightTrueTrue
- | BlockState::DarkOakDoor_NorthUpperRightTrueFalse
- | BlockState::DarkOakDoor_NorthLowerRightTrueTrue
- | BlockState::DarkOakDoor_NorthLowerRightTrueFalse
- | BlockState::DarkOakDoor_SouthUpperLeftTrueTrue
- | BlockState::DarkOakDoor_SouthUpperLeftTrueFalse
- | BlockState::DarkOakDoor_SouthLowerLeftTrueTrue
- | BlockState::DarkOakDoor_SouthLowerLeftTrueFalse
- | BlockState::DarkOakDoor_WestUpperLeftFalseTrue
- | BlockState::DarkOakDoor_WestUpperLeftFalseFalse
- | BlockState::DarkOakDoor_WestUpperRightFalseTrue
- | BlockState::DarkOakDoor_WestUpperRightFalseFalse
- | BlockState::DarkOakDoor_WestLowerLeftFalseTrue
- | BlockState::DarkOakDoor_WestLowerLeftFalseFalse
- | BlockState::DarkOakDoor_WestLowerRightFalseTrue
- | BlockState::DarkOakDoor_WestLowerRightFalseFalse
- | BlockState::MangroveDoor_NorthUpperRightTrueTrue
- | BlockState::MangroveDoor_NorthUpperRightTrueFalse
- | BlockState::MangroveDoor_NorthLowerRightTrueTrue
- | BlockState::MangroveDoor_NorthLowerRightTrueFalse
- | BlockState::MangroveDoor_SouthUpperLeftTrueTrue
- | BlockState::MangroveDoor_SouthUpperLeftTrueFalse
- | BlockState::MangroveDoor_SouthLowerLeftTrueTrue
- | BlockState::MangroveDoor_SouthLowerLeftTrueFalse
- | BlockState::MangroveDoor_WestUpperLeftFalseTrue
- | BlockState::MangroveDoor_WestUpperLeftFalseFalse
- | BlockState::MangroveDoor_WestUpperRightFalseTrue
- | BlockState::MangroveDoor_WestUpperRightFalseFalse
- | BlockState::MangroveDoor_WestLowerLeftFalseTrue
- | BlockState::MangroveDoor_WestLowerLeftFalseFalse
- | BlockState::MangroveDoor_WestLowerRightFalseTrue
- | BlockState::MangroveDoor_WestLowerRightFalseFalse
- | BlockState::BambooDoor_NorthUpperRightTrueTrue
- | BlockState::BambooDoor_NorthUpperRightTrueFalse
- | BlockState::BambooDoor_NorthLowerRightTrueTrue
- | BlockState::BambooDoor_NorthLowerRightTrueFalse
- | BlockState::BambooDoor_SouthUpperLeftTrueTrue
- | BlockState::BambooDoor_SouthUpperLeftTrueFalse
- | BlockState::BambooDoor_SouthLowerLeftTrueTrue
- | BlockState::BambooDoor_SouthLowerLeftTrueFalse
- | BlockState::BambooDoor_WestUpperLeftFalseTrue
- | BlockState::BambooDoor_WestUpperLeftFalseFalse
- | BlockState::BambooDoor_WestUpperRightFalseTrue
- | BlockState::BambooDoor_WestUpperRightFalseFalse
- | BlockState::BambooDoor_WestLowerLeftFalseTrue
- | BlockState::BambooDoor_WestLowerLeftFalseFalse
- | BlockState::BambooDoor_WestLowerRightFalseTrue
- | BlockState::BambooDoor_WestLowerRightFalseFalse
- | BlockState::CrimsonTrapdoor_WestTopTrueTrueTrue
- | BlockState::CrimsonTrapdoor_WestTopTrueTrueFalse
- | BlockState::CrimsonTrapdoor_WestTopTrueFalseTrue
- | BlockState::CrimsonTrapdoor_WestTopTrueFalseFalse
- | BlockState::CrimsonTrapdoor_WestBottomTrueTrueTrue
- | BlockState::CrimsonTrapdoor_WestBottomTrueTrueFalse
- | BlockState::CrimsonTrapdoor_WestBottomTrueFalseTrue
- | BlockState::CrimsonTrapdoor_WestBottomTrueFalseFalse
- | BlockState::WarpedTrapdoor_WestTopTrueTrueTrue
- | BlockState::WarpedTrapdoor_WestTopTrueTrueFalse
- | BlockState::WarpedTrapdoor_WestTopTrueFalseTrue
- | BlockState::WarpedTrapdoor_WestTopTrueFalseFalse
- | BlockState::WarpedTrapdoor_WestBottomTrueTrueTrue
- | BlockState::WarpedTrapdoor_WestBottomTrueTrueFalse
- | BlockState::WarpedTrapdoor_WestBottomTrueFalseTrue
- | BlockState::WarpedTrapdoor_WestBottomTrueFalseFalse
- | BlockState::CrimsonDoor_NorthUpperRightTrueTrue
- | BlockState::CrimsonDoor_NorthUpperRightTrueFalse
- | BlockState::CrimsonDoor_NorthLowerRightTrueTrue
- | BlockState::CrimsonDoor_NorthLowerRightTrueFalse
- | BlockState::CrimsonDoor_SouthUpperLeftTrueTrue
- | BlockState::CrimsonDoor_SouthUpperLeftTrueFalse
- | BlockState::CrimsonDoor_SouthLowerLeftTrueTrue
- | BlockState::CrimsonDoor_SouthLowerLeftTrueFalse
- | BlockState::CrimsonDoor_WestUpperLeftFalseTrue
- | BlockState::CrimsonDoor_WestUpperLeftFalseFalse
- | BlockState::CrimsonDoor_WestUpperRightFalseTrue
- | BlockState::CrimsonDoor_WestUpperRightFalseFalse
- | BlockState::CrimsonDoor_WestLowerLeftFalseTrue
- | BlockState::CrimsonDoor_WestLowerLeftFalseFalse
- | BlockState::CrimsonDoor_WestLowerRightFalseTrue
- | BlockState::CrimsonDoor_WestLowerRightFalseFalse
- | BlockState::WarpedDoor_NorthUpperRightTrueTrue
- | BlockState::WarpedDoor_NorthUpperRightTrueFalse
- | BlockState::WarpedDoor_NorthLowerRightTrueTrue
- | BlockState::WarpedDoor_NorthLowerRightTrueFalse
- | BlockState::WarpedDoor_SouthUpperLeftTrueTrue
- | BlockState::WarpedDoor_SouthUpperLeftTrueFalse
- | BlockState::WarpedDoor_SouthLowerLeftTrueTrue
- | BlockState::WarpedDoor_SouthLowerLeftTrueFalse
- | BlockState::WarpedDoor_WestUpperLeftFalseTrue
- | BlockState::WarpedDoor_WestUpperLeftFalseFalse
- | BlockState::WarpedDoor_WestUpperRightFalseTrue
- | BlockState::WarpedDoor_WestUpperRightFalseFalse
- | BlockState::WarpedDoor_WestLowerLeftFalseTrue
- | BlockState::WarpedDoor_WestLowerLeftFalseFalse
- | BlockState::WarpedDoor_WestLowerRightFalseTrue
- | BlockState::WarpedDoor_WestLowerRightFalseFalse => &SHAPE71,
- BlockState::OakDoor_SouthUpperLeftFalseTrue
- | BlockState::OakDoor_SouthUpperLeftFalseFalse
- | BlockState::OakDoor_SouthUpperRightFalseTrue
- | BlockState::OakDoor_SouthUpperRightFalseFalse
- | BlockState::OakDoor_SouthLowerLeftFalseTrue
- | BlockState::OakDoor_SouthLowerLeftFalseFalse
- | BlockState::OakDoor_SouthLowerRightFalseTrue
- | BlockState::OakDoor_SouthLowerRightFalseFalse
- | BlockState::OakDoor_WestUpperRightTrueTrue
- | BlockState::OakDoor_WestUpperRightTrueFalse
- | BlockState::OakDoor_WestLowerRightTrueTrue
- | BlockState::OakDoor_WestLowerRightTrueFalse
- | BlockState::OakDoor_EastUpperLeftTrueTrue
- | BlockState::OakDoor_EastUpperLeftTrueFalse
- | BlockState::OakDoor_EastLowerLeftTrueTrue
- | BlockState::OakDoor_EastLowerLeftTrueFalse
- | BlockState::Ladder_SouthTrue
- | BlockState::Ladder_SouthFalse
- | BlockState::IronDoor_SouthUpperLeftFalseTrue
- | BlockState::IronDoor_SouthUpperLeftFalseFalse
- | BlockState::IronDoor_SouthUpperRightFalseTrue
- | BlockState::IronDoor_SouthUpperRightFalseFalse
- | BlockState::IronDoor_SouthLowerLeftFalseTrue
- | BlockState::IronDoor_SouthLowerLeftFalseFalse
- | BlockState::IronDoor_SouthLowerRightFalseTrue
- | BlockState::IronDoor_SouthLowerRightFalseFalse
- | BlockState::IronDoor_WestUpperRightTrueTrue
- | BlockState::IronDoor_WestUpperRightTrueFalse
- | BlockState::IronDoor_WestLowerRightTrueTrue
- | BlockState::IronDoor_WestLowerRightTrueFalse
- | BlockState::IronDoor_EastUpperLeftTrueTrue
- | BlockState::IronDoor_EastUpperLeftTrueFalse
- | BlockState::IronDoor_EastLowerLeftTrueTrue
- | BlockState::IronDoor_EastLowerLeftTrueFalse
- | BlockState::OakTrapdoor_SouthTopTrueTrueTrue
- | BlockState::OakTrapdoor_SouthTopTrueTrueFalse
- | BlockState::OakTrapdoor_SouthTopTrueFalseTrue
- | BlockState::OakTrapdoor_SouthTopTrueFalseFalse
- | BlockState::OakTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::OakTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::OakTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::OakTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::SpruceTrapdoor_SouthTopTrueTrueTrue
- | BlockState::SpruceTrapdoor_SouthTopTrueTrueFalse
- | BlockState::SpruceTrapdoor_SouthTopTrueFalseTrue
- | BlockState::SpruceTrapdoor_SouthTopTrueFalseFalse
- | BlockState::SpruceTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::SpruceTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::SpruceTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::SpruceTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::BirchTrapdoor_SouthTopTrueTrueTrue
- | BlockState::BirchTrapdoor_SouthTopTrueTrueFalse
- | BlockState::BirchTrapdoor_SouthTopTrueFalseTrue
- | BlockState::BirchTrapdoor_SouthTopTrueFalseFalse
- | BlockState::BirchTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::BirchTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::BirchTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::BirchTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::JungleTrapdoor_SouthTopTrueTrueTrue
- | BlockState::JungleTrapdoor_SouthTopTrueTrueFalse
- | BlockState::JungleTrapdoor_SouthTopTrueFalseTrue
- | BlockState::JungleTrapdoor_SouthTopTrueFalseFalse
- | BlockState::JungleTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::JungleTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::JungleTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::JungleTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::AcaciaTrapdoor_SouthTopTrueTrueTrue
- | BlockState::AcaciaTrapdoor_SouthTopTrueTrueFalse
- | BlockState::AcaciaTrapdoor_SouthTopTrueFalseTrue
- | BlockState::AcaciaTrapdoor_SouthTopTrueFalseFalse
- | BlockState::AcaciaTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::AcaciaTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::AcaciaTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::AcaciaTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::DarkOakTrapdoor_SouthTopTrueTrueTrue
- | BlockState::DarkOakTrapdoor_SouthTopTrueTrueFalse
- | BlockState::DarkOakTrapdoor_SouthTopTrueFalseTrue
- | BlockState::DarkOakTrapdoor_SouthTopTrueFalseFalse
- | BlockState::DarkOakTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::DarkOakTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::DarkOakTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::DarkOakTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::MangroveTrapdoor_SouthTopTrueTrueTrue
- | BlockState::MangroveTrapdoor_SouthTopTrueTrueFalse
- | BlockState::MangroveTrapdoor_SouthTopTrueFalseTrue
- | BlockState::MangroveTrapdoor_SouthTopTrueFalseFalse
- | BlockState::MangroveTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::MangroveTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::MangroveTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::MangroveTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::BambooTrapdoor_SouthTopTrueTrueTrue
- | BlockState::BambooTrapdoor_SouthTopTrueTrueFalse
- | BlockState::BambooTrapdoor_SouthTopTrueFalseTrue
- | BlockState::BambooTrapdoor_SouthTopTrueFalseFalse
- | BlockState::BambooTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::BambooTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::BambooTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::BambooTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::IronTrapdoor_SouthTopTrueTrueTrue
- | BlockState::IronTrapdoor_SouthTopTrueTrueFalse
- | BlockState::IronTrapdoor_SouthTopTrueFalseTrue
- | BlockState::IronTrapdoor_SouthTopTrueFalseFalse
- | BlockState::IronTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::IronTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::IronTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::IronTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::SpruceDoor_SouthUpperLeftFalseTrue
- | BlockState::SpruceDoor_SouthUpperLeftFalseFalse
- | BlockState::SpruceDoor_SouthUpperRightFalseTrue
- | BlockState::SpruceDoor_SouthUpperRightFalseFalse
- | BlockState::SpruceDoor_SouthLowerLeftFalseTrue
- | BlockState::SpruceDoor_SouthLowerLeftFalseFalse
- | BlockState::SpruceDoor_SouthLowerRightFalseTrue
- | BlockState::SpruceDoor_SouthLowerRightFalseFalse
- | BlockState::SpruceDoor_WestUpperRightTrueTrue
- | BlockState::SpruceDoor_WestUpperRightTrueFalse
- | BlockState::SpruceDoor_WestLowerRightTrueTrue
- | BlockState::SpruceDoor_WestLowerRightTrueFalse
- | BlockState::SpruceDoor_EastUpperLeftTrueTrue
- | BlockState::SpruceDoor_EastUpperLeftTrueFalse
- | BlockState::SpruceDoor_EastLowerLeftTrueTrue
- | BlockState::SpruceDoor_EastLowerLeftTrueFalse
- | BlockState::BirchDoor_SouthUpperLeftFalseTrue
- | BlockState::BirchDoor_SouthUpperLeftFalseFalse
- | BlockState::BirchDoor_SouthUpperRightFalseTrue
- | BlockState::BirchDoor_SouthUpperRightFalseFalse
- | BlockState::BirchDoor_SouthLowerLeftFalseTrue
- | BlockState::BirchDoor_SouthLowerLeftFalseFalse
- | BlockState::BirchDoor_SouthLowerRightFalseTrue
- | BlockState::BirchDoor_SouthLowerRightFalseFalse
- | BlockState::BirchDoor_WestUpperRightTrueTrue
- | BlockState::BirchDoor_WestUpperRightTrueFalse
- | BlockState::BirchDoor_WestLowerRightTrueTrue
- | BlockState::BirchDoor_WestLowerRightTrueFalse
- | BlockState::BirchDoor_EastUpperLeftTrueTrue
- | BlockState::BirchDoor_EastUpperLeftTrueFalse
- | BlockState::BirchDoor_EastLowerLeftTrueTrue
- | BlockState::BirchDoor_EastLowerLeftTrueFalse
- | BlockState::JungleDoor_SouthUpperLeftFalseTrue
- | BlockState::JungleDoor_SouthUpperLeftFalseFalse
- | BlockState::JungleDoor_SouthUpperRightFalseTrue
- | BlockState::JungleDoor_SouthUpperRightFalseFalse
- | BlockState::JungleDoor_SouthLowerLeftFalseTrue
- | BlockState::JungleDoor_SouthLowerLeftFalseFalse
- | BlockState::JungleDoor_SouthLowerRightFalseTrue
- | BlockState::JungleDoor_SouthLowerRightFalseFalse
- | BlockState::JungleDoor_WestUpperRightTrueTrue
- | BlockState::JungleDoor_WestUpperRightTrueFalse
- | BlockState::JungleDoor_WestLowerRightTrueTrue
- | BlockState::JungleDoor_WestLowerRightTrueFalse
- | BlockState::JungleDoor_EastUpperLeftTrueTrue
- | BlockState::JungleDoor_EastUpperLeftTrueFalse
- | BlockState::JungleDoor_EastLowerLeftTrueTrue
- | BlockState::JungleDoor_EastLowerLeftTrueFalse
- | BlockState::AcaciaDoor_SouthUpperLeftFalseTrue
- | BlockState::AcaciaDoor_SouthUpperLeftFalseFalse
- | BlockState::AcaciaDoor_SouthUpperRightFalseTrue
- | BlockState::AcaciaDoor_SouthUpperRightFalseFalse
- | BlockState::AcaciaDoor_SouthLowerLeftFalseTrue
- | BlockState::AcaciaDoor_SouthLowerLeftFalseFalse
- | BlockState::AcaciaDoor_SouthLowerRightFalseTrue
- | BlockState::AcaciaDoor_SouthLowerRightFalseFalse
- | BlockState::AcaciaDoor_WestUpperRightTrueTrue
- | BlockState::AcaciaDoor_WestUpperRightTrueFalse
- | BlockState::AcaciaDoor_WestLowerRightTrueTrue
- | BlockState::AcaciaDoor_WestLowerRightTrueFalse
- | BlockState::AcaciaDoor_EastUpperLeftTrueTrue
- | BlockState::AcaciaDoor_EastUpperLeftTrueFalse
- | BlockState::AcaciaDoor_EastLowerLeftTrueTrue
- | BlockState::AcaciaDoor_EastLowerLeftTrueFalse
- | BlockState::DarkOakDoor_SouthUpperLeftFalseTrue
- | BlockState::DarkOakDoor_SouthUpperLeftFalseFalse
- | BlockState::DarkOakDoor_SouthUpperRightFalseTrue
- | BlockState::DarkOakDoor_SouthUpperRightFalseFalse
- | BlockState::DarkOakDoor_SouthLowerLeftFalseTrue
- | BlockState::DarkOakDoor_SouthLowerLeftFalseFalse
- | BlockState::DarkOakDoor_SouthLowerRightFalseTrue
- | BlockState::DarkOakDoor_SouthLowerRightFalseFalse
- | BlockState::DarkOakDoor_WestUpperRightTrueTrue
- | BlockState::DarkOakDoor_WestUpperRightTrueFalse
- | BlockState::DarkOakDoor_WestLowerRightTrueTrue
- | BlockState::DarkOakDoor_WestLowerRightTrueFalse
- | BlockState::DarkOakDoor_EastUpperLeftTrueTrue
- | BlockState::DarkOakDoor_EastUpperLeftTrueFalse
- | BlockState::DarkOakDoor_EastLowerLeftTrueTrue
- | BlockState::DarkOakDoor_EastLowerLeftTrueFalse
- | BlockState::MangroveDoor_SouthUpperLeftFalseTrue
- | BlockState::MangroveDoor_SouthUpperLeftFalseFalse
- | BlockState::MangroveDoor_SouthUpperRightFalseTrue
- | BlockState::MangroveDoor_SouthUpperRightFalseFalse
- | BlockState::MangroveDoor_SouthLowerLeftFalseTrue
- | BlockState::MangroveDoor_SouthLowerLeftFalseFalse
- | BlockState::MangroveDoor_SouthLowerRightFalseTrue
- | BlockState::MangroveDoor_SouthLowerRightFalseFalse
- | BlockState::MangroveDoor_WestUpperRightTrueTrue
- | BlockState::MangroveDoor_WestUpperRightTrueFalse
- | BlockState::MangroveDoor_WestLowerRightTrueTrue
- | BlockState::MangroveDoor_WestLowerRightTrueFalse
- | BlockState::MangroveDoor_EastUpperLeftTrueTrue
- | BlockState::MangroveDoor_EastUpperLeftTrueFalse
- | BlockState::MangroveDoor_EastLowerLeftTrueTrue
- | BlockState::MangroveDoor_EastLowerLeftTrueFalse
- | BlockState::BambooDoor_SouthUpperLeftFalseTrue
- | BlockState::BambooDoor_SouthUpperLeftFalseFalse
- | BlockState::BambooDoor_SouthUpperRightFalseTrue
- | BlockState::BambooDoor_SouthUpperRightFalseFalse
- | BlockState::BambooDoor_SouthLowerLeftFalseTrue
- | BlockState::BambooDoor_SouthLowerLeftFalseFalse
- | BlockState::BambooDoor_SouthLowerRightFalseTrue
- | BlockState::BambooDoor_SouthLowerRightFalseFalse
- | BlockState::BambooDoor_WestUpperRightTrueTrue
- | BlockState::BambooDoor_WestUpperRightTrueFalse
- | BlockState::BambooDoor_WestLowerRightTrueTrue
- | BlockState::BambooDoor_WestLowerRightTrueFalse
- | BlockState::BambooDoor_EastUpperLeftTrueTrue
- | BlockState::BambooDoor_EastUpperLeftTrueFalse
- | BlockState::BambooDoor_EastLowerLeftTrueTrue
- | BlockState::BambooDoor_EastLowerLeftTrueFalse
- | BlockState::CrimsonTrapdoor_SouthTopTrueTrueTrue
- | BlockState::CrimsonTrapdoor_SouthTopTrueTrueFalse
- | BlockState::CrimsonTrapdoor_SouthTopTrueFalseTrue
- | BlockState::CrimsonTrapdoor_SouthTopTrueFalseFalse
- | BlockState::CrimsonTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::CrimsonTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::CrimsonTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::CrimsonTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::WarpedTrapdoor_SouthTopTrueTrueTrue
- | BlockState::WarpedTrapdoor_SouthTopTrueTrueFalse
- | BlockState::WarpedTrapdoor_SouthTopTrueFalseTrue
- | BlockState::WarpedTrapdoor_SouthTopTrueFalseFalse
- | BlockState::WarpedTrapdoor_SouthBottomTrueTrueTrue
- | BlockState::WarpedTrapdoor_SouthBottomTrueTrueFalse
- | BlockState::WarpedTrapdoor_SouthBottomTrueFalseTrue
- | BlockState::WarpedTrapdoor_SouthBottomTrueFalseFalse
- | BlockState::CrimsonDoor_SouthUpperLeftFalseTrue
- | BlockState::CrimsonDoor_SouthUpperLeftFalseFalse
- | BlockState::CrimsonDoor_SouthUpperRightFalseTrue
- | BlockState::CrimsonDoor_SouthUpperRightFalseFalse
- | BlockState::CrimsonDoor_SouthLowerLeftFalseTrue
- | BlockState::CrimsonDoor_SouthLowerLeftFalseFalse
- | BlockState::CrimsonDoor_SouthLowerRightFalseTrue
- | BlockState::CrimsonDoor_SouthLowerRightFalseFalse
- | BlockState::CrimsonDoor_WestUpperRightTrueTrue
- | BlockState::CrimsonDoor_WestUpperRightTrueFalse
- | BlockState::CrimsonDoor_WestLowerRightTrueTrue
- | BlockState::CrimsonDoor_WestLowerRightTrueFalse
- | BlockState::CrimsonDoor_EastUpperLeftTrueTrue
- | BlockState::CrimsonDoor_EastUpperLeftTrueFalse
- | BlockState::CrimsonDoor_EastLowerLeftTrueTrue
- | BlockState::CrimsonDoor_EastLowerLeftTrueFalse
- | BlockState::WarpedDoor_SouthUpperLeftFalseTrue
- | BlockState::WarpedDoor_SouthUpperLeftFalseFalse
- | BlockState::WarpedDoor_SouthUpperRightFalseTrue
- | BlockState::WarpedDoor_SouthUpperRightFalseFalse
- | BlockState::WarpedDoor_SouthLowerLeftFalseTrue
- | BlockState::WarpedDoor_SouthLowerLeftFalseFalse
- | BlockState::WarpedDoor_SouthLowerRightFalseTrue
- | BlockState::WarpedDoor_SouthLowerRightFalseFalse
- | BlockState::WarpedDoor_WestUpperRightTrueTrue
- | BlockState::WarpedDoor_WestUpperRightTrueFalse
- | BlockState::WarpedDoor_WestLowerRightTrueTrue
- | BlockState::WarpedDoor_WestLowerRightTrueFalse
- | BlockState::WarpedDoor_EastUpperLeftTrueTrue
- | BlockState::WarpedDoor_EastUpperLeftTrueFalse
- | BlockState::WarpedDoor_EastLowerLeftTrueTrue
- | BlockState::WarpedDoor_EastLowerLeftTrueFalse => &SHAPE72,
- BlockState::OakWallHangingSign_NorthTrue
- | BlockState::OakWallHangingSign_NorthFalse
- | BlockState::OakWallHangingSign_SouthTrue
- | BlockState::OakWallHangingSign_SouthFalse
- | BlockState::SpruceWallHangingSign_NorthTrue
- | BlockState::SpruceWallHangingSign_NorthFalse
- | BlockState::SpruceWallHangingSign_SouthTrue
- | BlockState::SpruceWallHangingSign_SouthFalse
- | BlockState::BirchWallHangingSign_NorthTrue
- | BlockState::BirchWallHangingSign_NorthFalse
- | BlockState::BirchWallHangingSign_SouthTrue
- | BlockState::BirchWallHangingSign_SouthFalse
- | BlockState::AcaciaWallHangingSign_NorthTrue
- | BlockState::AcaciaWallHangingSign_NorthFalse
- | BlockState::AcaciaWallHangingSign_SouthTrue
- | BlockState::AcaciaWallHangingSign_SouthFalse
- | BlockState::JungleWallHangingSign_NorthTrue
- | BlockState::JungleWallHangingSign_NorthFalse
- | BlockState::JungleWallHangingSign_SouthTrue
- | BlockState::JungleWallHangingSign_SouthFalse
- | BlockState::DarkOakWallHangingSign_NorthTrue
- | BlockState::DarkOakWallHangingSign_NorthFalse
- | BlockState::DarkOakWallHangingSign_SouthTrue
- | BlockState::DarkOakWallHangingSign_SouthFalse
- | BlockState::MangroveWallHangingSign_NorthTrue
- | BlockState::MangroveWallHangingSign_NorthFalse
- | BlockState::MangroveWallHangingSign_SouthTrue
- | BlockState::MangroveWallHangingSign_SouthFalse
- | BlockState::CrimsonWallHangingSign_NorthTrue
- | BlockState::CrimsonWallHangingSign_NorthFalse
- | BlockState::CrimsonWallHangingSign_SouthTrue
- | BlockState::CrimsonWallHangingSign_SouthFalse
- | BlockState::WarpedWallHangingSign_NorthTrue
- | BlockState::WarpedWallHangingSign_NorthFalse
- | BlockState::WarpedWallHangingSign_SouthTrue
- | BlockState::WarpedWallHangingSign_SouthFalse
- | BlockState::BambooWallHangingSign_NorthTrue
- | BlockState::BambooWallHangingSign_NorthFalse
- | BlockState::BambooWallHangingSign_SouthTrue
- | BlockState::BambooWallHangingSign_SouthFalse => &SHAPE74,
- BlockState::OakWallHangingSign_WestTrue
- | BlockState::OakWallHangingSign_WestFalse
- | BlockState::OakWallHangingSign_EastTrue
- | BlockState::OakWallHangingSign_EastFalse
- | BlockState::SpruceWallHangingSign_WestTrue
- | BlockState::SpruceWallHangingSign_WestFalse
- | BlockState::SpruceWallHangingSign_EastTrue
- | BlockState::SpruceWallHangingSign_EastFalse
- | BlockState::BirchWallHangingSign_WestTrue
- | BlockState::BirchWallHangingSign_WestFalse
- | BlockState::BirchWallHangingSign_EastTrue
- | BlockState::BirchWallHangingSign_EastFalse
- | BlockState::AcaciaWallHangingSign_WestTrue
- | BlockState::AcaciaWallHangingSign_WestFalse
- | BlockState::AcaciaWallHangingSign_EastTrue
- | BlockState::AcaciaWallHangingSign_EastFalse
- | BlockState::JungleWallHangingSign_WestTrue
- | BlockState::JungleWallHangingSign_WestFalse
- | BlockState::JungleWallHangingSign_EastTrue
- | BlockState::JungleWallHangingSign_EastFalse
- | BlockState::DarkOakWallHangingSign_WestTrue
- | BlockState::DarkOakWallHangingSign_WestFalse
- | BlockState::DarkOakWallHangingSign_EastTrue
- | BlockState::DarkOakWallHangingSign_EastFalse
- | BlockState::MangroveWallHangingSign_WestTrue
- | BlockState::MangroveWallHangingSign_WestFalse
- | BlockState::MangroveWallHangingSign_EastTrue
- | BlockState::MangroveWallHangingSign_EastFalse
- | BlockState::CrimsonWallHangingSign_WestTrue
- | BlockState::CrimsonWallHangingSign_WestFalse
- | BlockState::CrimsonWallHangingSign_EastTrue
- | BlockState::CrimsonWallHangingSign_EastFalse
- | BlockState::WarpedWallHangingSign_WestTrue
- | BlockState::WarpedWallHangingSign_WestFalse
- | BlockState::WarpedWallHangingSign_EastTrue
- | BlockState::WarpedWallHangingSign_EastFalse
- | BlockState::BambooWallHangingSign_WestTrue
- | BlockState::BambooWallHangingSign_WestFalse
- | BlockState::BambooWallHangingSign_EastTrue
- | BlockState::BambooWallHangingSign_EastFalse => &SHAPE75,
- BlockState::Snow__2
- | BlockState::Repeater__1NorthTrueTrue
- | BlockState::Repeater__1NorthTrueFalse
- | BlockState::Repeater__1NorthFalseTrue
- | BlockState::Repeater__1NorthFalseFalse
- | BlockState::Repeater__1SouthTrueTrue
- | BlockState::Repeater__1SouthTrueFalse
- | BlockState::Repeater__1SouthFalseTrue
- | BlockState::Repeater__1SouthFalseFalse
- | BlockState::Repeater__1WestTrueTrue
- | BlockState::Repeater__1WestTrueFalse
- | BlockState::Repeater__1WestFalseTrue
- | BlockState::Repeater__1WestFalseFalse
- | BlockState::Repeater__1EastTrueTrue
- | BlockState::Repeater__1EastTrueFalse
- | BlockState::Repeater__1EastFalseTrue
- | BlockState::Repeater__1EastFalseFalse
- | BlockState::Repeater__2NorthTrueTrue
- | BlockState::Repeater__2NorthTrueFalse
- | BlockState::Repeater__2NorthFalseTrue
- | BlockState::Repeater__2NorthFalseFalse
- | BlockState::Repeater__2SouthTrueTrue
- | BlockState::Repeater__2SouthTrueFalse
- | BlockState::Repeater__2SouthFalseTrue
- | BlockState::Repeater__2SouthFalseFalse
- | BlockState::Repeater__2WestTrueTrue
- | BlockState::Repeater__2WestTrueFalse
- | BlockState::Repeater__2WestFalseTrue
- | BlockState::Repeater__2WestFalseFalse
- | BlockState::Repeater__2EastTrueTrue
- | BlockState::Repeater__2EastTrueFalse
- | BlockState::Repeater__2EastFalseTrue
- | BlockState::Repeater__2EastFalseFalse
- | BlockState::Repeater__3NorthTrueTrue
- | BlockState::Repeater__3NorthTrueFalse
- | BlockState::Repeater__3NorthFalseTrue
- | BlockState::Repeater__3NorthFalseFalse
- | BlockState::Repeater__3SouthTrueTrue
- | BlockState::Repeater__3SouthTrueFalse
- | BlockState::Repeater__3SouthFalseTrue
- | BlockState::Repeater__3SouthFalseFalse
- | BlockState::Repeater__3WestTrueTrue
- | BlockState::Repeater__3WestTrueFalse
- | BlockState::Repeater__3WestFalseTrue
- | BlockState::Repeater__3WestFalseFalse
- | BlockState::Repeater__3EastTrueTrue
- | BlockState::Repeater__3EastTrueFalse
- | BlockState::Repeater__3EastFalseTrue
- | BlockState::Repeater__3EastFalseFalse
- | BlockState::Repeater__4NorthTrueTrue
- | BlockState::Repeater__4NorthTrueFalse
- | BlockState::Repeater__4NorthFalseTrue
- | BlockState::Repeater__4NorthFalseFalse
- | BlockState::Repeater__4SouthTrueTrue
- | BlockState::Repeater__4SouthTrueFalse
- | BlockState::Repeater__4SouthFalseTrue
- | BlockState::Repeater__4SouthFalseFalse
- | BlockState::Repeater__4WestTrueTrue
- | BlockState::Repeater__4WestTrueFalse
- | BlockState::Repeater__4WestFalseTrue
- | BlockState::Repeater__4WestFalseFalse
- | BlockState::Repeater__4EastTrueTrue
- | BlockState::Repeater__4EastTrueFalse
- | BlockState::Repeater__4EastFalseTrue
- | BlockState::Repeater__4EastFalseFalse
- | BlockState::Comparator_NorthCompareTrue
- | BlockState::Comparator_NorthCompareFalse
- | BlockState::Comparator_NorthSubtractTrue
- | BlockState::Comparator_NorthSubtractFalse
- | BlockState::Comparator_SouthCompareTrue
- | BlockState::Comparator_SouthCompareFalse
- | BlockState::Comparator_SouthSubtractTrue
- | BlockState::Comparator_SouthSubtractFalse
- | BlockState::Comparator_WestCompareTrue
- | BlockState::Comparator_WestCompareFalse
- | BlockState::Comparator_WestSubtractTrue
- | BlockState::Comparator_WestSubtractFalse
- | BlockState::Comparator_EastCompareTrue
- | BlockState::Comparator_EastCompareFalse
- | BlockState::Comparator_EastSubtractTrue
- | BlockState::Comparator_EastSubtractFalse => &SHAPE7,
- BlockState::Snow__3 => &SHAPE29,
- BlockState::Snow__4
- | BlockState::DaylightDetector_True_0
- | BlockState::DaylightDetector_True_1
- | BlockState::DaylightDetector_True_2
- | BlockState::DaylightDetector_True_3
- | BlockState::DaylightDetector_True_4
- | BlockState::DaylightDetector_True_5
- | BlockState::DaylightDetector_True_6
- | BlockState::DaylightDetector_True_7
- | BlockState::DaylightDetector_True_8
- | BlockState::DaylightDetector_True_9
- | BlockState::DaylightDetector_True_10
- | BlockState::DaylightDetector_True_11
- | BlockState::DaylightDetector_True_12
- | BlockState::DaylightDetector_True_13
- | BlockState::DaylightDetector_True_14
- | BlockState::DaylightDetector_True_15
- | BlockState::DaylightDetector_False_0
- | BlockState::DaylightDetector_False_1
- | BlockState::DaylightDetector_False_2
- | BlockState::DaylightDetector_False_3
- | BlockState::DaylightDetector_False_4
- | BlockState::DaylightDetector_False_5
- | BlockState::DaylightDetector_False_6
- | BlockState::DaylightDetector_False_7
- | BlockState::DaylightDetector_False_8
- | BlockState::DaylightDetector_False_9
- | BlockState::DaylightDetector_False_10
- | BlockState::DaylightDetector_False_11
- | BlockState::DaylightDetector_False_12
- | BlockState::DaylightDetector_False_13
- | BlockState::DaylightDetector_False_14
- | BlockState::DaylightDetector_False_15 => &SHAPE64,
- BlockState::Snow__5
- | BlockState::PrismarineSlab_BottomTrue
- | BlockState::PrismarineSlab_BottomFalse
- | BlockState::PrismarineBrickSlab_BottomTrue
- | BlockState::PrismarineBrickSlab_BottomFalse
- | BlockState::DarkPrismarineSlab_BottomTrue
- | BlockState::DarkPrismarineSlab_BottomFalse
- | BlockState::OakSlab_BottomTrue
- | BlockState::OakSlab_BottomFalse
- | BlockState::SpruceSlab_BottomTrue
- | BlockState::SpruceSlab_BottomFalse
- | BlockState::BirchSlab_BottomTrue
- | BlockState::BirchSlab_BottomFalse
- | BlockState::JungleSlab_BottomTrue
- | BlockState::JungleSlab_BottomFalse
- | BlockState::AcaciaSlab_BottomTrue
- | BlockState::AcaciaSlab_BottomFalse
- | BlockState::DarkOakSlab_BottomTrue
- | BlockState::DarkOakSlab_BottomFalse
- | BlockState::MangroveSlab_BottomTrue
- | BlockState::MangroveSlab_BottomFalse
- | BlockState::BambooSlab_BottomTrue
- | BlockState::BambooSlab_BottomFalse
- | BlockState::BambooMosaicSlab_BottomTrue
- | BlockState::BambooMosaicSlab_BottomFalse
- | BlockState::StoneSlab_BottomTrue
- | BlockState::StoneSlab_BottomFalse
- | BlockState::SmoothStoneSlab_BottomTrue
- | BlockState::SmoothStoneSlab_BottomFalse
- | BlockState::SandstoneSlab_BottomTrue
- | BlockState::SandstoneSlab_BottomFalse
- | BlockState::CutSandstoneSlab_BottomTrue
- | BlockState::CutSandstoneSlab_BottomFalse
- | BlockState::PetrifiedOakSlab_BottomTrue
- | BlockState::PetrifiedOakSlab_BottomFalse
- | BlockState::CobblestoneSlab_BottomTrue
- | BlockState::CobblestoneSlab_BottomFalse
- | BlockState::BrickSlab_BottomTrue
- | BlockState::BrickSlab_BottomFalse
- | BlockState::StoneBrickSlab_BottomTrue
- | BlockState::StoneBrickSlab_BottomFalse
- | BlockState::MudBrickSlab_BottomTrue
- | BlockState::MudBrickSlab_BottomFalse
- | BlockState::NetherBrickSlab_BottomTrue
- | BlockState::NetherBrickSlab_BottomFalse
- | BlockState::QuartzSlab_BottomTrue
- | BlockState::QuartzSlab_BottomFalse
- | BlockState::RedSandstoneSlab_BottomTrue
- | BlockState::RedSandstoneSlab_BottomFalse
- | BlockState::CutRedSandstoneSlab_BottomTrue
- | BlockState::CutRedSandstoneSlab_BottomFalse
- | BlockState::PurpurSlab_BottomTrue
- | BlockState::PurpurSlab_BottomFalse
- | BlockState::PolishedGraniteSlab_BottomTrue
- | BlockState::PolishedGraniteSlab_BottomFalse
- | BlockState::SmoothRedSandstoneSlab_BottomTrue
- | BlockState::SmoothRedSandstoneSlab_BottomFalse
- | BlockState::MossyStoneBrickSlab_BottomTrue
- | BlockState::MossyStoneBrickSlab_BottomFalse
- | BlockState::PolishedDioriteSlab_BottomTrue
- | BlockState::PolishedDioriteSlab_BottomFalse
- | BlockState::MossyCobblestoneSlab_BottomTrue
- | BlockState::MossyCobblestoneSlab_BottomFalse
- | BlockState::EndStoneBrickSlab_BottomTrue
- | BlockState::EndStoneBrickSlab_BottomFalse
- | BlockState::SmoothSandstoneSlab_BottomTrue
- | BlockState::SmoothSandstoneSlab_BottomFalse
- | BlockState::SmoothQuartzSlab_BottomTrue
- | BlockState::SmoothQuartzSlab_BottomFalse
- | BlockState::GraniteSlab_BottomTrue
- | BlockState::GraniteSlab_BottomFalse
- | BlockState::AndesiteSlab_BottomTrue
- | BlockState::AndesiteSlab_BottomFalse
- | BlockState::RedNetherBrickSlab_BottomTrue
- | BlockState::RedNetherBrickSlab_BottomFalse
- | BlockState::PolishedAndesiteSlab_BottomTrue
- | BlockState::PolishedAndesiteSlab_BottomFalse
- | BlockState::DioriteSlab_BottomTrue
- | BlockState::DioriteSlab_BottomFalse
- | BlockState::CrimsonSlab_BottomTrue
- | BlockState::CrimsonSlab_BottomFalse
- | BlockState::WarpedSlab_BottomTrue
- | BlockState::WarpedSlab_BottomFalse
- | BlockState::BlackstoneSlab_BottomTrue
- | BlockState::BlackstoneSlab_BottomFalse
- | BlockState::PolishedBlackstoneBrickSlab_BottomTrue
- | BlockState::PolishedBlackstoneBrickSlab_BottomFalse
- | BlockState::PolishedBlackstoneSlab_BottomTrue
- | BlockState::PolishedBlackstoneSlab_BottomFalse
- | BlockState::SculkSensor__0InactiveTrue
- | BlockState::SculkSensor__0InactiveFalse
- | BlockState::SculkSensor__0ActiveTrue
- | BlockState::SculkSensor__0ActiveFalse
- | BlockState::SculkSensor__0CooldownTrue
- | BlockState::SculkSensor__0CooldownFalse
- | BlockState::SculkSensor__1InactiveTrue
- | BlockState::SculkSensor__1InactiveFalse
- | BlockState::SculkSensor__1ActiveTrue
- | BlockState::SculkSensor__1ActiveFalse
- | BlockState::SculkSensor__1CooldownTrue
- | BlockState::SculkSensor__1CooldownFalse
- | BlockState::SculkSensor__2InactiveTrue
- | BlockState::SculkSensor__2InactiveFalse
- | BlockState::SculkSensor__2ActiveTrue
- | BlockState::SculkSensor__2ActiveFalse
- | BlockState::SculkSensor__2CooldownTrue
- | BlockState::SculkSensor__2CooldownFalse
- | BlockState::SculkSensor__3InactiveTrue
- | BlockState::SculkSensor__3InactiveFalse
- | BlockState::SculkSensor__3ActiveTrue
- | BlockState::SculkSensor__3ActiveFalse
- | BlockState::SculkSensor__3CooldownTrue
- | BlockState::SculkSensor__3CooldownFalse
- | BlockState::SculkSensor__4InactiveTrue
- | BlockState::SculkSensor__4InactiveFalse
- | BlockState::SculkSensor__4ActiveTrue
- | BlockState::SculkSensor__4ActiveFalse
- | BlockState::SculkSensor__4CooldownTrue
- | BlockState::SculkSensor__4CooldownFalse
- | BlockState::SculkSensor__5InactiveTrue
- | BlockState::SculkSensor__5InactiveFalse
- | BlockState::SculkSensor__5ActiveTrue
- | BlockState::SculkSensor__5ActiveFalse
- | BlockState::SculkSensor__5CooldownTrue
- | BlockState::SculkSensor__5CooldownFalse
- | BlockState::SculkSensor__6InactiveTrue
- | BlockState::SculkSensor__6InactiveFalse
- | BlockState::SculkSensor__6ActiveTrue
- | BlockState::SculkSensor__6ActiveFalse
- | BlockState::SculkSensor__6CooldownTrue
- | BlockState::SculkSensor__6CooldownFalse
- | BlockState::SculkSensor__7InactiveTrue
- | BlockState::SculkSensor__7InactiveFalse
- | BlockState::SculkSensor__7ActiveTrue
- | BlockState::SculkSensor__7ActiveFalse
- | BlockState::SculkSensor__7CooldownTrue
- | BlockState::SculkSensor__7CooldownFalse
- | BlockState::SculkSensor__8InactiveTrue
- | BlockState::SculkSensor__8InactiveFalse
- | BlockState::SculkSensor__8ActiveTrue
- | BlockState::SculkSensor__8ActiveFalse
- | BlockState::SculkSensor__8CooldownTrue
- | BlockState::SculkSensor__8CooldownFalse
- | BlockState::SculkSensor__9InactiveTrue
- | BlockState::SculkSensor__9InactiveFalse
- | BlockState::SculkSensor__9ActiveTrue
- | BlockState::SculkSensor__9ActiveFalse
- | BlockState::SculkSensor__9CooldownTrue
- | BlockState::SculkSensor__9CooldownFalse
- | BlockState::SculkSensor__10InactiveTrue
- | BlockState::SculkSensor__10InactiveFalse
- | BlockState::SculkSensor__10ActiveTrue
- | BlockState::SculkSensor__10ActiveFalse
- | BlockState::SculkSensor__10CooldownTrue
- | BlockState::SculkSensor__10CooldownFalse
- | BlockState::SculkSensor__11InactiveTrue
- | BlockState::SculkSensor__11InactiveFalse
- | BlockState::SculkSensor__11ActiveTrue
- | BlockState::SculkSensor__11ActiveFalse
- | BlockState::SculkSensor__11CooldownTrue
- | BlockState::SculkSensor__11CooldownFalse
- | BlockState::SculkSensor__12InactiveTrue
- | BlockState::SculkSensor__12InactiveFalse
- | BlockState::SculkSensor__12ActiveTrue
- | BlockState::SculkSensor__12ActiveFalse
- | BlockState::SculkSensor__12CooldownTrue
- | BlockState::SculkSensor__12CooldownFalse
- | BlockState::SculkSensor__13InactiveTrue
- | BlockState::SculkSensor__13InactiveFalse
- | BlockState::SculkSensor__13ActiveTrue
- | BlockState::SculkSensor__13ActiveFalse
- | BlockState::SculkSensor__13CooldownTrue
- | BlockState::SculkSensor__13CooldownFalse
- | BlockState::SculkSensor__14InactiveTrue
- | BlockState::SculkSensor__14InactiveFalse
- | BlockState::SculkSensor__14ActiveTrue
- | BlockState::SculkSensor__14ActiveFalse
- | BlockState::SculkSensor__14CooldownTrue
- | BlockState::SculkSensor__14CooldownFalse
- | BlockState::SculkSensor__15InactiveTrue
- | BlockState::SculkSensor__15InactiveFalse
- | BlockState::SculkSensor__15ActiveTrue
- | BlockState::SculkSensor__15ActiveFalse
- | BlockState::SculkSensor__15CooldownTrue
- | BlockState::SculkSensor__15CooldownFalse
- | BlockState::SculkShrieker_TrueTrueTrue
- | BlockState::SculkShrieker_TrueTrueFalse
- | BlockState::SculkShrieker_TrueFalseTrue
- | BlockState::SculkShrieker_TrueFalseFalse
- | BlockState::SculkShrieker_FalseTrueTrue
- | BlockState::SculkShrieker_FalseTrueFalse
- | BlockState::SculkShrieker_FalseFalseTrue
- | BlockState::SculkShrieker_FalseFalseFalse
- | BlockState::OxidizedCutCopperSlab_BottomTrue
- | BlockState::OxidizedCutCopperSlab_BottomFalse
- | BlockState::WeatheredCutCopperSlab_BottomTrue
- | BlockState::WeatheredCutCopperSlab_BottomFalse
- | BlockState::ExposedCutCopperSlab_BottomTrue
- | BlockState::ExposedCutCopperSlab_BottomFalse
- | BlockState::CutCopperSlab_BottomTrue
- | BlockState::CutCopperSlab_BottomFalse
- | BlockState::WaxedOxidizedCutCopperSlab_BottomTrue
- | BlockState::WaxedOxidizedCutCopperSlab_BottomFalse
- | BlockState::WaxedWeatheredCutCopperSlab_BottomTrue
- | BlockState::WaxedWeatheredCutCopperSlab_BottomFalse
- | BlockState::WaxedExposedCutCopperSlab_BottomTrue
- | BlockState::WaxedExposedCutCopperSlab_BottomFalse
- | BlockState::WaxedCutCopperSlab_BottomTrue
- | BlockState::WaxedCutCopperSlab_BottomFalse
- | BlockState::CobbledDeepslateSlab_BottomTrue
- | BlockState::CobbledDeepslateSlab_BottomFalse
- | BlockState::PolishedDeepslateSlab_BottomTrue
- | BlockState::PolishedDeepslateSlab_BottomFalse
- | BlockState::DeepslateTileSlab_BottomTrue
- | BlockState::DeepslateTileSlab_BottomFalse
- | BlockState::DeepslateBrickSlab_BottomTrue
- | BlockState::DeepslateBrickSlab_BottomFalse => &SHAPE8,
- BlockState::Snow__6 => &SHAPE65,
- BlockState::Snow__8 | BlockState::SoulSand | BlockState::Mud => &SHAPE66,
- BlockState::Cactus__0
- | BlockState::Cactus__1
- | BlockState::Cactus__2
- | BlockState::Cactus__3
- | BlockState::Cactus__4
- | BlockState::Cactus__5
- | BlockState::Cactus__6
- | BlockState::Cactus__7
- | BlockState::Cactus__8
- | BlockState::Cactus__9
- | BlockState::Cactus__10
- | BlockState::Cactus__11
- | BlockState::Cactus__12
- | BlockState::Cactus__13
- | BlockState::Cactus__14
- | BlockState::Cactus__15
- | BlockState::HoneyBlock => &SHAPE76,
- BlockState::OakFence_TrueTrueTrueTrueTrue
- | BlockState::OakFence_TrueTrueTrueFalseTrue
- | BlockState::NetherBrickFence_TrueTrueTrueTrueTrue
- | BlockState::NetherBrickFence_TrueTrueTrueFalseTrue
- | BlockState::SpruceFence_TrueTrueTrueTrueTrue
- | BlockState::SpruceFence_TrueTrueTrueFalseTrue
- | BlockState::BirchFence_TrueTrueTrueTrueTrue
- | BlockState::BirchFence_TrueTrueTrueFalseTrue
- | BlockState::JungleFence_TrueTrueTrueTrueTrue
- | BlockState::JungleFence_TrueTrueTrueFalseTrue
- | BlockState::AcaciaFence_TrueTrueTrueTrueTrue
- | BlockState::AcaciaFence_TrueTrueTrueFalseTrue
- | BlockState::DarkOakFence_TrueTrueTrueTrueTrue
- | BlockState::DarkOakFence_TrueTrueTrueFalseTrue
- | BlockState::MangroveFence_TrueTrueTrueTrueTrue
- | BlockState::MangroveFence_TrueTrueTrueFalseTrue
- | BlockState::BambooFence_TrueTrueTrueTrueTrue
- | BlockState::BambooFence_TrueTrueTrueFalseTrue
- | BlockState::CrimsonFence_TrueTrueTrueTrueTrue
- | BlockState::CrimsonFence_TrueTrueTrueFalseTrue
- | BlockState::WarpedFence_TrueTrueTrueTrueTrue
- | BlockState::WarpedFence_TrueTrueTrueFalseTrue => &SHAPE78,
- BlockState::OakFence_TrueTrueTrueTrueFalse
- | BlockState::OakFence_TrueTrueTrueFalseFalse
- | BlockState::NetherBrickFence_TrueTrueTrueTrueFalse
- | BlockState::NetherBrickFence_TrueTrueTrueFalseFalse
- | BlockState::SpruceFence_TrueTrueTrueTrueFalse
- | BlockState::SpruceFence_TrueTrueTrueFalseFalse
- | BlockState::BirchFence_TrueTrueTrueTrueFalse
- | BlockState::BirchFence_TrueTrueTrueFalseFalse
- | BlockState::JungleFence_TrueTrueTrueTrueFalse
- | BlockState::JungleFence_TrueTrueTrueFalseFalse
- | BlockState::AcaciaFence_TrueTrueTrueTrueFalse
- | BlockState::AcaciaFence_TrueTrueTrueFalseFalse
- | BlockState::DarkOakFence_TrueTrueTrueTrueFalse
- | BlockState::DarkOakFence_TrueTrueTrueFalseFalse
- | BlockState::MangroveFence_TrueTrueTrueTrueFalse
- | BlockState::MangroveFence_TrueTrueTrueFalseFalse
- | BlockState::BambooFence_TrueTrueTrueTrueFalse
- | BlockState::BambooFence_TrueTrueTrueFalseFalse
- | BlockState::CrimsonFence_TrueTrueTrueTrueFalse
- | BlockState::CrimsonFence_TrueTrueTrueFalseFalse
- | BlockState::WarpedFence_TrueTrueTrueTrueFalse
- | BlockState::WarpedFence_TrueTrueTrueFalseFalse => &SHAPE79,
- BlockState::OakFence_TrueTrueFalseTrueTrue
- | BlockState::OakFence_TrueTrueFalseFalseTrue
- | BlockState::NetherBrickFence_TrueTrueFalseTrueTrue
- | BlockState::NetherBrickFence_TrueTrueFalseFalseTrue
- | BlockState::SpruceFence_TrueTrueFalseTrueTrue
- | BlockState::SpruceFence_TrueTrueFalseFalseTrue
- | BlockState::BirchFence_TrueTrueFalseTrueTrue
- | BlockState::BirchFence_TrueTrueFalseFalseTrue
- | BlockState::JungleFence_TrueTrueFalseTrueTrue
- | BlockState::JungleFence_TrueTrueFalseFalseTrue
- | BlockState::AcaciaFence_TrueTrueFalseTrueTrue
- | BlockState::AcaciaFence_TrueTrueFalseFalseTrue
- | BlockState::DarkOakFence_TrueTrueFalseTrueTrue
- | BlockState::DarkOakFence_TrueTrueFalseFalseTrue
- | BlockState::MangroveFence_TrueTrueFalseTrueTrue
- | BlockState::MangroveFence_TrueTrueFalseFalseTrue
- | BlockState::BambooFence_TrueTrueFalseTrueTrue
- | BlockState::BambooFence_TrueTrueFalseFalseTrue
- | BlockState::CrimsonFence_TrueTrueFalseTrueTrue
- | BlockState::CrimsonFence_TrueTrueFalseFalseTrue
- | BlockState::WarpedFence_TrueTrueFalseTrueTrue
- | BlockState::WarpedFence_TrueTrueFalseFalseTrue => &SHAPE80,
- BlockState::OakFence_TrueTrueFalseTrueFalse
- | BlockState::OakFence_TrueTrueFalseFalseFalse
- | BlockState::NetherBrickFence_TrueTrueFalseTrueFalse
- | BlockState::NetherBrickFence_TrueTrueFalseFalseFalse
- | BlockState::SpruceFence_TrueTrueFalseTrueFalse
- | BlockState::SpruceFence_TrueTrueFalseFalseFalse
- | BlockState::BirchFence_TrueTrueFalseTrueFalse
- | BlockState::BirchFence_TrueTrueFalseFalseFalse
- | BlockState::JungleFence_TrueTrueFalseTrueFalse
- | BlockState::JungleFence_TrueTrueFalseFalseFalse
- | BlockState::AcaciaFence_TrueTrueFalseTrueFalse
- | BlockState::AcaciaFence_TrueTrueFalseFalseFalse
- | BlockState::DarkOakFence_TrueTrueFalseTrueFalse
- | BlockState::DarkOakFence_TrueTrueFalseFalseFalse
- | BlockState::MangroveFence_TrueTrueFalseTrueFalse
- | BlockState::MangroveFence_TrueTrueFalseFalseFalse
- | BlockState::BambooFence_TrueTrueFalseTrueFalse
- | BlockState::BambooFence_TrueTrueFalseFalseFalse
- | BlockState::CrimsonFence_TrueTrueFalseTrueFalse
- | BlockState::CrimsonFence_TrueTrueFalseFalseFalse
- | BlockState::WarpedFence_TrueTrueFalseTrueFalse
- | BlockState::WarpedFence_TrueTrueFalseFalseFalse => &SHAPE81,
- BlockState::OakFence_TrueFalseTrueTrueTrue
- | BlockState::OakFence_TrueFalseTrueFalseTrue
- | BlockState::NetherBrickFence_TrueFalseTrueTrueTrue
- | BlockState::NetherBrickFence_TrueFalseTrueFalseTrue
- | BlockState::SpruceFence_TrueFalseTrueTrueTrue
- | BlockState::SpruceFence_TrueFalseTrueFalseTrue
- | BlockState::BirchFence_TrueFalseTrueTrueTrue
- | BlockState::BirchFence_TrueFalseTrueFalseTrue
- | BlockState::JungleFence_TrueFalseTrueTrueTrue
- | BlockState::JungleFence_TrueFalseTrueFalseTrue
- | BlockState::AcaciaFence_TrueFalseTrueTrueTrue
- | BlockState::AcaciaFence_TrueFalseTrueFalseTrue
- | BlockState::DarkOakFence_TrueFalseTrueTrueTrue
- | BlockState::DarkOakFence_TrueFalseTrueFalseTrue
- | BlockState::MangroveFence_TrueFalseTrueTrueTrue
- | BlockState::MangroveFence_TrueFalseTrueFalseTrue
- | BlockState::BambooFence_TrueFalseTrueTrueTrue
- | BlockState::BambooFence_TrueFalseTrueFalseTrue
- | BlockState::CrimsonFence_TrueFalseTrueTrueTrue
- | BlockState::CrimsonFence_TrueFalseTrueFalseTrue
- | BlockState::WarpedFence_TrueFalseTrueTrueTrue
- | BlockState::WarpedFence_TrueFalseTrueFalseTrue => &SHAPE82,
- BlockState::OakFence_TrueFalseTrueTrueFalse
- | BlockState::OakFence_TrueFalseTrueFalseFalse
- | BlockState::NetherBrickFence_TrueFalseTrueTrueFalse
- | BlockState::NetherBrickFence_TrueFalseTrueFalseFalse
- | BlockState::SpruceFence_TrueFalseTrueTrueFalse
- | BlockState::SpruceFence_TrueFalseTrueFalseFalse
- | BlockState::BirchFence_TrueFalseTrueTrueFalse
- | BlockState::BirchFence_TrueFalseTrueFalseFalse
- | BlockState::JungleFence_TrueFalseTrueTrueFalse
- | BlockState::JungleFence_TrueFalseTrueFalseFalse
- | BlockState::AcaciaFence_TrueFalseTrueTrueFalse
- | BlockState::AcaciaFence_TrueFalseTrueFalseFalse
- | BlockState::DarkOakFence_TrueFalseTrueTrueFalse
- | BlockState::DarkOakFence_TrueFalseTrueFalseFalse
- | BlockState::MangroveFence_TrueFalseTrueTrueFalse
- | BlockState::MangroveFence_TrueFalseTrueFalseFalse
- | BlockState::BambooFence_TrueFalseTrueTrueFalse
- | BlockState::BambooFence_TrueFalseTrueFalseFalse
- | BlockState::CrimsonFence_TrueFalseTrueTrueFalse
- | BlockState::CrimsonFence_TrueFalseTrueFalseFalse
- | BlockState::WarpedFence_TrueFalseTrueTrueFalse
- | BlockState::WarpedFence_TrueFalseTrueFalseFalse => &SHAPE83,
- BlockState::OakFence_TrueFalseFalseTrueTrue
- | BlockState::OakFence_TrueFalseFalseFalseTrue
- | BlockState::OakFenceGate_NorthTrueFalseTrue
- | BlockState::OakFenceGate_NorthTrueFalseFalse
- | BlockState::OakFenceGate_NorthFalseFalseTrue
- | BlockState::OakFenceGate_NorthFalseFalseFalse
- | BlockState::OakFenceGate_SouthTrueFalseTrue
- | BlockState::OakFenceGate_SouthTrueFalseFalse
- | BlockState::OakFenceGate_SouthFalseFalseTrue
- | BlockState::OakFenceGate_SouthFalseFalseFalse
- | BlockState::NetherBrickFence_TrueFalseFalseTrueTrue
- | BlockState::NetherBrickFence_TrueFalseFalseFalseTrue
- | BlockState::SpruceFenceGate_NorthTrueFalseTrue
- | BlockState::SpruceFenceGate_NorthTrueFalseFalse
- | BlockState::SpruceFenceGate_NorthFalseFalseTrue
- | BlockState::SpruceFenceGate_NorthFalseFalseFalse
- | BlockState::SpruceFenceGate_SouthTrueFalseTrue
- | BlockState::SpruceFenceGate_SouthTrueFalseFalse
- | BlockState::SpruceFenceGate_SouthFalseFalseTrue
- | BlockState::SpruceFenceGate_SouthFalseFalseFalse
- | BlockState::BirchFenceGate_NorthTrueFalseTrue
- | BlockState::BirchFenceGate_NorthTrueFalseFalse
- | BlockState::BirchFenceGate_NorthFalseFalseTrue
- | BlockState::BirchFenceGate_NorthFalseFalseFalse
- | BlockState::BirchFenceGate_SouthTrueFalseTrue
- | BlockState::BirchFenceGate_SouthTrueFalseFalse
- | BlockState::BirchFenceGate_SouthFalseFalseTrue
- | BlockState::BirchFenceGate_SouthFalseFalseFalse
- | BlockState::JungleFenceGate_NorthTrueFalseTrue
- | BlockState::JungleFenceGate_NorthTrueFalseFalse
- | BlockState::JungleFenceGate_NorthFalseFalseTrue
- | BlockState::JungleFenceGate_NorthFalseFalseFalse
- | BlockState::JungleFenceGate_SouthTrueFalseTrue
- | BlockState::JungleFenceGate_SouthTrueFalseFalse
- | BlockState::JungleFenceGate_SouthFalseFalseTrue
- | BlockState::JungleFenceGate_SouthFalseFalseFalse
- | BlockState::AcaciaFenceGate_NorthTrueFalseTrue
- | BlockState::AcaciaFenceGate_NorthTrueFalseFalse
- | BlockState::AcaciaFenceGate_NorthFalseFalseTrue
- | BlockState::AcaciaFenceGate_NorthFalseFalseFalse
- | BlockState::AcaciaFenceGate_SouthTrueFalseTrue
- | BlockState::AcaciaFenceGate_SouthTrueFalseFalse
- | BlockState::AcaciaFenceGate_SouthFalseFalseTrue
- | BlockState::AcaciaFenceGate_SouthFalseFalseFalse
- | BlockState::DarkOakFenceGate_NorthTrueFalseTrue
- | BlockState::DarkOakFenceGate_NorthTrueFalseFalse
- | BlockState::DarkOakFenceGate_NorthFalseFalseTrue
- | BlockState::DarkOakFenceGate_NorthFalseFalseFalse
- | BlockState::DarkOakFenceGate_SouthTrueFalseTrue
- | BlockState::DarkOakFenceGate_SouthTrueFalseFalse
- | BlockState::DarkOakFenceGate_SouthFalseFalseTrue
- | BlockState::DarkOakFenceGate_SouthFalseFalseFalse
- | BlockState::MangroveFenceGate_NorthTrueFalseTrue
- | BlockState::MangroveFenceGate_NorthTrueFalseFalse
- | BlockState::MangroveFenceGate_NorthFalseFalseTrue
- | BlockState::MangroveFenceGate_NorthFalseFalseFalse
- | BlockState::MangroveFenceGate_SouthTrueFalseTrue
- | BlockState::MangroveFenceGate_SouthTrueFalseFalse
- | BlockState::MangroveFenceGate_SouthFalseFalseTrue
- | BlockState::MangroveFenceGate_SouthFalseFalseFalse
- | BlockState::BambooFenceGate_NorthTrueFalseTrue
- | BlockState::BambooFenceGate_NorthTrueFalseFalse
- | BlockState::BambooFenceGate_NorthFalseFalseTrue
- | BlockState::BambooFenceGate_NorthFalseFalseFalse
- | BlockState::BambooFenceGate_SouthTrueFalseTrue
- | BlockState::BambooFenceGate_SouthTrueFalseFalse
- | BlockState::BambooFenceGate_SouthFalseFalseTrue
- | BlockState::BambooFenceGate_SouthFalseFalseFalse
- | BlockState::SpruceFence_TrueFalseFalseTrueTrue
- | BlockState::SpruceFence_TrueFalseFalseFalseTrue
- | BlockState::BirchFence_TrueFalseFalseTrueTrue
- | BlockState::BirchFence_TrueFalseFalseFalseTrue
- | BlockState::JungleFence_TrueFalseFalseTrueTrue
- | BlockState::JungleFence_TrueFalseFalseFalseTrue
- | BlockState::AcaciaFence_TrueFalseFalseTrueTrue
- | BlockState::AcaciaFence_TrueFalseFalseFalseTrue
- | BlockState::DarkOakFence_TrueFalseFalseTrueTrue
- | BlockState::DarkOakFence_TrueFalseFalseFalseTrue
- | BlockState::MangroveFence_TrueFalseFalseTrueTrue
- | BlockState::MangroveFence_TrueFalseFalseFalseTrue
- | BlockState::BambooFence_TrueFalseFalseTrueTrue
- | BlockState::BambooFence_TrueFalseFalseFalseTrue
- | BlockState::CrimsonFence_TrueFalseFalseTrueTrue
- | BlockState::CrimsonFence_TrueFalseFalseFalseTrue
- | BlockState::WarpedFence_TrueFalseFalseTrueTrue
- | BlockState::WarpedFence_TrueFalseFalseFalseTrue
- | BlockState::CrimsonFenceGate_NorthTrueFalseTrue
- | BlockState::CrimsonFenceGate_NorthTrueFalseFalse
- | BlockState::CrimsonFenceGate_NorthFalseFalseTrue
- | BlockState::CrimsonFenceGate_NorthFalseFalseFalse
- | BlockState::CrimsonFenceGate_SouthTrueFalseTrue
- | BlockState::CrimsonFenceGate_SouthTrueFalseFalse
- | BlockState::CrimsonFenceGate_SouthFalseFalseTrue
- | BlockState::CrimsonFenceGate_SouthFalseFalseFalse
- | BlockState::WarpedFenceGate_NorthTrueFalseTrue
- | BlockState::WarpedFenceGate_NorthTrueFalseFalse
- | BlockState::WarpedFenceGate_NorthFalseFalseTrue
- | BlockState::WarpedFenceGate_NorthFalseFalseFalse
- | BlockState::WarpedFenceGate_SouthTrueFalseTrue
- | BlockState::WarpedFenceGate_SouthTrueFalseFalse
- | BlockState::WarpedFenceGate_SouthFalseFalseTrue
- | BlockState::WarpedFenceGate_SouthFalseFalseFalse => &SHAPE84,
- BlockState::OakFence_TrueFalseFalseTrueFalse
- | BlockState::OakFence_TrueFalseFalseFalseFalse
- | BlockState::NetherBrickFence_TrueFalseFalseTrueFalse
- | BlockState::NetherBrickFence_TrueFalseFalseFalseFalse
- | BlockState::SpruceFence_TrueFalseFalseTrueFalse
- | BlockState::SpruceFence_TrueFalseFalseFalseFalse
- | BlockState::BirchFence_TrueFalseFalseTrueFalse
- | BlockState::BirchFence_TrueFalseFalseFalseFalse
- | BlockState::JungleFence_TrueFalseFalseTrueFalse
- | BlockState::JungleFence_TrueFalseFalseFalseFalse
- | BlockState::AcaciaFence_TrueFalseFalseTrueFalse
- | BlockState::AcaciaFence_TrueFalseFalseFalseFalse
- | BlockState::DarkOakFence_TrueFalseFalseTrueFalse
- | BlockState::DarkOakFence_TrueFalseFalseFalseFalse
- | BlockState::MangroveFence_TrueFalseFalseTrueFalse
- | BlockState::MangroveFence_TrueFalseFalseFalseFalse
- | BlockState::BambooFence_TrueFalseFalseTrueFalse
- | BlockState::BambooFence_TrueFalseFalseFalseFalse
- | BlockState::CrimsonFence_TrueFalseFalseTrueFalse
- | BlockState::CrimsonFence_TrueFalseFalseFalseFalse
- | BlockState::WarpedFence_TrueFalseFalseTrueFalse
- | BlockState::WarpedFence_TrueFalseFalseFalseFalse => &SHAPE85,
- BlockState::OakFence_FalseTrueTrueTrueTrue
- | BlockState::OakFence_FalseTrueTrueFalseTrue
- | BlockState::NetherBrickFence_FalseTrueTrueTrueTrue
- | BlockState::NetherBrickFence_FalseTrueTrueFalseTrue
- | BlockState::SpruceFence_FalseTrueTrueTrueTrue
- | BlockState::SpruceFence_FalseTrueTrueFalseTrue
- | BlockState::BirchFence_FalseTrueTrueTrueTrue
- | BlockState::BirchFence_FalseTrueTrueFalseTrue
- | BlockState::JungleFence_FalseTrueTrueTrueTrue
- | BlockState::JungleFence_FalseTrueTrueFalseTrue
- | BlockState::AcaciaFence_FalseTrueTrueTrueTrue
- | BlockState::AcaciaFence_FalseTrueTrueFalseTrue
- | BlockState::DarkOakFence_FalseTrueTrueTrueTrue
- | BlockState::DarkOakFence_FalseTrueTrueFalseTrue
- | BlockState::MangroveFence_FalseTrueTrueTrueTrue
- | BlockState::MangroveFence_FalseTrueTrueFalseTrue
- | BlockState::BambooFence_FalseTrueTrueTrueTrue
- | BlockState::BambooFence_FalseTrueTrueFalseTrue
- | BlockState::CrimsonFence_FalseTrueTrueTrueTrue
- | BlockState::CrimsonFence_FalseTrueTrueFalseTrue
- | BlockState::WarpedFence_FalseTrueTrueTrueTrue
- | BlockState::WarpedFence_FalseTrueTrueFalseTrue => &SHAPE86,
- BlockState::OakFence_FalseTrueTrueTrueFalse
- | BlockState::OakFence_FalseTrueTrueFalseFalse
- | BlockState::OakFenceGate_WestTrueFalseTrue
- | BlockState::OakFenceGate_WestTrueFalseFalse
- | BlockState::OakFenceGate_WestFalseFalseTrue
- | BlockState::OakFenceGate_WestFalseFalseFalse
- | BlockState::OakFenceGate_EastTrueFalseTrue
- | BlockState::OakFenceGate_EastTrueFalseFalse
- | BlockState::OakFenceGate_EastFalseFalseTrue
- | BlockState::OakFenceGate_EastFalseFalseFalse
- | BlockState::NetherBrickFence_FalseTrueTrueTrueFalse
- | BlockState::NetherBrickFence_FalseTrueTrueFalseFalse
- | BlockState::SpruceFenceGate_WestTrueFalseTrue
- | BlockState::SpruceFenceGate_WestTrueFalseFalse
- | BlockState::SpruceFenceGate_WestFalseFalseTrue
- | BlockState::SpruceFenceGate_WestFalseFalseFalse
- | BlockState::SpruceFenceGate_EastTrueFalseTrue
- | BlockState::SpruceFenceGate_EastTrueFalseFalse
- | BlockState::SpruceFenceGate_EastFalseFalseTrue
- | BlockState::SpruceFenceGate_EastFalseFalseFalse
- | BlockState::BirchFenceGate_WestTrueFalseTrue
- | BlockState::BirchFenceGate_WestTrueFalseFalse
- | BlockState::BirchFenceGate_WestFalseFalseTrue
- | BlockState::BirchFenceGate_WestFalseFalseFalse
- | BlockState::BirchFenceGate_EastTrueFalseTrue
- | BlockState::BirchFenceGate_EastTrueFalseFalse
- | BlockState::BirchFenceGate_EastFalseFalseTrue
- | BlockState::BirchFenceGate_EastFalseFalseFalse
- | BlockState::JungleFenceGate_WestTrueFalseTrue
- | BlockState::JungleFenceGate_WestTrueFalseFalse
- | BlockState::JungleFenceGate_WestFalseFalseTrue
- | BlockState::JungleFenceGate_WestFalseFalseFalse
- | BlockState::JungleFenceGate_EastTrueFalseTrue
- | BlockState::JungleFenceGate_EastTrueFalseFalse
- | BlockState::JungleFenceGate_EastFalseFalseTrue
- | BlockState::JungleFenceGate_EastFalseFalseFalse
- | BlockState::AcaciaFenceGate_WestTrueFalseTrue
- | BlockState::AcaciaFenceGate_WestTrueFalseFalse
- | BlockState::AcaciaFenceGate_WestFalseFalseTrue
- | BlockState::AcaciaFenceGate_WestFalseFalseFalse
- | BlockState::AcaciaFenceGate_EastTrueFalseTrue
- | BlockState::AcaciaFenceGate_EastTrueFalseFalse
- | BlockState::AcaciaFenceGate_EastFalseFalseTrue
- | BlockState::AcaciaFenceGate_EastFalseFalseFalse
- | BlockState::DarkOakFenceGate_WestTrueFalseTrue
- | BlockState::DarkOakFenceGate_WestTrueFalseFalse
- | BlockState::DarkOakFenceGate_WestFalseFalseTrue
- | BlockState::DarkOakFenceGate_WestFalseFalseFalse
- | BlockState::DarkOakFenceGate_EastTrueFalseTrue
- | BlockState::DarkOakFenceGate_EastTrueFalseFalse
- | BlockState::DarkOakFenceGate_EastFalseFalseTrue
- | BlockState::DarkOakFenceGate_EastFalseFalseFalse
- | BlockState::MangroveFenceGate_WestTrueFalseTrue
- | BlockState::MangroveFenceGate_WestTrueFalseFalse
- | BlockState::MangroveFenceGate_WestFalseFalseTrue
- | BlockState::MangroveFenceGate_WestFalseFalseFalse
- | BlockState::MangroveFenceGate_EastTrueFalseTrue
- | BlockState::MangroveFenceGate_EastTrueFalseFalse
- | BlockState::MangroveFenceGate_EastFalseFalseTrue
- | BlockState::MangroveFenceGate_EastFalseFalseFalse
- | BlockState::BambooFenceGate_WestTrueFalseTrue
- | BlockState::BambooFenceGate_WestTrueFalseFalse
- | BlockState::BambooFenceGate_WestFalseFalseTrue
- | BlockState::BambooFenceGate_WestFalseFalseFalse
- | BlockState::BambooFenceGate_EastTrueFalseTrue
- | BlockState::BambooFenceGate_EastTrueFalseFalse
- | BlockState::BambooFenceGate_EastFalseFalseTrue
- | BlockState::BambooFenceGate_EastFalseFalseFalse
- | BlockState::SpruceFence_FalseTrueTrueTrueFalse
- | BlockState::SpruceFence_FalseTrueTrueFalseFalse
- | BlockState::BirchFence_FalseTrueTrueTrueFalse
- | BlockState::BirchFence_FalseTrueTrueFalseFalse
- | BlockState::JungleFence_FalseTrueTrueTrueFalse
- | BlockState::JungleFence_FalseTrueTrueFalseFalse
- | BlockState::AcaciaFence_FalseTrueTrueTrueFalse
- | BlockState::AcaciaFence_FalseTrueTrueFalseFalse
- | BlockState::DarkOakFence_FalseTrueTrueTrueFalse
- | BlockState::DarkOakFence_FalseTrueTrueFalseFalse
- | BlockState::MangroveFence_FalseTrueTrueTrueFalse
- | BlockState::MangroveFence_FalseTrueTrueFalseFalse
- | BlockState::BambooFence_FalseTrueTrueTrueFalse
- | BlockState::BambooFence_FalseTrueTrueFalseFalse
- | BlockState::CrimsonFence_FalseTrueTrueTrueFalse
- | BlockState::CrimsonFence_FalseTrueTrueFalseFalse
- | BlockState::WarpedFence_FalseTrueTrueTrueFalse
- | BlockState::WarpedFence_FalseTrueTrueFalseFalse
- | BlockState::CrimsonFenceGate_WestTrueFalseTrue
- | BlockState::CrimsonFenceGate_WestTrueFalseFalse
- | BlockState::CrimsonFenceGate_WestFalseFalseTrue
- | BlockState::CrimsonFenceGate_WestFalseFalseFalse
- | BlockState::CrimsonFenceGate_EastTrueFalseTrue
- | BlockState::CrimsonFenceGate_EastTrueFalseFalse
- | BlockState::CrimsonFenceGate_EastFalseFalseTrue
- | BlockState::CrimsonFenceGate_EastFalseFalseFalse
- | BlockState::WarpedFenceGate_WestTrueFalseTrue
- | BlockState::WarpedFenceGate_WestTrueFalseFalse
- | BlockState::WarpedFenceGate_WestFalseFalseTrue
- | BlockState::WarpedFenceGate_WestFalseFalseFalse
- | BlockState::WarpedFenceGate_EastTrueFalseTrue
- | BlockState::WarpedFenceGate_EastTrueFalseFalse
- | BlockState::WarpedFenceGate_EastFalseFalseTrue
- | BlockState::WarpedFenceGate_EastFalseFalseFalse => &SHAPE87,
- BlockState::OakFence_FalseTrueFalseTrueTrue
- | BlockState::OakFence_FalseTrueFalseFalseTrue
- | BlockState::NetherBrickFence_FalseTrueFalseTrueTrue
- | BlockState::NetherBrickFence_FalseTrueFalseFalseTrue
- | BlockState::SpruceFence_FalseTrueFalseTrueTrue
- | BlockState::SpruceFence_FalseTrueFalseFalseTrue
- | BlockState::BirchFence_FalseTrueFalseTrueTrue
- | BlockState::BirchFence_FalseTrueFalseFalseTrue
- | BlockState::JungleFence_FalseTrueFalseTrueTrue
- | BlockState::JungleFence_FalseTrueFalseFalseTrue
- | BlockState::AcaciaFence_FalseTrueFalseTrueTrue
- | BlockState::AcaciaFence_FalseTrueFalseFalseTrue
- | BlockState::DarkOakFence_FalseTrueFalseTrueTrue
- | BlockState::DarkOakFence_FalseTrueFalseFalseTrue
- | BlockState::MangroveFence_FalseTrueFalseTrueTrue
- | BlockState::MangroveFence_FalseTrueFalseFalseTrue
- | BlockState::BambooFence_FalseTrueFalseTrueTrue
- | BlockState::BambooFence_FalseTrueFalseFalseTrue
- | BlockState::CrimsonFence_FalseTrueFalseTrueTrue
- | BlockState::CrimsonFence_FalseTrueFalseFalseTrue
- | BlockState::WarpedFence_FalseTrueFalseTrueTrue
- | BlockState::WarpedFence_FalseTrueFalseFalseTrue => &SHAPE88,
- BlockState::OakFence_FalseTrueFalseTrueFalse
- | BlockState::OakFence_FalseTrueFalseFalseFalse
- | BlockState::NetherBrickFence_FalseTrueFalseTrueFalse
- | BlockState::NetherBrickFence_FalseTrueFalseFalseFalse
- | BlockState::SpruceFence_FalseTrueFalseTrueFalse
- | BlockState::SpruceFence_FalseTrueFalseFalseFalse
- | BlockState::BirchFence_FalseTrueFalseTrueFalse
- | BlockState::BirchFence_FalseTrueFalseFalseFalse
- | BlockState::JungleFence_FalseTrueFalseTrueFalse
- | BlockState::JungleFence_FalseTrueFalseFalseFalse
- | BlockState::AcaciaFence_FalseTrueFalseTrueFalse
- | BlockState::AcaciaFence_FalseTrueFalseFalseFalse
- | BlockState::DarkOakFence_FalseTrueFalseTrueFalse
- | BlockState::DarkOakFence_FalseTrueFalseFalseFalse
- | BlockState::MangroveFence_FalseTrueFalseTrueFalse
- | BlockState::MangroveFence_FalseTrueFalseFalseFalse
- | BlockState::BambooFence_FalseTrueFalseTrueFalse
- | BlockState::BambooFence_FalseTrueFalseFalseFalse
- | BlockState::CrimsonFence_FalseTrueFalseTrueFalse
- | BlockState::CrimsonFence_FalseTrueFalseFalseFalse
- | BlockState::WarpedFence_FalseTrueFalseTrueFalse
- | BlockState::WarpedFence_FalseTrueFalseFalseFalse => &SHAPE89,
- BlockState::OakFence_FalseFalseTrueTrueTrue
- | BlockState::OakFence_FalseFalseTrueFalseTrue
- | BlockState::NetherBrickFence_FalseFalseTrueTrueTrue
- | BlockState::NetherBrickFence_FalseFalseTrueFalseTrue
- | BlockState::SpruceFence_FalseFalseTrueTrueTrue
- | BlockState::SpruceFence_FalseFalseTrueFalseTrue
- | BlockState::BirchFence_FalseFalseTrueTrueTrue
- | BlockState::BirchFence_FalseFalseTrueFalseTrue
- | BlockState::JungleFence_FalseFalseTrueTrueTrue
- | BlockState::JungleFence_FalseFalseTrueFalseTrue
- | BlockState::AcaciaFence_FalseFalseTrueTrueTrue
- | BlockState::AcaciaFence_FalseFalseTrueFalseTrue
- | BlockState::DarkOakFence_FalseFalseTrueTrueTrue
- | BlockState::DarkOakFence_FalseFalseTrueFalseTrue
- | BlockState::MangroveFence_FalseFalseTrueTrueTrue
- | BlockState::MangroveFence_FalseFalseTrueFalseTrue
- | BlockState::BambooFence_FalseFalseTrueTrueTrue
- | BlockState::BambooFence_FalseFalseTrueFalseTrue
- | BlockState::CrimsonFence_FalseFalseTrueTrueTrue
- | BlockState::CrimsonFence_FalseFalseTrueFalseTrue
- | BlockState::WarpedFence_FalseFalseTrueTrueTrue
- | BlockState::WarpedFence_FalseFalseTrueFalseTrue => &SHAPE90,
- BlockState::OakFence_FalseFalseTrueTrueFalse
- | BlockState::OakFence_FalseFalseTrueFalseFalse
- | BlockState::NetherBrickFence_FalseFalseTrueTrueFalse
- | BlockState::NetherBrickFence_FalseFalseTrueFalseFalse
- | BlockState::SpruceFence_FalseFalseTrueTrueFalse
- | BlockState::SpruceFence_FalseFalseTrueFalseFalse
- | BlockState::BirchFence_FalseFalseTrueTrueFalse
- | BlockState::BirchFence_FalseFalseTrueFalseFalse
- | BlockState::JungleFence_FalseFalseTrueTrueFalse
- | BlockState::JungleFence_FalseFalseTrueFalseFalse
- | BlockState::AcaciaFence_FalseFalseTrueTrueFalse
- | BlockState::AcaciaFence_FalseFalseTrueFalseFalse
- | BlockState::DarkOakFence_FalseFalseTrueTrueFalse
- | BlockState::DarkOakFence_FalseFalseTrueFalseFalse
- | BlockState::MangroveFence_FalseFalseTrueTrueFalse
- | BlockState::MangroveFence_FalseFalseTrueFalseFalse
- | BlockState::BambooFence_FalseFalseTrueTrueFalse
- | BlockState::BambooFence_FalseFalseTrueFalseFalse
- | BlockState::CrimsonFence_FalseFalseTrueTrueFalse
- | BlockState::CrimsonFence_FalseFalseTrueFalseFalse
- | BlockState::WarpedFence_FalseFalseTrueTrueFalse
- | BlockState::WarpedFence_FalseFalseTrueFalseFalse => &SHAPE91,
- BlockState::OakFence_FalseFalseFalseTrueTrue
- | BlockState::OakFence_FalseFalseFalseFalseTrue
- | BlockState::NetherBrickFence_FalseFalseFalseTrueTrue
- | BlockState::NetherBrickFence_FalseFalseFalseFalseTrue
- | BlockState::SpruceFence_FalseFalseFalseTrueTrue
- | BlockState::SpruceFence_FalseFalseFalseFalseTrue
- | BlockState::BirchFence_FalseFalseFalseTrueTrue
- | BlockState::BirchFence_FalseFalseFalseFalseTrue
- | BlockState::JungleFence_FalseFalseFalseTrueTrue
- | BlockState::JungleFence_FalseFalseFalseFalseTrue
- | BlockState::AcaciaFence_FalseFalseFalseTrueTrue
- | BlockState::AcaciaFence_FalseFalseFalseFalseTrue
- | BlockState::DarkOakFence_FalseFalseFalseTrueTrue
- | BlockState::DarkOakFence_FalseFalseFalseFalseTrue
- | BlockState::MangroveFence_FalseFalseFalseTrueTrue
- | BlockState::MangroveFence_FalseFalseFalseFalseTrue
- | BlockState::BambooFence_FalseFalseFalseTrueTrue
- | BlockState::BambooFence_FalseFalseFalseFalseTrue
- | BlockState::CrimsonFence_FalseFalseFalseTrueTrue
- | BlockState::CrimsonFence_FalseFalseFalseFalseTrue
- | BlockState::WarpedFence_FalseFalseFalseTrueTrue
- | BlockState::WarpedFence_FalseFalseFalseFalseTrue => &SHAPE92,
- BlockState::OakFence_FalseFalseFalseTrueFalse
- | BlockState::OakFence_FalseFalseFalseFalseFalse
- | BlockState::NetherBrickFence_FalseFalseFalseTrueFalse
- | BlockState::NetherBrickFence_FalseFalseFalseFalseFalse
- | BlockState::SpruceFence_FalseFalseFalseTrueFalse
- | BlockState::SpruceFence_FalseFalseFalseFalseFalse
- | BlockState::BirchFence_FalseFalseFalseTrueFalse
- | BlockState::BirchFence_FalseFalseFalseFalseFalse
- | BlockState::JungleFence_FalseFalseFalseTrueFalse
- | BlockState::JungleFence_FalseFalseFalseFalseFalse
- | BlockState::AcaciaFence_FalseFalseFalseTrueFalse
- | BlockState::AcaciaFence_FalseFalseFalseFalseFalse
- | BlockState::DarkOakFence_FalseFalseFalseTrueFalse
- | BlockState::DarkOakFence_FalseFalseFalseFalseFalse
- | BlockState::MangroveFence_FalseFalseFalseTrueFalse
- | BlockState::MangroveFence_FalseFalseFalseFalseFalse
- | BlockState::BambooFence_FalseFalseFalseTrueFalse
- | BlockState::BambooFence_FalseFalseFalseFalseFalse
- | BlockState::CrimsonFence_FalseFalseFalseTrueFalse
- | BlockState::CrimsonFence_FalseFalseFalseFalseFalse
- | BlockState::WarpedFence_FalseFalseFalseTrueFalse
- | BlockState::WarpedFence_FalseFalseFalseFalseFalse => &SHAPE93,
- BlockState::Cake__0 => &SHAPE94,
- BlockState::Cake__1 => &SHAPE95,
- BlockState::Cake__2 => &SHAPE96,
- BlockState::Cake__3 => &SHAPE97,
- BlockState::Cake__4 => &SHAPE98,
- BlockState::Cake__5 => &SHAPE99,
- BlockState::Cake__6 => &SHAPE100,
- BlockState::OakTrapdoor_NorthTopFalseTrueTrue
- | BlockState::OakTrapdoor_NorthTopFalseTrueFalse
- | BlockState::OakTrapdoor_NorthTopFalseFalseTrue
- | BlockState::OakTrapdoor_NorthTopFalseFalseFalse
- | BlockState::OakTrapdoor_SouthTopFalseTrueTrue
- | BlockState::OakTrapdoor_SouthTopFalseTrueFalse
- | BlockState::OakTrapdoor_SouthTopFalseFalseTrue
- | BlockState::OakTrapdoor_SouthTopFalseFalseFalse
- | BlockState::OakTrapdoor_WestTopFalseTrueTrue
- | BlockState::OakTrapdoor_WestTopFalseTrueFalse
- | BlockState::OakTrapdoor_WestTopFalseFalseTrue
- | BlockState::OakTrapdoor_WestTopFalseFalseFalse
- | BlockState::OakTrapdoor_EastTopFalseTrueTrue
- | BlockState::OakTrapdoor_EastTopFalseTrueFalse
- | BlockState::OakTrapdoor_EastTopFalseFalseTrue
- | BlockState::OakTrapdoor_EastTopFalseFalseFalse
- | BlockState::SpruceTrapdoor_NorthTopFalseTrueTrue
- | BlockState::SpruceTrapdoor_NorthTopFalseTrueFalse
- | BlockState::SpruceTrapdoor_NorthTopFalseFalseTrue
- | BlockState::SpruceTrapdoor_NorthTopFalseFalseFalse
- | BlockState::SpruceTrapdoor_SouthTopFalseTrueTrue
- | BlockState::SpruceTrapdoor_SouthTopFalseTrueFalse
- | BlockState::SpruceTrapdoor_SouthTopFalseFalseTrue
- | BlockState::SpruceTrapdoor_SouthTopFalseFalseFalse
- | BlockState::SpruceTrapdoor_WestTopFalseTrueTrue
- | BlockState::SpruceTrapdoor_WestTopFalseTrueFalse
- | BlockState::SpruceTrapdoor_WestTopFalseFalseTrue
- | BlockState::SpruceTrapdoor_WestTopFalseFalseFalse
- | BlockState::SpruceTrapdoor_EastTopFalseTrueTrue
- | BlockState::SpruceTrapdoor_EastTopFalseTrueFalse
- | BlockState::SpruceTrapdoor_EastTopFalseFalseTrue
- | BlockState::SpruceTrapdoor_EastTopFalseFalseFalse
- | BlockState::BirchTrapdoor_NorthTopFalseTrueTrue
- | BlockState::BirchTrapdoor_NorthTopFalseTrueFalse
- | BlockState::BirchTrapdoor_NorthTopFalseFalseTrue
- | BlockState::BirchTrapdoor_NorthTopFalseFalseFalse
- | BlockState::BirchTrapdoor_SouthTopFalseTrueTrue
- | BlockState::BirchTrapdoor_SouthTopFalseTrueFalse
- | BlockState::BirchTrapdoor_SouthTopFalseFalseTrue
- | BlockState::BirchTrapdoor_SouthTopFalseFalseFalse
- | BlockState::BirchTrapdoor_WestTopFalseTrueTrue
- | BlockState::BirchTrapdoor_WestTopFalseTrueFalse
- | BlockState::BirchTrapdoor_WestTopFalseFalseTrue
- | BlockState::BirchTrapdoor_WestTopFalseFalseFalse
- | BlockState::BirchTrapdoor_EastTopFalseTrueTrue
- | BlockState::BirchTrapdoor_EastTopFalseTrueFalse
- | BlockState::BirchTrapdoor_EastTopFalseFalseTrue
- | BlockState::BirchTrapdoor_EastTopFalseFalseFalse
- | BlockState::JungleTrapdoor_NorthTopFalseTrueTrue
- | BlockState::JungleTrapdoor_NorthTopFalseTrueFalse
- | BlockState::JungleTrapdoor_NorthTopFalseFalseTrue
- | BlockState::JungleTrapdoor_NorthTopFalseFalseFalse
- | BlockState::JungleTrapdoor_SouthTopFalseTrueTrue
- | BlockState::JungleTrapdoor_SouthTopFalseTrueFalse
- | BlockState::JungleTrapdoor_SouthTopFalseFalseTrue
- | BlockState::JungleTrapdoor_SouthTopFalseFalseFalse
- | BlockState::JungleTrapdoor_WestTopFalseTrueTrue
- | BlockState::JungleTrapdoor_WestTopFalseTrueFalse
- | BlockState::JungleTrapdoor_WestTopFalseFalseTrue
- | BlockState::JungleTrapdoor_WestTopFalseFalseFalse
- | BlockState::JungleTrapdoor_EastTopFalseTrueTrue
- | BlockState::JungleTrapdoor_EastTopFalseTrueFalse
- | BlockState::JungleTrapdoor_EastTopFalseFalseTrue
- | BlockState::JungleTrapdoor_EastTopFalseFalseFalse
- | BlockState::AcaciaTrapdoor_NorthTopFalseTrueTrue
- | BlockState::AcaciaTrapdoor_NorthTopFalseTrueFalse
- | BlockState::AcaciaTrapdoor_NorthTopFalseFalseTrue
- | BlockState::AcaciaTrapdoor_NorthTopFalseFalseFalse
- | BlockState::AcaciaTrapdoor_SouthTopFalseTrueTrue
- | BlockState::AcaciaTrapdoor_SouthTopFalseTrueFalse
- | BlockState::AcaciaTrapdoor_SouthTopFalseFalseTrue
- | BlockState::AcaciaTrapdoor_SouthTopFalseFalseFalse
- | BlockState::AcaciaTrapdoor_WestTopFalseTrueTrue
- | BlockState::AcaciaTrapdoor_WestTopFalseTrueFalse
- | BlockState::AcaciaTrapdoor_WestTopFalseFalseTrue
- | BlockState::AcaciaTrapdoor_WestTopFalseFalseFalse
- | BlockState::AcaciaTrapdoor_EastTopFalseTrueTrue
- | BlockState::AcaciaTrapdoor_EastTopFalseTrueFalse
- | BlockState::AcaciaTrapdoor_EastTopFalseFalseTrue
- | BlockState::AcaciaTrapdoor_EastTopFalseFalseFalse
- | BlockState::DarkOakTrapdoor_NorthTopFalseTrueTrue
- | BlockState::DarkOakTrapdoor_NorthTopFalseTrueFalse
- | BlockState::DarkOakTrapdoor_NorthTopFalseFalseTrue
- | BlockState::DarkOakTrapdoor_NorthTopFalseFalseFalse
- | BlockState::DarkOakTrapdoor_SouthTopFalseTrueTrue
- | BlockState::DarkOakTrapdoor_SouthTopFalseTrueFalse
- | BlockState::DarkOakTrapdoor_SouthTopFalseFalseTrue
- | BlockState::DarkOakTrapdoor_SouthTopFalseFalseFalse
- | BlockState::DarkOakTrapdoor_WestTopFalseTrueTrue
- | BlockState::DarkOakTrapdoor_WestTopFalseTrueFalse
- | BlockState::DarkOakTrapdoor_WestTopFalseFalseTrue
- | BlockState::DarkOakTrapdoor_WestTopFalseFalseFalse
- | BlockState::DarkOakTrapdoor_EastTopFalseTrueTrue
- | BlockState::DarkOakTrapdoor_EastTopFalseTrueFalse
- | BlockState::DarkOakTrapdoor_EastTopFalseFalseTrue
- | BlockState::DarkOakTrapdoor_EastTopFalseFalseFalse
- | BlockState::MangroveTrapdoor_NorthTopFalseTrueTrue
- | BlockState::MangroveTrapdoor_NorthTopFalseTrueFalse
- | BlockState::MangroveTrapdoor_NorthTopFalseFalseTrue
- | BlockState::MangroveTrapdoor_NorthTopFalseFalseFalse
- | BlockState::MangroveTrapdoor_SouthTopFalseTrueTrue
- | BlockState::MangroveTrapdoor_SouthTopFalseTrueFalse
- | BlockState::MangroveTrapdoor_SouthTopFalseFalseTrue
- | BlockState::MangroveTrapdoor_SouthTopFalseFalseFalse
- | BlockState::MangroveTrapdoor_WestTopFalseTrueTrue
- | BlockState::MangroveTrapdoor_WestTopFalseTrueFalse
- | BlockState::MangroveTrapdoor_WestTopFalseFalseTrue
- | BlockState::MangroveTrapdoor_WestTopFalseFalseFalse
- | BlockState::MangroveTrapdoor_EastTopFalseTrueTrue
- | BlockState::MangroveTrapdoor_EastTopFalseTrueFalse
- | BlockState::MangroveTrapdoor_EastTopFalseFalseTrue
- | BlockState::MangroveTrapdoor_EastTopFalseFalseFalse
- | BlockState::BambooTrapdoor_NorthTopFalseTrueTrue
- | BlockState::BambooTrapdoor_NorthTopFalseTrueFalse
- | BlockState::BambooTrapdoor_NorthTopFalseFalseTrue
- | BlockState::BambooTrapdoor_NorthTopFalseFalseFalse
- | BlockState::BambooTrapdoor_SouthTopFalseTrueTrue
- | BlockState::BambooTrapdoor_SouthTopFalseTrueFalse
- | BlockState::BambooTrapdoor_SouthTopFalseFalseTrue
- | BlockState::BambooTrapdoor_SouthTopFalseFalseFalse
- | BlockState::BambooTrapdoor_WestTopFalseTrueTrue
- | BlockState::BambooTrapdoor_WestTopFalseTrueFalse
- | BlockState::BambooTrapdoor_WestTopFalseFalseTrue
- | BlockState::BambooTrapdoor_WestTopFalseFalseFalse
- | BlockState::BambooTrapdoor_EastTopFalseTrueTrue
- | BlockState::BambooTrapdoor_EastTopFalseTrueFalse
- | BlockState::BambooTrapdoor_EastTopFalseFalseTrue
- | BlockState::BambooTrapdoor_EastTopFalseFalseFalse
- | BlockState::IronTrapdoor_NorthTopFalseTrueTrue
- | BlockState::IronTrapdoor_NorthTopFalseTrueFalse
- | BlockState::IronTrapdoor_NorthTopFalseFalseTrue
- | BlockState::IronTrapdoor_NorthTopFalseFalseFalse
- | BlockState::IronTrapdoor_SouthTopFalseTrueTrue
- | BlockState::IronTrapdoor_SouthTopFalseTrueFalse
- | BlockState::IronTrapdoor_SouthTopFalseFalseTrue
- | BlockState::IronTrapdoor_SouthTopFalseFalseFalse
- | BlockState::IronTrapdoor_WestTopFalseTrueTrue
- | BlockState::IronTrapdoor_WestTopFalseTrueFalse
- | BlockState::IronTrapdoor_WestTopFalseFalseTrue
- | BlockState::IronTrapdoor_WestTopFalseFalseFalse
- | BlockState::IronTrapdoor_EastTopFalseTrueTrue
- | BlockState::IronTrapdoor_EastTopFalseTrueFalse
- | BlockState::IronTrapdoor_EastTopFalseFalseTrue
- | BlockState::IronTrapdoor_EastTopFalseFalseFalse
- | BlockState::CrimsonTrapdoor_NorthTopFalseTrueTrue
- | BlockState::CrimsonTrapdoor_NorthTopFalseTrueFalse
- | BlockState::CrimsonTrapdoor_NorthTopFalseFalseTrue
- | BlockState::CrimsonTrapdoor_NorthTopFalseFalseFalse
- | BlockState::CrimsonTrapdoor_SouthTopFalseTrueTrue
- | BlockState::CrimsonTrapdoor_SouthTopFalseTrueFalse
- | BlockState::CrimsonTrapdoor_SouthTopFalseFalseTrue
- | BlockState::CrimsonTrapdoor_SouthTopFalseFalseFalse
- | BlockState::CrimsonTrapdoor_WestTopFalseTrueTrue
- | BlockState::CrimsonTrapdoor_WestTopFalseTrueFalse
- | BlockState::CrimsonTrapdoor_WestTopFalseFalseTrue
- | BlockState::CrimsonTrapdoor_WestTopFalseFalseFalse
- | BlockState::CrimsonTrapdoor_EastTopFalseTrueTrue
- | BlockState::CrimsonTrapdoor_EastTopFalseTrueFalse
- | BlockState::CrimsonTrapdoor_EastTopFalseFalseTrue
- | BlockState::CrimsonTrapdoor_EastTopFalseFalseFalse
- | BlockState::WarpedTrapdoor_NorthTopFalseTrueTrue
- | BlockState::WarpedTrapdoor_NorthTopFalseTrueFalse
- | BlockState::WarpedTrapdoor_NorthTopFalseFalseTrue
- | BlockState::WarpedTrapdoor_NorthTopFalseFalseFalse
- | BlockState::WarpedTrapdoor_SouthTopFalseTrueTrue
- | BlockState::WarpedTrapdoor_SouthTopFalseTrueFalse
- | BlockState::WarpedTrapdoor_SouthTopFalseFalseTrue
- | BlockState::WarpedTrapdoor_SouthTopFalseFalseFalse
- | BlockState::WarpedTrapdoor_WestTopFalseTrueTrue
- | BlockState::WarpedTrapdoor_WestTopFalseTrueFalse
- | BlockState::WarpedTrapdoor_WestTopFalseFalseTrue
- | BlockState::WarpedTrapdoor_WestTopFalseFalseFalse
- | BlockState::WarpedTrapdoor_EastTopFalseTrueTrue
- | BlockState::WarpedTrapdoor_EastTopFalseTrueFalse
- | BlockState::WarpedTrapdoor_EastTopFalseFalseTrue
- | BlockState::WarpedTrapdoor_EastTopFalseFalseFalse => &SHAPE101,
- BlockState::OakTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::OakTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::OakTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::OakTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::OakTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::OakTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::OakTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::OakTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::OakTrapdoor_WestBottomFalseTrueTrue
- | BlockState::OakTrapdoor_WestBottomFalseTrueFalse
- | BlockState::OakTrapdoor_WestBottomFalseFalseTrue
- | BlockState::OakTrapdoor_WestBottomFalseFalseFalse
- | BlockState::OakTrapdoor_EastBottomFalseTrueTrue
- | BlockState::OakTrapdoor_EastBottomFalseTrueFalse
- | BlockState::OakTrapdoor_EastBottomFalseFalseTrue
- | BlockState::OakTrapdoor_EastBottomFalseFalseFalse
- | BlockState::SpruceTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::SpruceTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::SpruceTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::SpruceTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::SpruceTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::SpruceTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::SpruceTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::SpruceTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::SpruceTrapdoor_WestBottomFalseTrueTrue
- | BlockState::SpruceTrapdoor_WestBottomFalseTrueFalse
- | BlockState::SpruceTrapdoor_WestBottomFalseFalseTrue
- | BlockState::SpruceTrapdoor_WestBottomFalseFalseFalse
- | BlockState::SpruceTrapdoor_EastBottomFalseTrueTrue
- | BlockState::SpruceTrapdoor_EastBottomFalseTrueFalse
- | BlockState::SpruceTrapdoor_EastBottomFalseFalseTrue
- | BlockState::SpruceTrapdoor_EastBottomFalseFalseFalse
- | BlockState::BirchTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::BirchTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::BirchTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::BirchTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::BirchTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::BirchTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::BirchTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::BirchTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::BirchTrapdoor_WestBottomFalseTrueTrue
- | BlockState::BirchTrapdoor_WestBottomFalseTrueFalse
- | BlockState::BirchTrapdoor_WestBottomFalseFalseTrue
- | BlockState::BirchTrapdoor_WestBottomFalseFalseFalse
- | BlockState::BirchTrapdoor_EastBottomFalseTrueTrue
- | BlockState::BirchTrapdoor_EastBottomFalseTrueFalse
- | BlockState::BirchTrapdoor_EastBottomFalseFalseTrue
- | BlockState::BirchTrapdoor_EastBottomFalseFalseFalse
- | BlockState::JungleTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::JungleTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::JungleTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::JungleTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::JungleTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::JungleTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::JungleTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::JungleTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::JungleTrapdoor_WestBottomFalseTrueTrue
- | BlockState::JungleTrapdoor_WestBottomFalseTrueFalse
- | BlockState::JungleTrapdoor_WestBottomFalseFalseTrue
- | BlockState::JungleTrapdoor_WestBottomFalseFalseFalse
- | BlockState::JungleTrapdoor_EastBottomFalseTrueTrue
- | BlockState::JungleTrapdoor_EastBottomFalseTrueFalse
- | BlockState::JungleTrapdoor_EastBottomFalseFalseTrue
- | BlockState::JungleTrapdoor_EastBottomFalseFalseFalse
- | BlockState::AcaciaTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::AcaciaTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::AcaciaTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::AcaciaTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::AcaciaTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::AcaciaTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::AcaciaTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::AcaciaTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::AcaciaTrapdoor_WestBottomFalseTrueTrue
- | BlockState::AcaciaTrapdoor_WestBottomFalseTrueFalse
- | BlockState::AcaciaTrapdoor_WestBottomFalseFalseTrue
- | BlockState::AcaciaTrapdoor_WestBottomFalseFalseFalse
- | BlockState::AcaciaTrapdoor_EastBottomFalseTrueTrue
- | BlockState::AcaciaTrapdoor_EastBottomFalseTrueFalse
- | BlockState::AcaciaTrapdoor_EastBottomFalseFalseTrue
- | BlockState::AcaciaTrapdoor_EastBottomFalseFalseFalse
- | BlockState::DarkOakTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::DarkOakTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::DarkOakTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::DarkOakTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::DarkOakTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::DarkOakTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::DarkOakTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::DarkOakTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::DarkOakTrapdoor_WestBottomFalseTrueTrue
- | BlockState::DarkOakTrapdoor_WestBottomFalseTrueFalse
- | BlockState::DarkOakTrapdoor_WestBottomFalseFalseTrue
- | BlockState::DarkOakTrapdoor_WestBottomFalseFalseFalse
- | BlockState::DarkOakTrapdoor_EastBottomFalseTrueTrue
- | BlockState::DarkOakTrapdoor_EastBottomFalseTrueFalse
- | BlockState::DarkOakTrapdoor_EastBottomFalseFalseTrue
- | BlockState::DarkOakTrapdoor_EastBottomFalseFalseFalse
- | BlockState::MangroveTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::MangroveTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::MangroveTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::MangroveTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::MangroveTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::MangroveTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::MangroveTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::MangroveTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::MangroveTrapdoor_WestBottomFalseTrueTrue
- | BlockState::MangroveTrapdoor_WestBottomFalseTrueFalse
- | BlockState::MangroveTrapdoor_WestBottomFalseFalseTrue
- | BlockState::MangroveTrapdoor_WestBottomFalseFalseFalse
- | BlockState::MangroveTrapdoor_EastBottomFalseTrueTrue
- | BlockState::MangroveTrapdoor_EastBottomFalseTrueFalse
- | BlockState::MangroveTrapdoor_EastBottomFalseFalseTrue
- | BlockState::MangroveTrapdoor_EastBottomFalseFalseFalse
- | BlockState::BambooTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::BambooTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::BambooTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::BambooTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::BambooTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::BambooTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::BambooTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::BambooTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::BambooTrapdoor_WestBottomFalseTrueTrue
- | BlockState::BambooTrapdoor_WestBottomFalseTrueFalse
- | BlockState::BambooTrapdoor_WestBottomFalseFalseTrue
- | BlockState::BambooTrapdoor_WestBottomFalseFalseFalse
- | BlockState::BambooTrapdoor_EastBottomFalseTrueTrue
- | BlockState::BambooTrapdoor_EastBottomFalseTrueFalse
- | BlockState::BambooTrapdoor_EastBottomFalseFalseTrue
- | BlockState::BambooTrapdoor_EastBottomFalseFalseFalse
- | BlockState::IronTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::IronTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::IronTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::IronTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::IronTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::IronTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::IronTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::IronTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::IronTrapdoor_WestBottomFalseTrueTrue
- | BlockState::IronTrapdoor_WestBottomFalseTrueFalse
- | BlockState::IronTrapdoor_WestBottomFalseFalseTrue
- | BlockState::IronTrapdoor_WestBottomFalseFalseFalse
- | BlockState::IronTrapdoor_EastBottomFalseTrueTrue
- | BlockState::IronTrapdoor_EastBottomFalseTrueFalse
- | BlockState::IronTrapdoor_EastBottomFalseFalseTrue
- | BlockState::IronTrapdoor_EastBottomFalseFalseFalse
- | BlockState::CrimsonTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::CrimsonTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::CrimsonTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::CrimsonTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::CrimsonTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::CrimsonTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::CrimsonTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::CrimsonTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::CrimsonTrapdoor_WestBottomFalseTrueTrue
- | BlockState::CrimsonTrapdoor_WestBottomFalseTrueFalse
- | BlockState::CrimsonTrapdoor_WestBottomFalseFalseTrue
- | BlockState::CrimsonTrapdoor_WestBottomFalseFalseFalse
- | BlockState::CrimsonTrapdoor_EastBottomFalseTrueTrue
- | BlockState::CrimsonTrapdoor_EastBottomFalseTrueFalse
- | BlockState::CrimsonTrapdoor_EastBottomFalseFalseTrue
- | BlockState::CrimsonTrapdoor_EastBottomFalseFalseFalse
- | BlockState::WarpedTrapdoor_NorthBottomFalseTrueTrue
- | BlockState::WarpedTrapdoor_NorthBottomFalseTrueFalse
- | BlockState::WarpedTrapdoor_NorthBottomFalseFalseTrue
- | BlockState::WarpedTrapdoor_NorthBottomFalseFalseFalse
- | BlockState::WarpedTrapdoor_SouthBottomFalseTrueTrue
- | BlockState::WarpedTrapdoor_SouthBottomFalseTrueFalse
- | BlockState::WarpedTrapdoor_SouthBottomFalseFalseTrue
- | BlockState::WarpedTrapdoor_SouthBottomFalseFalseFalse
- | BlockState::WarpedTrapdoor_WestBottomFalseTrueTrue
- | BlockState::WarpedTrapdoor_WestBottomFalseTrueFalse
- | BlockState::WarpedTrapdoor_WestBottomFalseFalseTrue
- | BlockState::WarpedTrapdoor_WestBottomFalseFalseFalse
- | BlockState::WarpedTrapdoor_EastBottomFalseTrueTrue
- | BlockState::WarpedTrapdoor_EastBottomFalseTrueFalse
- | BlockState::WarpedTrapdoor_EastBottomFalseFalseTrue
- | BlockState::WarpedTrapdoor_EastBottomFalseFalseFalse => &SHAPE102,
- BlockState::IronBars_TrueTrueTrueTrueTrue
- | BlockState::IronBars_TrueTrueTrueFalseTrue
- | BlockState::GlassPane_TrueTrueTrueTrueTrue
- | BlockState::GlassPane_TrueTrueTrueFalseTrue
- | BlockState::WhiteStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::WhiteStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::OrangeStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::OrangeStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::MagentaStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::MagentaStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::LightBlueStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::LightBlueStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::YellowStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::YellowStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::LimeStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::LimeStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::PinkStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::PinkStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::GrayStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::GrayStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::LightGrayStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::LightGrayStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::CyanStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::CyanStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::PurpleStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::PurpleStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::BlueStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::BlueStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::BrownStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::BrownStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::GreenStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::GreenStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::RedStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::RedStainedGlassPane_TrueTrueTrueFalseTrue
- | BlockState::BlackStainedGlassPane_TrueTrueTrueTrueTrue
- | BlockState::BlackStainedGlassPane_TrueTrueTrueFalseTrue => &SHAPE103,
- BlockState::IronBars_TrueTrueTrueTrueFalse
- | BlockState::IronBars_TrueTrueTrueFalseFalse
- | BlockState::GlassPane_TrueTrueTrueTrueFalse
- | BlockState::GlassPane_TrueTrueTrueFalseFalse
- | BlockState::WhiteStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::WhiteStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::OrangeStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::OrangeStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::MagentaStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::MagentaStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::LightBlueStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::LightBlueStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::YellowStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::YellowStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::LimeStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::LimeStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::PinkStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::PinkStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::GrayStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::GrayStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::LightGrayStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::LightGrayStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::CyanStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::CyanStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::PurpleStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::PurpleStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::BlueStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::BlueStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::BrownStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::BrownStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::GreenStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::GreenStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::RedStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::RedStainedGlassPane_TrueTrueTrueFalseFalse
- | BlockState::BlackStainedGlassPane_TrueTrueTrueTrueFalse
- | BlockState::BlackStainedGlassPane_TrueTrueTrueFalseFalse => &SHAPE104,
- BlockState::IronBars_TrueTrueFalseTrueTrue
- | BlockState::IronBars_TrueTrueFalseFalseTrue
- | BlockState::GlassPane_TrueTrueFalseTrueTrue
- | BlockState::GlassPane_TrueTrueFalseFalseTrue
- | BlockState::WhiteStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::WhiteStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::OrangeStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::OrangeStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::MagentaStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::MagentaStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::LightBlueStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::LightBlueStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::YellowStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::YellowStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::LimeStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::LimeStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::PinkStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::PinkStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::GrayStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::GrayStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::LightGrayStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::LightGrayStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::CyanStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::CyanStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::PurpleStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::PurpleStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::BlueStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::BlueStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::BrownStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::BrownStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::GreenStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::GreenStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::RedStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::RedStainedGlassPane_TrueTrueFalseFalseTrue
- | BlockState::BlackStainedGlassPane_TrueTrueFalseTrueTrue
- | BlockState::BlackStainedGlassPane_TrueTrueFalseFalseTrue => &SHAPE105,
- BlockState::IronBars_TrueTrueFalseTrueFalse
- | BlockState::IronBars_TrueTrueFalseFalseFalse
- | BlockState::GlassPane_TrueTrueFalseTrueFalse
- | BlockState::GlassPane_TrueTrueFalseFalseFalse
- | BlockState::WhiteStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::WhiteStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::OrangeStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::OrangeStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::MagentaStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::MagentaStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::LightBlueStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::LightBlueStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::YellowStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::YellowStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::LimeStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::LimeStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::PinkStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::PinkStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::GrayStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::GrayStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::LightGrayStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::LightGrayStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::CyanStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::CyanStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::PurpleStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::PurpleStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::BlueStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::BlueStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::BrownStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::BrownStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::GreenStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::GreenStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::RedStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::RedStainedGlassPane_TrueTrueFalseFalseFalse
- | BlockState::BlackStainedGlassPane_TrueTrueFalseTrueFalse
- | BlockState::BlackStainedGlassPane_TrueTrueFalseFalseFalse => &SHAPE106,
- BlockState::IronBars_TrueFalseTrueTrueTrue
- | BlockState::IronBars_TrueFalseTrueFalseTrue
- | BlockState::GlassPane_TrueFalseTrueTrueTrue
- | BlockState::GlassPane_TrueFalseTrueFalseTrue
- | BlockState::WhiteStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::WhiteStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::OrangeStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::OrangeStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::MagentaStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::MagentaStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::LightBlueStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::LightBlueStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::YellowStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::YellowStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::LimeStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::LimeStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::PinkStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::PinkStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::GrayStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::GrayStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::LightGrayStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::LightGrayStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::CyanStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::CyanStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::PurpleStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::PurpleStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::BlueStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::BlueStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::BrownStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::BrownStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::GreenStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::GreenStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::RedStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::RedStainedGlassPane_TrueFalseTrueFalseTrue
- | BlockState::BlackStainedGlassPane_TrueFalseTrueTrueTrue
- | BlockState::BlackStainedGlassPane_TrueFalseTrueFalseTrue => &SHAPE107,
- BlockState::IronBars_TrueFalseTrueTrueFalse
- | BlockState::IronBars_TrueFalseTrueFalseFalse
- | BlockState::GlassPane_TrueFalseTrueTrueFalse
- | BlockState::GlassPane_TrueFalseTrueFalseFalse
- | BlockState::WhiteStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::WhiteStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::OrangeStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::OrangeStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::MagentaStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::MagentaStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::LightBlueStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::LightBlueStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::YellowStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::YellowStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::LimeStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::LimeStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::PinkStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::PinkStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::GrayStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::GrayStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::LightGrayStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::LightGrayStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::CyanStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::CyanStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::PurpleStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::PurpleStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::BlueStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::BlueStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::BrownStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::BrownStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::GreenStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::GreenStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::RedStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::RedStainedGlassPane_TrueFalseTrueFalseFalse
- | BlockState::BlackStainedGlassPane_TrueFalseTrueTrueFalse
- | BlockState::BlackStainedGlassPane_TrueFalseTrueFalseFalse => &SHAPE108,
- BlockState::IronBars_TrueFalseFalseTrueTrue
- | BlockState::IronBars_TrueFalseFalseFalseTrue
- | BlockState::GlassPane_TrueFalseFalseTrueTrue
- | BlockState::GlassPane_TrueFalseFalseFalseTrue
- | BlockState::WhiteStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::WhiteStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::OrangeStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::OrangeStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::MagentaStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::MagentaStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::LightBlueStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::LightBlueStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::YellowStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::YellowStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::LimeStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::LimeStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::PinkStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::PinkStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::GrayStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::GrayStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::LightGrayStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::LightGrayStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::CyanStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::CyanStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::PurpleStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::PurpleStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::BlueStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::BlueStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::BrownStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::BrownStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::GreenStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::GreenStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::RedStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::RedStainedGlassPane_TrueFalseFalseFalseTrue
- | BlockState::BlackStainedGlassPane_TrueFalseFalseTrueTrue
- | BlockState::BlackStainedGlassPane_TrueFalseFalseFalseTrue => &SHAPE109,
- BlockState::IronBars_TrueFalseFalseTrueFalse
- | BlockState::IronBars_TrueFalseFalseFalseFalse
- | BlockState::GlassPane_TrueFalseFalseTrueFalse
- | BlockState::GlassPane_TrueFalseFalseFalseFalse
- | BlockState::WhiteStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::WhiteStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::OrangeStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::OrangeStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::MagentaStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::MagentaStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::LightBlueStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::LightBlueStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::YellowStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::YellowStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::LimeStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::LimeStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::PinkStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::PinkStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::GrayStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::GrayStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::LightGrayStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::LightGrayStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::CyanStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::CyanStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::PurpleStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::PurpleStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::BlueStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::BlueStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::BrownStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::BrownStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::GreenStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::GreenStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::RedStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::RedStainedGlassPane_TrueFalseFalseFalseFalse
- | BlockState::BlackStainedGlassPane_TrueFalseFalseTrueFalse
- | BlockState::BlackStainedGlassPane_TrueFalseFalseFalseFalse => &SHAPE110,
- BlockState::IronBars_FalseTrueTrueTrueTrue
- | BlockState::IronBars_FalseTrueTrueFalseTrue
- | BlockState::GlassPane_FalseTrueTrueTrueTrue
- | BlockState::GlassPane_FalseTrueTrueFalseTrue
- | BlockState::WhiteStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::WhiteStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::OrangeStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::OrangeStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::MagentaStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::MagentaStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::LightBlueStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::LightBlueStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::YellowStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::YellowStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::LimeStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::LimeStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::PinkStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::PinkStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::GrayStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::GrayStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::LightGrayStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::LightGrayStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::CyanStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::CyanStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::PurpleStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::PurpleStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::BlueStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::BlueStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::BrownStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::BrownStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::GreenStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::GreenStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::RedStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::RedStainedGlassPane_FalseTrueTrueFalseTrue
- | BlockState::BlackStainedGlassPane_FalseTrueTrueTrueTrue
- | BlockState::BlackStainedGlassPane_FalseTrueTrueFalseTrue => &SHAPE111,
- BlockState::IronBars_FalseTrueTrueTrueFalse
- | BlockState::IronBars_FalseTrueTrueFalseFalse
- | BlockState::GlassPane_FalseTrueTrueTrueFalse
- | BlockState::GlassPane_FalseTrueTrueFalseFalse
- | BlockState::WhiteStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::WhiteStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::OrangeStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::OrangeStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::MagentaStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::MagentaStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::LightBlueStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::LightBlueStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::YellowStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::YellowStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::LimeStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::LimeStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::PinkStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::PinkStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::GrayStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::GrayStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::LightGrayStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::LightGrayStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::CyanStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::CyanStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::PurpleStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::PurpleStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::BlueStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::BlueStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::BrownStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::BrownStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::GreenStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::GreenStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::RedStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::RedStainedGlassPane_FalseTrueTrueFalseFalse
- | BlockState::BlackStainedGlassPane_FalseTrueTrueTrueFalse
- | BlockState::BlackStainedGlassPane_FalseTrueTrueFalseFalse => &SHAPE112,
- BlockState::IronBars_FalseTrueFalseTrueTrue
- | BlockState::IronBars_FalseTrueFalseFalseTrue
- | BlockState::GlassPane_FalseTrueFalseTrueTrue
- | BlockState::GlassPane_FalseTrueFalseFalseTrue
- | BlockState::WhiteStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::WhiteStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::OrangeStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::OrangeStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::MagentaStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::MagentaStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::LightBlueStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::LightBlueStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::YellowStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::YellowStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::LimeStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::LimeStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::PinkStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::PinkStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::GrayStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::GrayStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::LightGrayStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::LightGrayStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::CyanStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::CyanStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::PurpleStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::PurpleStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::BlueStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::BlueStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::BrownStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::BrownStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::GreenStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::GreenStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::RedStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::RedStainedGlassPane_FalseTrueFalseFalseTrue
- | BlockState::BlackStainedGlassPane_FalseTrueFalseTrueTrue
- | BlockState::BlackStainedGlassPane_FalseTrueFalseFalseTrue => &SHAPE113,
- BlockState::IronBars_FalseTrueFalseTrueFalse
- | BlockState::IronBars_FalseTrueFalseFalseFalse
- | BlockState::GlassPane_FalseTrueFalseTrueFalse
- | BlockState::GlassPane_FalseTrueFalseFalseFalse
- | BlockState::WhiteStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::WhiteStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::OrangeStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::OrangeStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::MagentaStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::MagentaStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::LightBlueStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::LightBlueStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::YellowStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::YellowStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::LimeStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::LimeStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::PinkStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::PinkStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::GrayStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::GrayStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::LightGrayStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::LightGrayStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::CyanStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::CyanStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::PurpleStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::PurpleStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::BlueStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::BlueStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::BrownStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::BrownStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::GreenStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::GreenStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::RedStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::RedStainedGlassPane_FalseTrueFalseFalseFalse
- | BlockState::BlackStainedGlassPane_FalseTrueFalseTrueFalse
- | BlockState::BlackStainedGlassPane_FalseTrueFalseFalseFalse => &SHAPE114,
- BlockState::IronBars_FalseFalseTrueTrueTrue
- | BlockState::IronBars_FalseFalseTrueFalseTrue
- | BlockState::GlassPane_FalseFalseTrueTrueTrue
- | BlockState::GlassPane_FalseFalseTrueFalseTrue
- | BlockState::WhiteStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::WhiteStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::OrangeStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::OrangeStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::MagentaStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::MagentaStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::LightBlueStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::LightBlueStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::YellowStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::YellowStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::LimeStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::LimeStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::PinkStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::PinkStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::GrayStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::GrayStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::LightGrayStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::LightGrayStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::CyanStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::CyanStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::PurpleStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::PurpleStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::BlueStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::BlueStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::BrownStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::BrownStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::GreenStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::GreenStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::RedStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::RedStainedGlassPane_FalseFalseTrueFalseTrue
- | BlockState::BlackStainedGlassPane_FalseFalseTrueTrueTrue
- | BlockState::BlackStainedGlassPane_FalseFalseTrueFalseTrue => &SHAPE115,
- BlockState::IronBars_FalseFalseTrueTrueFalse
- | BlockState::IronBars_FalseFalseTrueFalseFalse
- | BlockState::GlassPane_FalseFalseTrueTrueFalse
- | BlockState::GlassPane_FalseFalseTrueFalseFalse
- | BlockState::WhiteStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::WhiteStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::OrangeStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::OrangeStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::MagentaStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::MagentaStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::LightBlueStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::LightBlueStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::YellowStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::YellowStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::LimeStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::LimeStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::PinkStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::PinkStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::GrayStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::GrayStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::LightGrayStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::LightGrayStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::CyanStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::CyanStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::PurpleStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::PurpleStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::BlueStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::BlueStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::BrownStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::BrownStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::GreenStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::GreenStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::RedStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::RedStainedGlassPane_FalseFalseTrueFalseFalse
- | BlockState::BlackStainedGlassPane_FalseFalseTrueTrueFalse
- | BlockState::BlackStainedGlassPane_FalseFalseTrueFalseFalse => &SHAPE116,
- BlockState::IronBars_FalseFalseFalseTrueTrue
- | BlockState::IronBars_FalseFalseFalseFalseTrue
- | BlockState::GlassPane_FalseFalseFalseTrueTrue
- | BlockState::GlassPane_FalseFalseFalseFalseTrue
- | BlockState::WhiteStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::WhiteStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::OrangeStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::OrangeStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::MagentaStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::MagentaStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::LightBlueStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::LightBlueStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::YellowStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::YellowStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::LimeStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::LimeStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::PinkStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::PinkStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::GrayStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::GrayStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::LightGrayStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::LightGrayStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::CyanStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::CyanStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::PurpleStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::PurpleStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::BlueStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::BlueStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::BrownStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::BrownStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::GreenStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::GreenStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::RedStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::RedStainedGlassPane_FalseFalseFalseFalseTrue
- | BlockState::BlackStainedGlassPane_FalseFalseFalseTrueTrue
- | BlockState::BlackStainedGlassPane_FalseFalseFalseFalseTrue => &SHAPE117,
- BlockState::IronBars_FalseFalseFalseTrueFalse
- | BlockState::IronBars_FalseFalseFalseFalseFalse
- | BlockState::GlassPane_FalseFalseFalseTrueFalse
- | BlockState::GlassPane_FalseFalseFalseFalseFalse
- | BlockState::WhiteStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::WhiteStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::OrangeStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::OrangeStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::MagentaStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::MagentaStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::LightBlueStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::LightBlueStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::YellowStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::YellowStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::LimeStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::LimeStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::PinkStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::PinkStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::GrayStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::GrayStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::LightGrayStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::LightGrayStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::CyanStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::CyanStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::PurpleStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::PurpleStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::BlueStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::BlueStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::BrownStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::BrownStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::GreenStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::GreenStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::RedStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::RedStainedGlassPane_FalseFalseFalseFalseFalse
- | BlockState::BlackStainedGlassPane_FalseFalseFalseTrueFalse
- | BlockState::BlackStainedGlassPane_FalseFalseFalseFalseFalse => &SHAPE2,
- BlockState::Chain_XTrue | BlockState::Chain_XFalse => &SHAPE118,
- BlockState::Chain_YTrue
- | BlockState::Chain_YFalse
- | BlockState::Bamboo__0None_0
- | BlockState::Bamboo__0None_1
- | BlockState::Bamboo__0Small_0
- | BlockState::Bamboo__0Small_1
- | BlockState::Bamboo__0Large_0
- | BlockState::Bamboo__0Large_1
- | BlockState::Bamboo__1None_0
- | BlockState::Bamboo__1None_1
- | BlockState::Bamboo__1Small_0
- | BlockState::Bamboo__1Small_1
- | BlockState::Bamboo__1Large_0
- | BlockState::Bamboo__1Large_1 => &SHAPE119,
- BlockState::Chain_ZTrue | BlockState::Chain_ZFalse => &SHAPE120,
- BlockState::LilyPad => &SHAPE122,
- BlockState::BrewingStand_TrueTrueTrue
- | BlockState::BrewingStand_TrueTrueFalse
- | BlockState::BrewingStand_TrueFalseTrue
- | BlockState::BrewingStand_TrueFalseFalse
- | BlockState::BrewingStand_FalseTrueTrue
- | BlockState::BrewingStand_FalseTrueFalse
- | BlockState::BrewingStand_FalseFalseTrue
- | BlockState::BrewingStand_FalseFalseFalse => &SHAPE123,
- BlockState::Cauldron
- | BlockState::WaterCauldron__1
- | BlockState::WaterCauldron__2
- | BlockState::WaterCauldron__3
- | BlockState::LavaCauldron
- | BlockState::PowderSnowCauldron__1
- | BlockState::PowderSnowCauldron__2
- | BlockState::PowderSnowCauldron__3 => &SHAPE124,
- BlockState::EndPortalFrame_TrueNorth
- | BlockState::EndPortalFrame_TrueSouth
- | BlockState::EndPortalFrame_TrueWest
- | BlockState::EndPortalFrame_TrueEast => &SHAPE125,
- BlockState::EndPortalFrame_FalseNorth
- | BlockState::EndPortalFrame_FalseSouth
- | BlockState::EndPortalFrame_FalseWest
- | BlockState::EndPortalFrame_FalseEast => &SHAPE126,
- BlockState::DragonEgg => &SHAPE59,
- BlockState::Cocoa__0North => &SHAPE127,
- BlockState::Cocoa__0South => &SHAPE128,
- BlockState::Cocoa__0West => &SHAPE129,
- BlockState::Cocoa__0East => &SHAPE130,
- BlockState::Cocoa__1North => &SHAPE131,
- BlockState::Cocoa__1South => &SHAPE132,
- BlockState::Cocoa__1West => &SHAPE133,
- BlockState::Cocoa__1East => &SHAPE134,
- BlockState::Cocoa__2North => &SHAPE135,
- BlockState::Cocoa__2South => &SHAPE136,
- BlockState::Cocoa__2West => &SHAPE137,
- BlockState::Cocoa__2East => &SHAPE138,
- BlockState::CobblestoneWall_NoneNoneNoneTrueTrueNone
- | BlockState::CobblestoneWall_NoneNoneNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneNoneNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneNoneNoneTrueFalseNone
- | BlockState::BrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::BrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::PrismarineWall_NoneNoneNoneTrueTrueNone
- | BlockState::PrismarineWall_NoneNoneNoneTrueFalseNone
- | BlockState::RedSandstoneWall_NoneNoneNoneTrueTrueNone
- | BlockState::RedSandstoneWall_NoneNoneNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::GraniteWall_NoneNoneNoneTrueTrueNone
- | BlockState::GraniteWall_NoneNoneNoneTrueFalseNone
- | BlockState::StoneBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::StoneBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::MudBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::MudBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::NetherBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::NetherBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::AndesiteWall_NoneNoneNoneTrueTrueNone
- | BlockState::AndesiteWall_NoneNoneNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::SandstoneWall_NoneNoneNoneTrueTrueNone
- | BlockState::SandstoneWall_NoneNoneNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::DioriteWall_NoneNoneNoneTrueTrueNone
- | BlockState::DioriteWall_NoneNoneNoneTrueFalseNone
- | BlockState::BlackstoneWall_NoneNoneNoneTrueTrueNone
- | BlockState::BlackstoneWall_NoneNoneNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneNoneNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneNoneNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneNoneNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneNoneNoneTrueFalseNone
- | BlockState::DeepslateTileWall_NoneNoneNoneTrueTrueNone
- | BlockState::DeepslateTileWall_NoneNoneNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneNoneNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneNoneNoneTrueFalseNone => &SHAPE139,
- BlockState::CobblestoneWall_NoneNoneNoneTrueTrueLow
- | BlockState::CobblestoneWall_NoneNoneNoneTrueTrueTall
- | BlockState::CobblestoneWall_NoneNoneNoneTrueFalseLow
- | BlockState::CobblestoneWall_NoneNoneNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneNoneNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneNoneNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneNoneNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneNoneNoneTrueFalseTall
- | BlockState::BrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::BrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::BrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::BrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::PrismarineWall_NoneNoneNoneTrueTrueLow
- | BlockState::PrismarineWall_NoneNoneNoneTrueTrueTall
- | BlockState::PrismarineWall_NoneNoneNoneTrueFalseLow
- | BlockState::PrismarineWall_NoneNoneNoneTrueFalseTall
- | BlockState::RedSandstoneWall_NoneNoneNoneTrueTrueLow
- | BlockState::RedSandstoneWall_NoneNoneNoneTrueTrueTall
- | BlockState::RedSandstoneWall_NoneNoneNoneTrueFalseLow
- | BlockState::RedSandstoneWall_NoneNoneNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::GraniteWall_NoneNoneNoneTrueTrueLow
- | BlockState::GraniteWall_NoneNoneNoneTrueTrueTall
- | BlockState::GraniteWall_NoneNoneNoneTrueFalseLow
- | BlockState::GraniteWall_NoneNoneNoneTrueFalseTall
- | BlockState::StoneBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::StoneBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::StoneBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::StoneBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::MudBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::MudBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::MudBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::MudBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::NetherBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::NetherBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::NetherBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::NetherBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::AndesiteWall_NoneNoneNoneTrueTrueLow
- | BlockState::AndesiteWall_NoneNoneNoneTrueTrueTall
- | BlockState::AndesiteWall_NoneNoneNoneTrueFalseLow
- | BlockState::AndesiteWall_NoneNoneNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::SandstoneWall_NoneNoneNoneTrueTrueLow
- | BlockState::SandstoneWall_NoneNoneNoneTrueTrueTall
- | BlockState::SandstoneWall_NoneNoneNoneTrueFalseLow
- | BlockState::SandstoneWall_NoneNoneNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::DioriteWall_NoneNoneNoneTrueTrueLow
- | BlockState::DioriteWall_NoneNoneNoneTrueTrueTall
- | BlockState::DioriteWall_NoneNoneNoneTrueFalseLow
- | BlockState::DioriteWall_NoneNoneNoneTrueFalseTall
- | BlockState::BlackstoneWall_NoneNoneNoneTrueTrueLow
- | BlockState::BlackstoneWall_NoneNoneNoneTrueTrueTall
- | BlockState::BlackstoneWall_NoneNoneNoneTrueFalseLow
- | BlockState::BlackstoneWall_NoneNoneNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneNoneNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneNoneNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneNoneNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneNoneNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneNoneNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneNoneNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneNoneNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneNoneNoneTrueFalseTall
- | BlockState::DeepslateTileWall_NoneNoneNoneTrueTrueLow
- | BlockState::DeepslateTileWall_NoneNoneNoneTrueTrueTall
- | BlockState::DeepslateTileWall_NoneNoneNoneTrueFalseLow
- | BlockState::DeepslateTileWall_NoneNoneNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneNoneNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneNoneNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneNoneNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneNoneNoneTrueFalseTall => &SHAPE140,
- BlockState::CobblestoneWall_NoneNoneNoneFalseTrueLow
- | BlockState::CobblestoneWall_NoneNoneNoneFalseTrueTall
- | BlockState::CobblestoneWall_NoneNoneNoneFalseFalseLow
- | BlockState::CobblestoneWall_NoneNoneNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneNoneNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneNoneNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneNoneNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneNoneNoneFalseFalseTall
- | BlockState::BrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::BrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::BrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::BrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::PrismarineWall_NoneNoneNoneFalseTrueLow
- | BlockState::PrismarineWall_NoneNoneNoneFalseTrueTall
- | BlockState::PrismarineWall_NoneNoneNoneFalseFalseLow
- | BlockState::PrismarineWall_NoneNoneNoneFalseFalseTall
- | BlockState::RedSandstoneWall_NoneNoneNoneFalseTrueLow
- | BlockState::RedSandstoneWall_NoneNoneNoneFalseTrueTall
- | BlockState::RedSandstoneWall_NoneNoneNoneFalseFalseLow
- | BlockState::RedSandstoneWall_NoneNoneNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::GraniteWall_NoneNoneNoneFalseTrueLow
- | BlockState::GraniteWall_NoneNoneNoneFalseTrueTall
- | BlockState::GraniteWall_NoneNoneNoneFalseFalseLow
- | BlockState::GraniteWall_NoneNoneNoneFalseFalseTall
- | BlockState::StoneBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::StoneBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::StoneBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::StoneBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::MudBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::MudBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::MudBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::MudBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::NetherBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::NetherBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::NetherBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::NetherBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::AndesiteWall_NoneNoneNoneFalseTrueLow
- | BlockState::AndesiteWall_NoneNoneNoneFalseTrueTall
- | BlockState::AndesiteWall_NoneNoneNoneFalseFalseLow
- | BlockState::AndesiteWall_NoneNoneNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::SandstoneWall_NoneNoneNoneFalseTrueLow
- | BlockState::SandstoneWall_NoneNoneNoneFalseTrueTall
- | BlockState::SandstoneWall_NoneNoneNoneFalseFalseLow
- | BlockState::SandstoneWall_NoneNoneNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::DioriteWall_NoneNoneNoneFalseTrueLow
- | BlockState::DioriteWall_NoneNoneNoneFalseTrueTall
- | BlockState::DioriteWall_NoneNoneNoneFalseFalseLow
- | BlockState::DioriteWall_NoneNoneNoneFalseFalseTall
- | BlockState::BlackstoneWall_NoneNoneNoneFalseTrueLow
- | BlockState::BlackstoneWall_NoneNoneNoneFalseTrueTall
- | BlockState::BlackstoneWall_NoneNoneNoneFalseFalseLow
- | BlockState::BlackstoneWall_NoneNoneNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneNoneNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneNoneNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneNoneNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneNoneNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneNoneNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneNoneNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneNoneNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneNoneNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneNoneNoneFalseFalseTall
- | BlockState::DeepslateTileWall_NoneNoneNoneFalseTrueLow
- | BlockState::DeepslateTileWall_NoneNoneNoneFalseTrueTall
- | BlockState::DeepslateTileWall_NoneNoneNoneFalseFalseLow
- | BlockState::DeepslateTileWall_NoneNoneNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneNoneNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneNoneNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneNoneNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneNoneNoneFalseFalseTall => &SHAPE141,
- BlockState::CobblestoneWall_NoneNoneLowTrueTrueNone
- | BlockState::CobblestoneWall_NoneNoneLowTrueFalseNone
- | BlockState::CobblestoneWall_NoneNoneTallTrueTrueNone
- | BlockState::CobblestoneWall_NoneNoneTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneNoneLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneNoneLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneNoneTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneNoneTallTrueFalseNone
- | BlockState::BrickWall_NoneNoneLowTrueTrueNone
- | BlockState::BrickWall_NoneNoneLowTrueFalseNone
- | BlockState::BrickWall_NoneNoneTallTrueTrueNone
- | BlockState::BrickWall_NoneNoneTallTrueFalseNone
- | BlockState::PrismarineWall_NoneNoneLowTrueTrueNone
- | BlockState::PrismarineWall_NoneNoneLowTrueFalseNone
- | BlockState::PrismarineWall_NoneNoneTallTrueTrueNone
- | BlockState::PrismarineWall_NoneNoneTallTrueFalseNone
- | BlockState::RedSandstoneWall_NoneNoneLowTrueTrueNone
- | BlockState::RedSandstoneWall_NoneNoneLowTrueFalseNone
- | BlockState::RedSandstoneWall_NoneNoneTallTrueTrueNone
- | BlockState::RedSandstoneWall_NoneNoneTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::GraniteWall_NoneNoneLowTrueTrueNone
- | BlockState::GraniteWall_NoneNoneLowTrueFalseNone
- | BlockState::GraniteWall_NoneNoneTallTrueTrueNone
- | BlockState::GraniteWall_NoneNoneTallTrueFalseNone
- | BlockState::StoneBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::StoneBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::StoneBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::StoneBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::MudBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::MudBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::MudBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::MudBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::NetherBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::NetherBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::NetherBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::NetherBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::AndesiteWall_NoneNoneLowTrueTrueNone
- | BlockState::AndesiteWall_NoneNoneLowTrueFalseNone
- | BlockState::AndesiteWall_NoneNoneTallTrueTrueNone
- | BlockState::AndesiteWall_NoneNoneTallTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::SandstoneWall_NoneNoneLowTrueTrueNone
- | BlockState::SandstoneWall_NoneNoneLowTrueFalseNone
- | BlockState::SandstoneWall_NoneNoneTallTrueTrueNone
- | BlockState::SandstoneWall_NoneNoneTallTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::DioriteWall_NoneNoneLowTrueTrueNone
- | BlockState::DioriteWall_NoneNoneLowTrueFalseNone
- | BlockState::DioriteWall_NoneNoneTallTrueTrueNone
- | BlockState::DioriteWall_NoneNoneTallTrueFalseNone
- | BlockState::BlackstoneWall_NoneNoneLowTrueTrueNone
- | BlockState::BlackstoneWall_NoneNoneLowTrueFalseNone
- | BlockState::BlackstoneWall_NoneNoneTallTrueTrueNone
- | BlockState::BlackstoneWall_NoneNoneTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneNoneLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneNoneLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneNoneTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneNoneTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneNoneLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneNoneLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneNoneTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneNoneTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneNoneLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneNoneLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneNoneTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneNoneTallTrueFalseNone
- | BlockState::DeepslateTileWall_NoneNoneLowTrueTrueNone
- | BlockState::DeepslateTileWall_NoneNoneLowTrueFalseNone
- | BlockState::DeepslateTileWall_NoneNoneTallTrueTrueNone
- | BlockState::DeepslateTileWall_NoneNoneTallTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneNoneLowTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneNoneLowTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneNoneTallTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneNoneTallTrueFalseNone => &SHAPE142,
- BlockState::CobblestoneWall_NoneNoneLowTrueTrueLow
- | BlockState::CobblestoneWall_NoneNoneLowTrueTrueTall
- | BlockState::CobblestoneWall_NoneNoneLowTrueFalseLow
- | BlockState::CobblestoneWall_NoneNoneLowTrueFalseTall
- | BlockState::CobblestoneWall_NoneNoneTallTrueTrueLow
- | BlockState::CobblestoneWall_NoneNoneTallTrueTrueTall
- | BlockState::CobblestoneWall_NoneNoneTallTrueFalseLow
- | BlockState::CobblestoneWall_NoneNoneTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneNoneLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneNoneLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneNoneLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneNoneLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneNoneTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneNoneTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneNoneTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneNoneTallTrueFalseTall
- | BlockState::BrickWall_NoneNoneLowTrueTrueLow
- | BlockState::BrickWall_NoneNoneLowTrueTrueTall
- | BlockState::BrickWall_NoneNoneLowTrueFalseLow
- | BlockState::BrickWall_NoneNoneLowTrueFalseTall
- | BlockState::BrickWall_NoneNoneTallTrueTrueLow
- | BlockState::BrickWall_NoneNoneTallTrueTrueTall
- | BlockState::BrickWall_NoneNoneTallTrueFalseLow
- | BlockState::BrickWall_NoneNoneTallTrueFalseTall
- | BlockState::PrismarineWall_NoneNoneLowTrueTrueLow
- | BlockState::PrismarineWall_NoneNoneLowTrueTrueTall
- | BlockState::PrismarineWall_NoneNoneLowTrueFalseLow
- | BlockState::PrismarineWall_NoneNoneLowTrueFalseTall
- | BlockState::PrismarineWall_NoneNoneTallTrueTrueLow
- | BlockState::PrismarineWall_NoneNoneTallTrueTrueTall
- | BlockState::PrismarineWall_NoneNoneTallTrueFalseLow
- | BlockState::PrismarineWall_NoneNoneTallTrueFalseTall
- | BlockState::RedSandstoneWall_NoneNoneLowTrueTrueLow
- | BlockState::RedSandstoneWall_NoneNoneLowTrueTrueTall
- | BlockState::RedSandstoneWall_NoneNoneLowTrueFalseLow
- | BlockState::RedSandstoneWall_NoneNoneLowTrueFalseTall
- | BlockState::RedSandstoneWall_NoneNoneTallTrueTrueLow
- | BlockState::RedSandstoneWall_NoneNoneTallTrueTrueTall
- | BlockState::RedSandstoneWall_NoneNoneTallTrueFalseLow
- | BlockState::RedSandstoneWall_NoneNoneTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::GraniteWall_NoneNoneLowTrueTrueLow
- | BlockState::GraniteWall_NoneNoneLowTrueTrueTall
- | BlockState::GraniteWall_NoneNoneLowTrueFalseLow
- | BlockState::GraniteWall_NoneNoneLowTrueFalseTall
- | BlockState::GraniteWall_NoneNoneTallTrueTrueLow
- | BlockState::GraniteWall_NoneNoneTallTrueTrueTall
- | BlockState::GraniteWall_NoneNoneTallTrueFalseLow
- | BlockState::GraniteWall_NoneNoneTallTrueFalseTall
- | BlockState::StoneBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::StoneBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::StoneBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::StoneBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::StoneBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::StoneBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::StoneBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::StoneBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::MudBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::MudBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::MudBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::MudBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::MudBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::MudBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::MudBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::MudBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::NetherBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::NetherBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::NetherBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::NetherBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::NetherBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::NetherBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::NetherBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::NetherBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::AndesiteWall_NoneNoneLowTrueTrueLow
- | BlockState::AndesiteWall_NoneNoneLowTrueTrueTall
- | BlockState::AndesiteWall_NoneNoneLowTrueFalseLow
- | BlockState::AndesiteWall_NoneNoneLowTrueFalseTall
- | BlockState::AndesiteWall_NoneNoneTallTrueTrueLow
- | BlockState::AndesiteWall_NoneNoneTallTrueTrueTall
- | BlockState::AndesiteWall_NoneNoneTallTrueFalseLow
- | BlockState::AndesiteWall_NoneNoneTallTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::SandstoneWall_NoneNoneLowTrueTrueLow
- | BlockState::SandstoneWall_NoneNoneLowTrueTrueTall
- | BlockState::SandstoneWall_NoneNoneLowTrueFalseLow
- | BlockState::SandstoneWall_NoneNoneLowTrueFalseTall
- | BlockState::SandstoneWall_NoneNoneTallTrueTrueLow
- | BlockState::SandstoneWall_NoneNoneTallTrueTrueTall
- | BlockState::SandstoneWall_NoneNoneTallTrueFalseLow
- | BlockState::SandstoneWall_NoneNoneTallTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::DioriteWall_NoneNoneLowTrueTrueLow
- | BlockState::DioriteWall_NoneNoneLowTrueTrueTall
- | BlockState::DioriteWall_NoneNoneLowTrueFalseLow
- | BlockState::DioriteWall_NoneNoneLowTrueFalseTall
- | BlockState::DioriteWall_NoneNoneTallTrueTrueLow
- | BlockState::DioriteWall_NoneNoneTallTrueTrueTall
- | BlockState::DioriteWall_NoneNoneTallTrueFalseLow
- | BlockState::DioriteWall_NoneNoneTallTrueFalseTall
- | BlockState::BlackstoneWall_NoneNoneLowTrueTrueLow
- | BlockState::BlackstoneWall_NoneNoneLowTrueTrueTall
- | BlockState::BlackstoneWall_NoneNoneLowTrueFalseLow
- | BlockState::BlackstoneWall_NoneNoneLowTrueFalseTall
- | BlockState::BlackstoneWall_NoneNoneTallTrueTrueLow
- | BlockState::BlackstoneWall_NoneNoneTallTrueTrueTall
- | BlockState::BlackstoneWall_NoneNoneTallTrueFalseLow
- | BlockState::BlackstoneWall_NoneNoneTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneNoneLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneNoneLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneNoneLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneNoneLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneNoneTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneNoneTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneNoneTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneNoneTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneNoneLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneNoneLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneNoneLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneNoneLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneNoneTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneNoneTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneNoneTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneNoneTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneNoneLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneNoneLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneNoneLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneNoneLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneNoneTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneNoneTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneNoneTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneNoneTallTrueFalseTall
- | BlockState::DeepslateTileWall_NoneNoneLowTrueTrueLow
- | BlockState::DeepslateTileWall_NoneNoneLowTrueTrueTall
- | BlockState::DeepslateTileWall_NoneNoneLowTrueFalseLow
- | BlockState::DeepslateTileWall_NoneNoneLowTrueFalseTall
- | BlockState::DeepslateTileWall_NoneNoneTallTrueTrueLow
- | BlockState::DeepslateTileWall_NoneNoneTallTrueTrueTall
- | BlockState::DeepslateTileWall_NoneNoneTallTrueFalseLow
- | BlockState::DeepslateTileWall_NoneNoneTallTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneNoneLowTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneNoneLowTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneNoneLowTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneNoneLowTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneNoneTallTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneNoneTallTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneNoneTallTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneNoneTallTrueFalseTall => &SHAPE143,
- BlockState::CobblestoneWall_NoneNoneLowFalseTrueNone
- | BlockState::CobblestoneWall_NoneNoneLowFalseFalseNone
- | BlockState::CobblestoneWall_NoneNoneTallFalseTrueNone
- | BlockState::CobblestoneWall_NoneNoneTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneNoneLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneNoneLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneNoneTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneNoneTallFalseFalseNone
- | BlockState::BrickWall_NoneNoneLowFalseTrueNone
- | BlockState::BrickWall_NoneNoneLowFalseFalseNone
- | BlockState::BrickWall_NoneNoneTallFalseTrueNone
- | BlockState::BrickWall_NoneNoneTallFalseFalseNone
- | BlockState::PrismarineWall_NoneNoneLowFalseTrueNone
- | BlockState::PrismarineWall_NoneNoneLowFalseFalseNone
- | BlockState::PrismarineWall_NoneNoneTallFalseTrueNone
- | BlockState::PrismarineWall_NoneNoneTallFalseFalseNone
- | BlockState::RedSandstoneWall_NoneNoneLowFalseTrueNone
- | BlockState::RedSandstoneWall_NoneNoneLowFalseFalseNone
- | BlockState::RedSandstoneWall_NoneNoneTallFalseTrueNone
- | BlockState::RedSandstoneWall_NoneNoneTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::GraniteWall_NoneNoneLowFalseTrueNone
- | BlockState::GraniteWall_NoneNoneLowFalseFalseNone
- | BlockState::GraniteWall_NoneNoneTallFalseTrueNone
- | BlockState::GraniteWall_NoneNoneTallFalseFalseNone
- | BlockState::StoneBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::StoneBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::StoneBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::StoneBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::MudBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::MudBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::MudBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::MudBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::NetherBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::NetherBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::NetherBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::NetherBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::AndesiteWall_NoneNoneLowFalseTrueNone
- | BlockState::AndesiteWall_NoneNoneLowFalseFalseNone
- | BlockState::AndesiteWall_NoneNoneTallFalseTrueNone
- | BlockState::AndesiteWall_NoneNoneTallFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::SandstoneWall_NoneNoneLowFalseTrueNone
- | BlockState::SandstoneWall_NoneNoneLowFalseFalseNone
- | BlockState::SandstoneWall_NoneNoneTallFalseTrueNone
- | BlockState::SandstoneWall_NoneNoneTallFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::DioriteWall_NoneNoneLowFalseTrueNone
- | BlockState::DioriteWall_NoneNoneLowFalseFalseNone
- | BlockState::DioriteWall_NoneNoneTallFalseTrueNone
- | BlockState::DioriteWall_NoneNoneTallFalseFalseNone
- | BlockState::BlackstoneWall_NoneNoneLowFalseTrueNone
- | BlockState::BlackstoneWall_NoneNoneLowFalseFalseNone
- | BlockState::BlackstoneWall_NoneNoneTallFalseTrueNone
- | BlockState::BlackstoneWall_NoneNoneTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneNoneLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneNoneLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneNoneTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneNoneTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneNoneLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneNoneLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneNoneTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneNoneTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneNoneLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneNoneLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneNoneTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneNoneTallFalseFalseNone
- | BlockState::DeepslateTileWall_NoneNoneLowFalseTrueNone
- | BlockState::DeepslateTileWall_NoneNoneLowFalseFalseNone
- | BlockState::DeepslateTileWall_NoneNoneTallFalseTrueNone
- | BlockState::DeepslateTileWall_NoneNoneTallFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneNoneLowFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneNoneLowFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneNoneTallFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneNoneTallFalseFalseNone => &SHAPE144,
- BlockState::CobblestoneWall_NoneNoneLowFalseTrueLow
- | BlockState::CobblestoneWall_NoneNoneLowFalseTrueTall
- | BlockState::CobblestoneWall_NoneNoneLowFalseFalseLow
- | BlockState::CobblestoneWall_NoneNoneLowFalseFalseTall
- | BlockState::CobblestoneWall_NoneNoneTallFalseTrueLow
- | BlockState::CobblestoneWall_NoneNoneTallFalseTrueTall
- | BlockState::CobblestoneWall_NoneNoneTallFalseFalseLow
- | BlockState::CobblestoneWall_NoneNoneTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneNoneLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneNoneLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneNoneLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneNoneLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneNoneTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneNoneTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneNoneTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneNoneTallFalseFalseTall
- | BlockState::BrickWall_NoneNoneLowFalseTrueLow
- | BlockState::BrickWall_NoneNoneLowFalseTrueTall
- | BlockState::BrickWall_NoneNoneLowFalseFalseLow
- | BlockState::BrickWall_NoneNoneLowFalseFalseTall
- | BlockState::BrickWall_NoneNoneTallFalseTrueLow
- | BlockState::BrickWall_NoneNoneTallFalseTrueTall
- | BlockState::BrickWall_NoneNoneTallFalseFalseLow
- | BlockState::BrickWall_NoneNoneTallFalseFalseTall
- | BlockState::PrismarineWall_NoneNoneLowFalseTrueLow
- | BlockState::PrismarineWall_NoneNoneLowFalseTrueTall
- | BlockState::PrismarineWall_NoneNoneLowFalseFalseLow
- | BlockState::PrismarineWall_NoneNoneLowFalseFalseTall
- | BlockState::PrismarineWall_NoneNoneTallFalseTrueLow
- | BlockState::PrismarineWall_NoneNoneTallFalseTrueTall
- | BlockState::PrismarineWall_NoneNoneTallFalseFalseLow
- | BlockState::PrismarineWall_NoneNoneTallFalseFalseTall
- | BlockState::RedSandstoneWall_NoneNoneLowFalseTrueLow
- | BlockState::RedSandstoneWall_NoneNoneLowFalseTrueTall
- | BlockState::RedSandstoneWall_NoneNoneLowFalseFalseLow
- | BlockState::RedSandstoneWall_NoneNoneLowFalseFalseTall
- | BlockState::RedSandstoneWall_NoneNoneTallFalseTrueLow
- | BlockState::RedSandstoneWall_NoneNoneTallFalseTrueTall
- | BlockState::RedSandstoneWall_NoneNoneTallFalseFalseLow
- | BlockState::RedSandstoneWall_NoneNoneTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::GraniteWall_NoneNoneLowFalseTrueLow
- | BlockState::GraniteWall_NoneNoneLowFalseTrueTall
- | BlockState::GraniteWall_NoneNoneLowFalseFalseLow
- | BlockState::GraniteWall_NoneNoneLowFalseFalseTall
- | BlockState::GraniteWall_NoneNoneTallFalseTrueLow
- | BlockState::GraniteWall_NoneNoneTallFalseTrueTall
- | BlockState::GraniteWall_NoneNoneTallFalseFalseLow
- | BlockState::GraniteWall_NoneNoneTallFalseFalseTall
- | BlockState::StoneBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::StoneBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::StoneBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::StoneBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::StoneBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::StoneBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::StoneBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::StoneBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::MudBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::MudBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::MudBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::MudBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::MudBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::MudBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::MudBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::MudBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::NetherBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::NetherBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::NetherBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::NetherBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::NetherBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::NetherBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::NetherBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::NetherBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::AndesiteWall_NoneNoneLowFalseTrueLow
- | BlockState::AndesiteWall_NoneNoneLowFalseTrueTall
- | BlockState::AndesiteWall_NoneNoneLowFalseFalseLow
- | BlockState::AndesiteWall_NoneNoneLowFalseFalseTall
- | BlockState::AndesiteWall_NoneNoneTallFalseTrueLow
- | BlockState::AndesiteWall_NoneNoneTallFalseTrueTall
- | BlockState::AndesiteWall_NoneNoneTallFalseFalseLow
- | BlockState::AndesiteWall_NoneNoneTallFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::SandstoneWall_NoneNoneLowFalseTrueLow
- | BlockState::SandstoneWall_NoneNoneLowFalseTrueTall
- | BlockState::SandstoneWall_NoneNoneLowFalseFalseLow
- | BlockState::SandstoneWall_NoneNoneLowFalseFalseTall
- | BlockState::SandstoneWall_NoneNoneTallFalseTrueLow
- | BlockState::SandstoneWall_NoneNoneTallFalseTrueTall
- | BlockState::SandstoneWall_NoneNoneTallFalseFalseLow
- | BlockState::SandstoneWall_NoneNoneTallFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::DioriteWall_NoneNoneLowFalseTrueLow
- | BlockState::DioriteWall_NoneNoneLowFalseTrueTall
- | BlockState::DioriteWall_NoneNoneLowFalseFalseLow
- | BlockState::DioriteWall_NoneNoneLowFalseFalseTall
- | BlockState::DioriteWall_NoneNoneTallFalseTrueLow
- | BlockState::DioriteWall_NoneNoneTallFalseTrueTall
- | BlockState::DioriteWall_NoneNoneTallFalseFalseLow
- | BlockState::DioriteWall_NoneNoneTallFalseFalseTall
- | BlockState::BlackstoneWall_NoneNoneLowFalseTrueLow
- | BlockState::BlackstoneWall_NoneNoneLowFalseTrueTall
- | BlockState::BlackstoneWall_NoneNoneLowFalseFalseLow
- | BlockState::BlackstoneWall_NoneNoneLowFalseFalseTall
- | BlockState::BlackstoneWall_NoneNoneTallFalseTrueLow
- | BlockState::BlackstoneWall_NoneNoneTallFalseTrueTall
- | BlockState::BlackstoneWall_NoneNoneTallFalseFalseLow
- | BlockState::BlackstoneWall_NoneNoneTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneNoneTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneNoneLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneNoneLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneNoneLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneNoneLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneNoneTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneNoneTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneNoneTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneNoneTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneNoneLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneNoneLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneNoneLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneNoneLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneNoneTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneNoneTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneNoneTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneNoneTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneNoneLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneNoneLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneNoneLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneNoneLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneNoneTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneNoneTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneNoneTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneNoneTallFalseFalseTall
- | BlockState::DeepslateTileWall_NoneNoneLowFalseTrueLow
- | BlockState::DeepslateTileWall_NoneNoneLowFalseTrueTall
- | BlockState::DeepslateTileWall_NoneNoneLowFalseFalseLow
- | BlockState::DeepslateTileWall_NoneNoneLowFalseFalseTall
- | BlockState::DeepslateTileWall_NoneNoneTallFalseTrueLow
- | BlockState::DeepslateTileWall_NoneNoneTallFalseTrueTall
- | BlockState::DeepslateTileWall_NoneNoneTallFalseFalseLow
- | BlockState::DeepslateTileWall_NoneNoneTallFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneNoneLowFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneNoneLowFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneNoneLowFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneNoneLowFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneNoneTallFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneNoneTallFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneNoneTallFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneNoneTallFalseFalseTall => &SHAPE145,
- BlockState::CobblestoneWall_NoneLowNoneTrueTrueNone
- | BlockState::CobblestoneWall_NoneLowNoneTrueFalseNone
- | BlockState::CobblestoneWall_NoneTallNoneTrueTrueNone
- | BlockState::CobblestoneWall_NoneTallNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneLowNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneLowNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneTallNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneTallNoneTrueFalseNone
- | BlockState::BrickWall_NoneLowNoneTrueTrueNone
- | BlockState::BrickWall_NoneLowNoneTrueFalseNone
- | BlockState::BrickWall_NoneTallNoneTrueTrueNone
- | BlockState::BrickWall_NoneTallNoneTrueFalseNone
- | BlockState::PrismarineWall_NoneLowNoneTrueTrueNone
- | BlockState::PrismarineWall_NoneLowNoneTrueFalseNone
- | BlockState::PrismarineWall_NoneTallNoneTrueTrueNone
- | BlockState::PrismarineWall_NoneTallNoneTrueFalseNone
- | BlockState::RedSandstoneWall_NoneLowNoneTrueTrueNone
- | BlockState::RedSandstoneWall_NoneLowNoneTrueFalseNone
- | BlockState::RedSandstoneWall_NoneTallNoneTrueTrueNone
- | BlockState::RedSandstoneWall_NoneTallNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::GraniteWall_NoneLowNoneTrueTrueNone
- | BlockState::GraniteWall_NoneLowNoneTrueFalseNone
- | BlockState::GraniteWall_NoneTallNoneTrueTrueNone
- | BlockState::GraniteWall_NoneTallNoneTrueFalseNone
- | BlockState::StoneBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::StoneBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::StoneBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::StoneBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::MudBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::MudBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::MudBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::MudBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::NetherBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::NetherBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::NetherBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::NetherBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::AndesiteWall_NoneLowNoneTrueTrueNone
- | BlockState::AndesiteWall_NoneLowNoneTrueFalseNone
- | BlockState::AndesiteWall_NoneTallNoneTrueTrueNone
- | BlockState::AndesiteWall_NoneTallNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::SandstoneWall_NoneLowNoneTrueTrueNone
- | BlockState::SandstoneWall_NoneLowNoneTrueFalseNone
- | BlockState::SandstoneWall_NoneTallNoneTrueTrueNone
- | BlockState::SandstoneWall_NoneTallNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::DioriteWall_NoneLowNoneTrueTrueNone
- | BlockState::DioriteWall_NoneLowNoneTrueFalseNone
- | BlockState::DioriteWall_NoneTallNoneTrueTrueNone
- | BlockState::DioriteWall_NoneTallNoneTrueFalseNone
- | BlockState::BlackstoneWall_NoneLowNoneTrueTrueNone
- | BlockState::BlackstoneWall_NoneLowNoneTrueFalseNone
- | BlockState::BlackstoneWall_NoneTallNoneTrueTrueNone
- | BlockState::BlackstoneWall_NoneTallNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneLowNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneLowNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneTallNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneTallNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneLowNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneLowNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneTallNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneTallNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneLowNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneLowNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneTallNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneTallNoneTrueFalseNone
- | BlockState::DeepslateTileWall_NoneLowNoneTrueTrueNone
- | BlockState::DeepslateTileWall_NoneLowNoneTrueFalseNone
- | BlockState::DeepslateTileWall_NoneTallNoneTrueTrueNone
- | BlockState::DeepslateTileWall_NoneTallNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneLowNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneLowNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneTallNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneTallNoneTrueFalseNone => &SHAPE146,
- BlockState::CobblestoneWall_NoneLowNoneTrueTrueLow
- | BlockState::CobblestoneWall_NoneLowNoneTrueTrueTall
- | BlockState::CobblestoneWall_NoneLowNoneTrueFalseLow
- | BlockState::CobblestoneWall_NoneLowNoneTrueFalseTall
- | BlockState::CobblestoneWall_NoneTallNoneTrueTrueLow
- | BlockState::CobblestoneWall_NoneTallNoneTrueTrueTall
- | BlockState::CobblestoneWall_NoneTallNoneTrueFalseLow
- | BlockState::CobblestoneWall_NoneTallNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneLowNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneLowNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneLowNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneLowNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneTallNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneTallNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneTallNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneTallNoneTrueFalseTall
- | BlockState::BrickWall_NoneLowNoneTrueTrueLow
- | BlockState::BrickWall_NoneLowNoneTrueTrueTall
- | BlockState::BrickWall_NoneLowNoneTrueFalseLow
- | BlockState::BrickWall_NoneLowNoneTrueFalseTall
- | BlockState::BrickWall_NoneTallNoneTrueTrueLow
- | BlockState::BrickWall_NoneTallNoneTrueTrueTall
- | BlockState::BrickWall_NoneTallNoneTrueFalseLow
- | BlockState::BrickWall_NoneTallNoneTrueFalseTall
- | BlockState::PrismarineWall_NoneLowNoneTrueTrueLow
- | BlockState::PrismarineWall_NoneLowNoneTrueTrueTall
- | BlockState::PrismarineWall_NoneLowNoneTrueFalseLow
- | BlockState::PrismarineWall_NoneLowNoneTrueFalseTall
- | BlockState::PrismarineWall_NoneTallNoneTrueTrueLow
- | BlockState::PrismarineWall_NoneTallNoneTrueTrueTall
- | BlockState::PrismarineWall_NoneTallNoneTrueFalseLow
- | BlockState::PrismarineWall_NoneTallNoneTrueFalseTall
- | BlockState::RedSandstoneWall_NoneLowNoneTrueTrueLow
- | BlockState::RedSandstoneWall_NoneLowNoneTrueTrueTall
- | BlockState::RedSandstoneWall_NoneLowNoneTrueFalseLow
- | BlockState::RedSandstoneWall_NoneLowNoneTrueFalseTall
- | BlockState::RedSandstoneWall_NoneTallNoneTrueTrueLow
- | BlockState::RedSandstoneWall_NoneTallNoneTrueTrueTall
- | BlockState::RedSandstoneWall_NoneTallNoneTrueFalseLow
- | BlockState::RedSandstoneWall_NoneTallNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::GraniteWall_NoneLowNoneTrueTrueLow
- | BlockState::GraniteWall_NoneLowNoneTrueTrueTall
- | BlockState::GraniteWall_NoneLowNoneTrueFalseLow
- | BlockState::GraniteWall_NoneLowNoneTrueFalseTall
- | BlockState::GraniteWall_NoneTallNoneTrueTrueLow
- | BlockState::GraniteWall_NoneTallNoneTrueTrueTall
- | BlockState::GraniteWall_NoneTallNoneTrueFalseLow
- | BlockState::GraniteWall_NoneTallNoneTrueFalseTall
- | BlockState::StoneBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::StoneBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::StoneBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::StoneBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::StoneBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::StoneBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::StoneBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::StoneBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::MudBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::MudBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::MudBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::MudBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::MudBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::MudBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::MudBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::MudBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::NetherBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::NetherBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::NetherBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::NetherBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::NetherBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::NetherBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::NetherBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::NetherBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::AndesiteWall_NoneLowNoneTrueTrueLow
- | BlockState::AndesiteWall_NoneLowNoneTrueTrueTall
- | BlockState::AndesiteWall_NoneLowNoneTrueFalseLow
- | BlockState::AndesiteWall_NoneLowNoneTrueFalseTall
- | BlockState::AndesiteWall_NoneTallNoneTrueTrueLow
- | BlockState::AndesiteWall_NoneTallNoneTrueTrueTall
- | BlockState::AndesiteWall_NoneTallNoneTrueFalseLow
- | BlockState::AndesiteWall_NoneTallNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::SandstoneWall_NoneLowNoneTrueTrueLow
- | BlockState::SandstoneWall_NoneLowNoneTrueTrueTall
- | BlockState::SandstoneWall_NoneLowNoneTrueFalseLow
- | BlockState::SandstoneWall_NoneLowNoneTrueFalseTall
- | BlockState::SandstoneWall_NoneTallNoneTrueTrueLow
- | BlockState::SandstoneWall_NoneTallNoneTrueTrueTall
- | BlockState::SandstoneWall_NoneTallNoneTrueFalseLow
- | BlockState::SandstoneWall_NoneTallNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::DioriteWall_NoneLowNoneTrueTrueLow
- | BlockState::DioriteWall_NoneLowNoneTrueTrueTall
- | BlockState::DioriteWall_NoneLowNoneTrueFalseLow
- | BlockState::DioriteWall_NoneLowNoneTrueFalseTall
- | BlockState::DioriteWall_NoneTallNoneTrueTrueLow
- | BlockState::DioriteWall_NoneTallNoneTrueTrueTall
- | BlockState::DioriteWall_NoneTallNoneTrueFalseLow
- | BlockState::DioriteWall_NoneTallNoneTrueFalseTall
- | BlockState::BlackstoneWall_NoneLowNoneTrueTrueLow
- | BlockState::BlackstoneWall_NoneLowNoneTrueTrueTall
- | BlockState::BlackstoneWall_NoneLowNoneTrueFalseLow
- | BlockState::BlackstoneWall_NoneLowNoneTrueFalseTall
- | BlockState::BlackstoneWall_NoneTallNoneTrueTrueLow
- | BlockState::BlackstoneWall_NoneTallNoneTrueTrueTall
- | BlockState::BlackstoneWall_NoneTallNoneTrueFalseLow
- | BlockState::BlackstoneWall_NoneTallNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneLowNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneLowNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneLowNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneLowNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneTallNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneTallNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneTallNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneTallNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneLowNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneLowNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneLowNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneLowNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneTallNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneTallNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneTallNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneTallNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneLowNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneLowNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneLowNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneLowNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneTallNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneTallNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneTallNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneTallNoneTrueFalseTall
- | BlockState::DeepslateTileWall_NoneLowNoneTrueTrueLow
- | BlockState::DeepslateTileWall_NoneLowNoneTrueTrueTall
- | BlockState::DeepslateTileWall_NoneLowNoneTrueFalseLow
- | BlockState::DeepslateTileWall_NoneLowNoneTrueFalseTall
- | BlockState::DeepslateTileWall_NoneTallNoneTrueTrueLow
- | BlockState::DeepslateTileWall_NoneTallNoneTrueTrueTall
- | BlockState::DeepslateTileWall_NoneTallNoneTrueFalseLow
- | BlockState::DeepslateTileWall_NoneTallNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneLowNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneLowNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneLowNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneLowNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneTallNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneTallNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneTallNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneTallNoneTrueFalseTall => &SHAPE147,
- BlockState::CobblestoneWall_NoneLowNoneFalseTrueNone
- | BlockState::CobblestoneWall_NoneLowNoneFalseFalseNone
- | BlockState::CobblestoneWall_NoneTallNoneFalseTrueNone
- | BlockState::CobblestoneWall_NoneTallNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneLowNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneLowNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneTallNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneTallNoneFalseFalseNone
- | BlockState::BrickWall_NoneLowNoneFalseTrueNone
- | BlockState::BrickWall_NoneLowNoneFalseFalseNone
- | BlockState::BrickWall_NoneTallNoneFalseTrueNone
- | BlockState::BrickWall_NoneTallNoneFalseFalseNone
- | BlockState::PrismarineWall_NoneLowNoneFalseTrueNone
- | BlockState::PrismarineWall_NoneLowNoneFalseFalseNone
- | BlockState::PrismarineWall_NoneTallNoneFalseTrueNone
- | BlockState::PrismarineWall_NoneTallNoneFalseFalseNone
- | BlockState::RedSandstoneWall_NoneLowNoneFalseTrueNone
- | BlockState::RedSandstoneWall_NoneLowNoneFalseFalseNone
- | BlockState::RedSandstoneWall_NoneTallNoneFalseTrueNone
- | BlockState::RedSandstoneWall_NoneTallNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::GraniteWall_NoneLowNoneFalseTrueNone
- | BlockState::GraniteWall_NoneLowNoneFalseFalseNone
- | BlockState::GraniteWall_NoneTallNoneFalseTrueNone
- | BlockState::GraniteWall_NoneTallNoneFalseFalseNone
- | BlockState::StoneBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::StoneBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::StoneBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::StoneBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::MudBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::MudBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::MudBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::MudBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::NetherBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::NetherBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::NetherBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::NetherBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::AndesiteWall_NoneLowNoneFalseTrueNone
- | BlockState::AndesiteWall_NoneLowNoneFalseFalseNone
- | BlockState::AndesiteWall_NoneTallNoneFalseTrueNone
- | BlockState::AndesiteWall_NoneTallNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::SandstoneWall_NoneLowNoneFalseTrueNone
- | BlockState::SandstoneWall_NoneLowNoneFalseFalseNone
- | BlockState::SandstoneWall_NoneTallNoneFalseTrueNone
- | BlockState::SandstoneWall_NoneTallNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::DioriteWall_NoneLowNoneFalseTrueNone
- | BlockState::DioriteWall_NoneLowNoneFalseFalseNone
- | BlockState::DioriteWall_NoneTallNoneFalseTrueNone
- | BlockState::DioriteWall_NoneTallNoneFalseFalseNone
- | BlockState::BlackstoneWall_NoneLowNoneFalseTrueNone
- | BlockState::BlackstoneWall_NoneLowNoneFalseFalseNone
- | BlockState::BlackstoneWall_NoneTallNoneFalseTrueNone
- | BlockState::BlackstoneWall_NoneTallNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneLowNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneLowNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneTallNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneTallNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneLowNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneLowNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneTallNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneTallNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneLowNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneLowNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneTallNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneTallNoneFalseFalseNone
- | BlockState::DeepslateTileWall_NoneLowNoneFalseTrueNone
- | BlockState::DeepslateTileWall_NoneLowNoneFalseFalseNone
- | BlockState::DeepslateTileWall_NoneTallNoneFalseTrueNone
- | BlockState::DeepslateTileWall_NoneTallNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneLowNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneLowNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneTallNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneTallNoneFalseFalseNone => &SHAPE148,
- BlockState::CobblestoneWall_NoneLowNoneFalseTrueLow
- | BlockState::CobblestoneWall_NoneLowNoneFalseTrueTall
- | BlockState::CobblestoneWall_NoneLowNoneFalseFalseLow
- | BlockState::CobblestoneWall_NoneLowNoneFalseFalseTall
- | BlockState::CobblestoneWall_NoneTallNoneFalseTrueLow
- | BlockState::CobblestoneWall_NoneTallNoneFalseTrueTall
- | BlockState::CobblestoneWall_NoneTallNoneFalseFalseLow
- | BlockState::CobblestoneWall_NoneTallNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneLowNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneLowNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneLowNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneLowNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneTallNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneTallNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneTallNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneTallNoneFalseFalseTall
- | BlockState::BrickWall_NoneLowNoneFalseTrueLow
- | BlockState::BrickWall_NoneLowNoneFalseTrueTall
- | BlockState::BrickWall_NoneLowNoneFalseFalseLow
- | BlockState::BrickWall_NoneLowNoneFalseFalseTall
- | BlockState::BrickWall_NoneTallNoneFalseTrueLow
- | BlockState::BrickWall_NoneTallNoneFalseTrueTall
- | BlockState::BrickWall_NoneTallNoneFalseFalseLow
- | BlockState::BrickWall_NoneTallNoneFalseFalseTall
- | BlockState::PrismarineWall_NoneLowNoneFalseTrueLow
- | BlockState::PrismarineWall_NoneLowNoneFalseTrueTall
- | BlockState::PrismarineWall_NoneLowNoneFalseFalseLow
- | BlockState::PrismarineWall_NoneLowNoneFalseFalseTall
- | BlockState::PrismarineWall_NoneTallNoneFalseTrueLow
- | BlockState::PrismarineWall_NoneTallNoneFalseTrueTall
- | BlockState::PrismarineWall_NoneTallNoneFalseFalseLow
- | BlockState::PrismarineWall_NoneTallNoneFalseFalseTall
- | BlockState::RedSandstoneWall_NoneLowNoneFalseTrueLow
- | BlockState::RedSandstoneWall_NoneLowNoneFalseTrueTall
- | BlockState::RedSandstoneWall_NoneLowNoneFalseFalseLow
- | BlockState::RedSandstoneWall_NoneLowNoneFalseFalseTall
- | BlockState::RedSandstoneWall_NoneTallNoneFalseTrueLow
- | BlockState::RedSandstoneWall_NoneTallNoneFalseTrueTall
- | BlockState::RedSandstoneWall_NoneTallNoneFalseFalseLow
- | BlockState::RedSandstoneWall_NoneTallNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::GraniteWall_NoneLowNoneFalseTrueLow
- | BlockState::GraniteWall_NoneLowNoneFalseTrueTall
- | BlockState::GraniteWall_NoneLowNoneFalseFalseLow
- | BlockState::GraniteWall_NoneLowNoneFalseFalseTall
- | BlockState::GraniteWall_NoneTallNoneFalseTrueLow
- | BlockState::GraniteWall_NoneTallNoneFalseTrueTall
- | BlockState::GraniteWall_NoneTallNoneFalseFalseLow
- | BlockState::GraniteWall_NoneTallNoneFalseFalseTall
- | BlockState::StoneBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::StoneBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::StoneBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::StoneBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::StoneBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::StoneBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::StoneBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::StoneBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::MudBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::MudBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::MudBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::MudBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::MudBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::MudBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::MudBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::MudBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::NetherBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::NetherBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::NetherBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::NetherBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::NetherBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::NetherBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::NetherBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::NetherBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::AndesiteWall_NoneLowNoneFalseTrueLow
- | BlockState::AndesiteWall_NoneLowNoneFalseTrueTall
- | BlockState::AndesiteWall_NoneLowNoneFalseFalseLow
- | BlockState::AndesiteWall_NoneLowNoneFalseFalseTall
- | BlockState::AndesiteWall_NoneTallNoneFalseTrueLow
- | BlockState::AndesiteWall_NoneTallNoneFalseTrueTall
- | BlockState::AndesiteWall_NoneTallNoneFalseFalseLow
- | BlockState::AndesiteWall_NoneTallNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::SandstoneWall_NoneLowNoneFalseTrueLow
- | BlockState::SandstoneWall_NoneLowNoneFalseTrueTall
- | BlockState::SandstoneWall_NoneLowNoneFalseFalseLow
- | BlockState::SandstoneWall_NoneLowNoneFalseFalseTall
- | BlockState::SandstoneWall_NoneTallNoneFalseTrueLow
- | BlockState::SandstoneWall_NoneTallNoneFalseTrueTall
- | BlockState::SandstoneWall_NoneTallNoneFalseFalseLow
- | BlockState::SandstoneWall_NoneTallNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::DioriteWall_NoneLowNoneFalseTrueLow
- | BlockState::DioriteWall_NoneLowNoneFalseTrueTall
- | BlockState::DioriteWall_NoneLowNoneFalseFalseLow
- | BlockState::DioriteWall_NoneLowNoneFalseFalseTall
- | BlockState::DioriteWall_NoneTallNoneFalseTrueLow
- | BlockState::DioriteWall_NoneTallNoneFalseTrueTall
- | BlockState::DioriteWall_NoneTallNoneFalseFalseLow
- | BlockState::DioriteWall_NoneTallNoneFalseFalseTall
- | BlockState::BlackstoneWall_NoneLowNoneFalseTrueLow
- | BlockState::BlackstoneWall_NoneLowNoneFalseTrueTall
- | BlockState::BlackstoneWall_NoneLowNoneFalseFalseLow
- | BlockState::BlackstoneWall_NoneLowNoneFalseFalseTall
- | BlockState::BlackstoneWall_NoneTallNoneFalseTrueLow
- | BlockState::BlackstoneWall_NoneTallNoneFalseTrueTall
- | BlockState::BlackstoneWall_NoneTallNoneFalseFalseLow
- | BlockState::BlackstoneWall_NoneTallNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneLowNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneLowNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneLowNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneLowNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneTallNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneTallNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneTallNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneTallNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneLowNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneLowNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneLowNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneLowNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneTallNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneTallNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneTallNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneTallNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneLowNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneLowNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneLowNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneLowNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneTallNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneTallNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneTallNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneTallNoneFalseFalseTall
- | BlockState::DeepslateTileWall_NoneLowNoneFalseTrueLow
- | BlockState::DeepslateTileWall_NoneLowNoneFalseTrueTall
- | BlockState::DeepslateTileWall_NoneLowNoneFalseFalseLow
- | BlockState::DeepslateTileWall_NoneLowNoneFalseFalseTall
- | BlockState::DeepslateTileWall_NoneTallNoneFalseTrueLow
- | BlockState::DeepslateTileWall_NoneTallNoneFalseTrueTall
- | BlockState::DeepslateTileWall_NoneTallNoneFalseFalseLow
- | BlockState::DeepslateTileWall_NoneTallNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneLowNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneLowNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneLowNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneLowNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneTallNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneTallNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneTallNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneTallNoneFalseFalseTall => &SHAPE149,
- BlockState::CobblestoneWall_NoneLowLowTrueTrueNone
- | BlockState::CobblestoneWall_NoneLowLowTrueFalseNone
- | BlockState::CobblestoneWall_NoneLowTallTrueTrueNone
- | BlockState::CobblestoneWall_NoneLowTallTrueFalseNone
- | BlockState::CobblestoneWall_NoneTallLowTrueTrueNone
- | BlockState::CobblestoneWall_NoneTallLowTrueFalseNone
- | BlockState::CobblestoneWall_NoneTallTallTrueTrueNone
- | BlockState::CobblestoneWall_NoneTallTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneLowLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneLowLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneLowTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneLowTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneTallLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneTallLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_NoneTallTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_NoneTallTallTrueFalseNone
- | BlockState::BrickWall_NoneLowLowTrueTrueNone
- | BlockState::BrickWall_NoneLowLowTrueFalseNone
- | BlockState::BrickWall_NoneLowTallTrueTrueNone
- | BlockState::BrickWall_NoneLowTallTrueFalseNone
- | BlockState::BrickWall_NoneTallLowTrueTrueNone
- | BlockState::BrickWall_NoneTallLowTrueFalseNone
- | BlockState::BrickWall_NoneTallTallTrueTrueNone
- | BlockState::BrickWall_NoneTallTallTrueFalseNone
- | BlockState::PrismarineWall_NoneLowLowTrueTrueNone
- | BlockState::PrismarineWall_NoneLowLowTrueFalseNone
- | BlockState::PrismarineWall_NoneLowTallTrueTrueNone
- | BlockState::PrismarineWall_NoneLowTallTrueFalseNone
- | BlockState::PrismarineWall_NoneTallLowTrueTrueNone
- | BlockState::PrismarineWall_NoneTallLowTrueFalseNone
- | BlockState::PrismarineWall_NoneTallTallTrueTrueNone
- | BlockState::PrismarineWall_NoneTallTallTrueFalseNone
- | BlockState::RedSandstoneWall_NoneLowLowTrueTrueNone
- | BlockState::RedSandstoneWall_NoneLowLowTrueFalseNone
- | BlockState::RedSandstoneWall_NoneLowTallTrueTrueNone
- | BlockState::RedSandstoneWall_NoneLowTallTrueFalseNone
- | BlockState::RedSandstoneWall_NoneTallLowTrueTrueNone
- | BlockState::RedSandstoneWall_NoneTallLowTrueFalseNone
- | BlockState::RedSandstoneWall_NoneTallTallTrueTrueNone
- | BlockState::RedSandstoneWall_NoneTallTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneLowLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneLowLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneLowTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneLowTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneTallLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneTallLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_NoneTallTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_NoneTallTallTrueFalseNone
- | BlockState::GraniteWall_NoneLowLowTrueTrueNone
- | BlockState::GraniteWall_NoneLowLowTrueFalseNone
- | BlockState::GraniteWall_NoneLowTallTrueTrueNone
- | BlockState::GraniteWall_NoneLowTallTrueFalseNone
- | BlockState::GraniteWall_NoneTallLowTrueTrueNone
- | BlockState::GraniteWall_NoneTallLowTrueFalseNone
- | BlockState::GraniteWall_NoneTallTallTrueTrueNone
- | BlockState::GraniteWall_NoneTallTallTrueFalseNone
- | BlockState::StoneBrickWall_NoneLowLowTrueTrueNone
- | BlockState::StoneBrickWall_NoneLowLowTrueFalseNone
- | BlockState::StoneBrickWall_NoneLowTallTrueTrueNone
- | BlockState::StoneBrickWall_NoneLowTallTrueFalseNone
- | BlockState::StoneBrickWall_NoneTallLowTrueTrueNone
- | BlockState::StoneBrickWall_NoneTallLowTrueFalseNone
- | BlockState::StoneBrickWall_NoneTallTallTrueTrueNone
- | BlockState::StoneBrickWall_NoneTallTallTrueFalseNone
- | BlockState::MudBrickWall_NoneLowLowTrueTrueNone
- | BlockState::MudBrickWall_NoneLowLowTrueFalseNone
- | BlockState::MudBrickWall_NoneLowTallTrueTrueNone
- | BlockState::MudBrickWall_NoneLowTallTrueFalseNone
- | BlockState::MudBrickWall_NoneTallLowTrueTrueNone
- | BlockState::MudBrickWall_NoneTallLowTrueFalseNone
- | BlockState::MudBrickWall_NoneTallTallTrueTrueNone
- | BlockState::MudBrickWall_NoneTallTallTrueFalseNone
- | BlockState::NetherBrickWall_NoneLowLowTrueTrueNone
- | BlockState::NetherBrickWall_NoneLowLowTrueFalseNone
- | BlockState::NetherBrickWall_NoneLowTallTrueTrueNone
- | BlockState::NetherBrickWall_NoneLowTallTrueFalseNone
- | BlockState::NetherBrickWall_NoneTallLowTrueTrueNone
- | BlockState::NetherBrickWall_NoneTallLowTrueFalseNone
- | BlockState::NetherBrickWall_NoneTallTallTrueTrueNone
- | BlockState::NetherBrickWall_NoneTallTallTrueFalseNone
- | BlockState::AndesiteWall_NoneLowLowTrueTrueNone
- | BlockState::AndesiteWall_NoneLowLowTrueFalseNone
- | BlockState::AndesiteWall_NoneLowTallTrueTrueNone
- | BlockState::AndesiteWall_NoneLowTallTrueFalseNone
- | BlockState::AndesiteWall_NoneTallLowTrueTrueNone
- | BlockState::AndesiteWall_NoneTallLowTrueFalseNone
- | BlockState::AndesiteWall_NoneTallTallTrueTrueNone
- | BlockState::AndesiteWall_NoneTallTallTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneLowLowTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneLowLowTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneLowTallTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneLowTallTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneTallLowTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneTallLowTrueFalseNone
- | BlockState::RedNetherBrickWall_NoneTallTallTrueTrueNone
- | BlockState::RedNetherBrickWall_NoneTallTallTrueFalseNone
- | BlockState::SandstoneWall_NoneLowLowTrueTrueNone
- | BlockState::SandstoneWall_NoneLowLowTrueFalseNone
- | BlockState::SandstoneWall_NoneLowTallTrueTrueNone
- | BlockState::SandstoneWall_NoneLowTallTrueFalseNone
- | BlockState::SandstoneWall_NoneTallLowTrueTrueNone
- | BlockState::SandstoneWall_NoneTallLowTrueFalseNone
- | BlockState::SandstoneWall_NoneTallTallTrueTrueNone
- | BlockState::SandstoneWall_NoneTallTallTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneLowLowTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneLowLowTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneLowTallTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneLowTallTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneTallLowTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneTallLowTrueFalseNone
- | BlockState::EndStoneBrickWall_NoneTallTallTrueTrueNone
- | BlockState::EndStoneBrickWall_NoneTallTallTrueFalseNone
- | BlockState::DioriteWall_NoneLowLowTrueTrueNone
- | BlockState::DioriteWall_NoneLowLowTrueFalseNone
- | BlockState::DioriteWall_NoneLowTallTrueTrueNone
- | BlockState::DioriteWall_NoneLowTallTrueFalseNone
- | BlockState::DioriteWall_NoneTallLowTrueTrueNone
- | BlockState::DioriteWall_NoneTallLowTrueFalseNone
- | BlockState::DioriteWall_NoneTallTallTrueTrueNone
- | BlockState::DioriteWall_NoneTallTallTrueFalseNone
- | BlockState::BlackstoneWall_NoneLowLowTrueTrueNone
- | BlockState::BlackstoneWall_NoneLowLowTrueFalseNone
- | BlockState::BlackstoneWall_NoneLowTallTrueTrueNone
- | BlockState::BlackstoneWall_NoneLowTallTrueFalseNone
- | BlockState::BlackstoneWall_NoneTallLowTrueTrueNone
- | BlockState::BlackstoneWall_NoneTallLowTrueFalseNone
- | BlockState::BlackstoneWall_NoneTallTallTrueTrueNone
- | BlockState::BlackstoneWall_NoneTallTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneLowLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneLowLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneLowTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneLowTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneTallLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneTallLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_NoneTallTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_NoneTallTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneLowLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneLowLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneLowTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneLowTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneTallLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneTallLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_NoneTallTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_NoneTallTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneLowLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneLowLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneLowTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneLowTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneTallLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneTallLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_NoneTallTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_NoneTallTallTrueFalseNone
- | BlockState::DeepslateTileWall_NoneLowLowTrueTrueNone
- | BlockState::DeepslateTileWall_NoneLowLowTrueFalseNone
- | BlockState::DeepslateTileWall_NoneLowTallTrueTrueNone
- | BlockState::DeepslateTileWall_NoneLowTallTrueFalseNone
- | BlockState::DeepslateTileWall_NoneTallLowTrueTrueNone
- | BlockState::DeepslateTileWall_NoneTallLowTrueFalseNone
- | BlockState::DeepslateTileWall_NoneTallTallTrueTrueNone
- | BlockState::DeepslateTileWall_NoneTallTallTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneLowLowTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneLowLowTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneLowTallTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneLowTallTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneTallLowTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneTallLowTrueFalseNone
- | BlockState::DeepslateBrickWall_NoneTallTallTrueTrueNone
- | BlockState::DeepslateBrickWall_NoneTallTallTrueFalseNone => &SHAPE150,
- BlockState::CobblestoneWall_NoneLowLowTrueTrueLow
- | BlockState::CobblestoneWall_NoneLowLowTrueTrueTall
- | BlockState::CobblestoneWall_NoneLowLowTrueFalseLow
- | BlockState::CobblestoneWall_NoneLowLowTrueFalseTall
- | BlockState::CobblestoneWall_NoneLowTallTrueTrueLow
- | BlockState::CobblestoneWall_NoneLowTallTrueTrueTall
- | BlockState::CobblestoneWall_NoneLowTallTrueFalseLow
- | BlockState::CobblestoneWall_NoneLowTallTrueFalseTall
- | BlockState::CobblestoneWall_NoneTallLowTrueTrueLow
- | BlockState::CobblestoneWall_NoneTallLowTrueTrueTall
- | BlockState::CobblestoneWall_NoneTallLowTrueFalseLow
- | BlockState::CobblestoneWall_NoneTallLowTrueFalseTall
- | BlockState::CobblestoneWall_NoneTallTallTrueTrueLow
- | BlockState::CobblestoneWall_NoneTallTallTrueTrueTall
- | BlockState::CobblestoneWall_NoneTallTallTrueFalseLow
- | BlockState::CobblestoneWall_NoneTallTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneLowLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneLowLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneLowLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneLowLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneLowTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneLowTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneLowTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneLowTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneTallLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneTallLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneTallLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneTallLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_NoneTallTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_NoneTallTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_NoneTallTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_NoneTallTallTrueFalseTall
- | BlockState::BrickWall_NoneLowLowTrueTrueLow
- | BlockState::BrickWall_NoneLowLowTrueTrueTall
- | BlockState::BrickWall_NoneLowLowTrueFalseLow
- | BlockState::BrickWall_NoneLowLowTrueFalseTall
- | BlockState::BrickWall_NoneLowTallTrueTrueLow
- | BlockState::BrickWall_NoneLowTallTrueTrueTall
- | BlockState::BrickWall_NoneLowTallTrueFalseLow
- | BlockState::BrickWall_NoneLowTallTrueFalseTall
- | BlockState::BrickWall_NoneTallLowTrueTrueLow
- | BlockState::BrickWall_NoneTallLowTrueTrueTall
- | BlockState::BrickWall_NoneTallLowTrueFalseLow
- | BlockState::BrickWall_NoneTallLowTrueFalseTall
- | BlockState::BrickWall_NoneTallTallTrueTrueLow
- | BlockState::BrickWall_NoneTallTallTrueTrueTall
- | BlockState::BrickWall_NoneTallTallTrueFalseLow
- | BlockState::BrickWall_NoneTallTallTrueFalseTall
- | BlockState::PrismarineWall_NoneLowLowTrueTrueLow
- | BlockState::PrismarineWall_NoneLowLowTrueTrueTall
- | BlockState::PrismarineWall_NoneLowLowTrueFalseLow
- | BlockState::PrismarineWall_NoneLowLowTrueFalseTall
- | BlockState::PrismarineWall_NoneLowTallTrueTrueLow
- | BlockState::PrismarineWall_NoneLowTallTrueTrueTall
- | BlockState::PrismarineWall_NoneLowTallTrueFalseLow
- | BlockState::PrismarineWall_NoneLowTallTrueFalseTall
- | BlockState::PrismarineWall_NoneTallLowTrueTrueLow
- | BlockState::PrismarineWall_NoneTallLowTrueTrueTall
- | BlockState::PrismarineWall_NoneTallLowTrueFalseLow
- | BlockState::PrismarineWall_NoneTallLowTrueFalseTall
- | BlockState::PrismarineWall_NoneTallTallTrueTrueLow
- | BlockState::PrismarineWall_NoneTallTallTrueTrueTall
- | BlockState::PrismarineWall_NoneTallTallTrueFalseLow
- | BlockState::PrismarineWall_NoneTallTallTrueFalseTall
- | BlockState::RedSandstoneWall_NoneLowLowTrueTrueLow
- | BlockState::RedSandstoneWall_NoneLowLowTrueTrueTall
- | BlockState::RedSandstoneWall_NoneLowLowTrueFalseLow
- | BlockState::RedSandstoneWall_NoneLowLowTrueFalseTall
- | BlockState::RedSandstoneWall_NoneLowTallTrueTrueLow
- | BlockState::RedSandstoneWall_NoneLowTallTrueTrueTall
- | BlockState::RedSandstoneWall_NoneLowTallTrueFalseLow
- | BlockState::RedSandstoneWall_NoneLowTallTrueFalseTall
- | BlockState::RedSandstoneWall_NoneTallLowTrueTrueLow
- | BlockState::RedSandstoneWall_NoneTallLowTrueTrueTall
- | BlockState::RedSandstoneWall_NoneTallLowTrueFalseLow
- | BlockState::RedSandstoneWall_NoneTallLowTrueFalseTall
- | BlockState::RedSandstoneWall_NoneTallTallTrueTrueLow
- | BlockState::RedSandstoneWall_NoneTallTallTrueTrueTall
- | BlockState::RedSandstoneWall_NoneTallTallTrueFalseLow
- | BlockState::RedSandstoneWall_NoneTallTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneLowLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneLowLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneLowLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneLowLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneLowTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneLowTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneLowTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneLowTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneTallLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneTallLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneTallLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneTallLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_NoneTallTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_NoneTallTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_NoneTallTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_NoneTallTallTrueFalseTall
- | BlockState::GraniteWall_NoneLowLowTrueTrueLow
- | BlockState::GraniteWall_NoneLowLowTrueTrueTall
- | BlockState::GraniteWall_NoneLowLowTrueFalseLow
- | BlockState::GraniteWall_NoneLowLowTrueFalseTall
- | BlockState::GraniteWall_NoneLowTallTrueTrueLow
- | BlockState::GraniteWall_NoneLowTallTrueTrueTall
- | BlockState::GraniteWall_NoneLowTallTrueFalseLow
- | BlockState::GraniteWall_NoneLowTallTrueFalseTall
- | BlockState::GraniteWall_NoneTallLowTrueTrueLow
- | BlockState::GraniteWall_NoneTallLowTrueTrueTall
- | BlockState::GraniteWall_NoneTallLowTrueFalseLow
- | BlockState::GraniteWall_NoneTallLowTrueFalseTall
- | BlockState::GraniteWall_NoneTallTallTrueTrueLow
- | BlockState::GraniteWall_NoneTallTallTrueTrueTall
- | BlockState::GraniteWall_NoneTallTallTrueFalseLow
- | BlockState::GraniteWall_NoneTallTallTrueFalseTall
- | BlockState::StoneBrickWall_NoneLowLowTrueTrueLow
- | BlockState::StoneBrickWall_NoneLowLowTrueTrueTall
- | BlockState::StoneBrickWall_NoneLowLowTrueFalseLow
- | BlockState::StoneBrickWall_NoneLowLowTrueFalseTall
- | BlockState::StoneBrickWall_NoneLowTallTrueTrueLow
- | BlockState::StoneBrickWall_NoneLowTallTrueTrueTall
- | BlockState::StoneBrickWall_NoneLowTallTrueFalseLow
- | BlockState::StoneBrickWall_NoneLowTallTrueFalseTall
- | BlockState::StoneBrickWall_NoneTallLowTrueTrueLow
- | BlockState::StoneBrickWall_NoneTallLowTrueTrueTall
- | BlockState::StoneBrickWall_NoneTallLowTrueFalseLow
- | BlockState::StoneBrickWall_NoneTallLowTrueFalseTall
- | BlockState::StoneBrickWall_NoneTallTallTrueTrueLow
- | BlockState::StoneBrickWall_NoneTallTallTrueTrueTall
- | BlockState::StoneBrickWall_NoneTallTallTrueFalseLow
- | BlockState::StoneBrickWall_NoneTallTallTrueFalseTall
- | BlockState::MudBrickWall_NoneLowLowTrueTrueLow
- | BlockState::MudBrickWall_NoneLowLowTrueTrueTall
- | BlockState::MudBrickWall_NoneLowLowTrueFalseLow
- | BlockState::MudBrickWall_NoneLowLowTrueFalseTall
- | BlockState::MudBrickWall_NoneLowTallTrueTrueLow
- | BlockState::MudBrickWall_NoneLowTallTrueTrueTall
- | BlockState::MudBrickWall_NoneLowTallTrueFalseLow
- | BlockState::MudBrickWall_NoneLowTallTrueFalseTall
- | BlockState::MudBrickWall_NoneTallLowTrueTrueLow
- | BlockState::MudBrickWall_NoneTallLowTrueTrueTall
- | BlockState::MudBrickWall_NoneTallLowTrueFalseLow
- | BlockState::MudBrickWall_NoneTallLowTrueFalseTall
- | BlockState::MudBrickWall_NoneTallTallTrueTrueLow
- | BlockState::MudBrickWall_NoneTallTallTrueTrueTall
- | BlockState::MudBrickWall_NoneTallTallTrueFalseLow
- | BlockState::MudBrickWall_NoneTallTallTrueFalseTall
- | BlockState::NetherBrickWall_NoneLowLowTrueTrueLow
- | BlockState::NetherBrickWall_NoneLowLowTrueTrueTall
- | BlockState::NetherBrickWall_NoneLowLowTrueFalseLow
- | BlockState::NetherBrickWall_NoneLowLowTrueFalseTall
- | BlockState::NetherBrickWall_NoneLowTallTrueTrueLow
- | BlockState::NetherBrickWall_NoneLowTallTrueTrueTall
- | BlockState::NetherBrickWall_NoneLowTallTrueFalseLow
- | BlockState::NetherBrickWall_NoneLowTallTrueFalseTall
- | BlockState::NetherBrickWall_NoneTallLowTrueTrueLow
- | BlockState::NetherBrickWall_NoneTallLowTrueTrueTall
- | BlockState::NetherBrickWall_NoneTallLowTrueFalseLow
- | BlockState::NetherBrickWall_NoneTallLowTrueFalseTall
- | BlockState::NetherBrickWall_NoneTallTallTrueTrueLow
- | BlockState::NetherBrickWall_NoneTallTallTrueTrueTall
- | BlockState::NetherBrickWall_NoneTallTallTrueFalseLow
- | BlockState::NetherBrickWall_NoneTallTallTrueFalseTall
- | BlockState::AndesiteWall_NoneLowLowTrueTrueLow
- | BlockState::AndesiteWall_NoneLowLowTrueTrueTall
- | BlockState::AndesiteWall_NoneLowLowTrueFalseLow
- | BlockState::AndesiteWall_NoneLowLowTrueFalseTall
- | BlockState::AndesiteWall_NoneLowTallTrueTrueLow
- | BlockState::AndesiteWall_NoneLowTallTrueTrueTall
- | BlockState::AndesiteWall_NoneLowTallTrueFalseLow
- | BlockState::AndesiteWall_NoneLowTallTrueFalseTall
- | BlockState::AndesiteWall_NoneTallLowTrueTrueLow
- | BlockState::AndesiteWall_NoneTallLowTrueTrueTall
- | BlockState::AndesiteWall_NoneTallLowTrueFalseLow
- | BlockState::AndesiteWall_NoneTallLowTrueFalseTall
- | BlockState::AndesiteWall_NoneTallTallTrueTrueLow
- | BlockState::AndesiteWall_NoneTallTallTrueTrueTall
- | BlockState::AndesiteWall_NoneTallTallTrueFalseLow
- | BlockState::AndesiteWall_NoneTallTallTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneLowLowTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneLowLowTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneLowLowTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneLowLowTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneLowTallTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneLowTallTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneLowTallTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneLowTallTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneTallLowTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneTallLowTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneTallLowTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneTallLowTrueFalseTall
- | BlockState::RedNetherBrickWall_NoneTallTallTrueTrueLow
- | BlockState::RedNetherBrickWall_NoneTallTallTrueTrueTall
- | BlockState::RedNetherBrickWall_NoneTallTallTrueFalseLow
- | BlockState::RedNetherBrickWall_NoneTallTallTrueFalseTall
- | BlockState::SandstoneWall_NoneLowLowTrueTrueLow
- | BlockState::SandstoneWall_NoneLowLowTrueTrueTall
- | BlockState::SandstoneWall_NoneLowLowTrueFalseLow
- | BlockState::SandstoneWall_NoneLowLowTrueFalseTall
- | BlockState::SandstoneWall_NoneLowTallTrueTrueLow
- | BlockState::SandstoneWall_NoneLowTallTrueTrueTall
- | BlockState::SandstoneWall_NoneLowTallTrueFalseLow
- | BlockState::SandstoneWall_NoneLowTallTrueFalseTall
- | BlockState::SandstoneWall_NoneTallLowTrueTrueLow
- | BlockState::SandstoneWall_NoneTallLowTrueTrueTall
- | BlockState::SandstoneWall_NoneTallLowTrueFalseLow
- | BlockState::SandstoneWall_NoneTallLowTrueFalseTall
- | BlockState::SandstoneWall_NoneTallTallTrueTrueLow
- | BlockState::SandstoneWall_NoneTallTallTrueTrueTall
- | BlockState::SandstoneWall_NoneTallTallTrueFalseLow
- | BlockState::SandstoneWall_NoneTallTallTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneLowLowTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneLowLowTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneLowLowTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneLowLowTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneLowTallTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneLowTallTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneLowTallTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneLowTallTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneTallLowTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneTallLowTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneTallLowTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneTallLowTrueFalseTall
- | BlockState::EndStoneBrickWall_NoneTallTallTrueTrueLow
- | BlockState::EndStoneBrickWall_NoneTallTallTrueTrueTall
- | BlockState::EndStoneBrickWall_NoneTallTallTrueFalseLow
- | BlockState::EndStoneBrickWall_NoneTallTallTrueFalseTall
- | BlockState::DioriteWall_NoneLowLowTrueTrueLow
- | BlockState::DioriteWall_NoneLowLowTrueTrueTall
- | BlockState::DioriteWall_NoneLowLowTrueFalseLow
- | BlockState::DioriteWall_NoneLowLowTrueFalseTall
- | BlockState::DioriteWall_NoneLowTallTrueTrueLow
- | BlockState::DioriteWall_NoneLowTallTrueTrueTall
- | BlockState::DioriteWall_NoneLowTallTrueFalseLow
- | BlockState::DioriteWall_NoneLowTallTrueFalseTall
- | BlockState::DioriteWall_NoneTallLowTrueTrueLow
- | BlockState::DioriteWall_NoneTallLowTrueTrueTall
- | BlockState::DioriteWall_NoneTallLowTrueFalseLow
- | BlockState::DioriteWall_NoneTallLowTrueFalseTall
- | BlockState::DioriteWall_NoneTallTallTrueTrueLow
- | BlockState::DioriteWall_NoneTallTallTrueTrueTall
- | BlockState::DioriteWall_NoneTallTallTrueFalseLow
- | BlockState::DioriteWall_NoneTallTallTrueFalseTall
- | BlockState::BlackstoneWall_NoneLowLowTrueTrueLow
- | BlockState::BlackstoneWall_NoneLowLowTrueTrueTall
- | BlockState::BlackstoneWall_NoneLowLowTrueFalseLow
- | BlockState::BlackstoneWall_NoneLowLowTrueFalseTall
- | BlockState::BlackstoneWall_NoneLowTallTrueTrueLow
- | BlockState::BlackstoneWall_NoneLowTallTrueTrueTall
- | BlockState::BlackstoneWall_NoneLowTallTrueFalseLow
- | BlockState::BlackstoneWall_NoneLowTallTrueFalseTall
- | BlockState::BlackstoneWall_NoneTallLowTrueTrueLow
- | BlockState::BlackstoneWall_NoneTallLowTrueTrueTall
- | BlockState::BlackstoneWall_NoneTallLowTrueFalseLow
- | BlockState::BlackstoneWall_NoneTallLowTrueFalseTall
- | BlockState::BlackstoneWall_NoneTallTallTrueTrueLow
- | BlockState::BlackstoneWall_NoneTallTallTrueTrueTall
- | BlockState::BlackstoneWall_NoneTallTallTrueFalseLow
- | BlockState::BlackstoneWall_NoneTallTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneLowLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneLowLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneLowLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneLowLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneLowTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneLowTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneLowTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneLowTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneTallLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneTallLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneTallLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneTallLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_NoneTallTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_NoneTallTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_NoneTallTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_NoneTallTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneLowLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneLowLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneLowLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneLowLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneLowTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneLowTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneLowTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneLowTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneTallLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneTallLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneTallLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneTallLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_NoneTallTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_NoneTallTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_NoneTallTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_NoneTallTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneLowLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneLowLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneLowLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneLowLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneLowTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneLowTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneLowTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneLowTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneTallLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneTallLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneTallLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneTallLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_NoneTallTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_NoneTallTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_NoneTallTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_NoneTallTallTrueFalseTall
- | BlockState::DeepslateTileWall_NoneLowLowTrueTrueLow
- | BlockState::DeepslateTileWall_NoneLowLowTrueTrueTall
- | BlockState::DeepslateTileWall_NoneLowLowTrueFalseLow
- | BlockState::DeepslateTileWall_NoneLowLowTrueFalseTall
- | BlockState::DeepslateTileWall_NoneLowTallTrueTrueLow
- | BlockState::DeepslateTileWall_NoneLowTallTrueTrueTall
- | BlockState::DeepslateTileWall_NoneLowTallTrueFalseLow
- | BlockState::DeepslateTileWall_NoneLowTallTrueFalseTall
- | BlockState::DeepslateTileWall_NoneTallLowTrueTrueLow
- | BlockState::DeepslateTileWall_NoneTallLowTrueTrueTall
- | BlockState::DeepslateTileWall_NoneTallLowTrueFalseLow
- | BlockState::DeepslateTileWall_NoneTallLowTrueFalseTall
- | BlockState::DeepslateTileWall_NoneTallTallTrueTrueLow
- | BlockState::DeepslateTileWall_NoneTallTallTrueTrueTall
- | BlockState::DeepslateTileWall_NoneTallTallTrueFalseLow
- | BlockState::DeepslateTileWall_NoneTallTallTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneLowLowTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneLowLowTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneLowLowTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneLowLowTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneLowTallTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneLowTallTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneLowTallTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneLowTallTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneTallLowTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneTallLowTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneTallLowTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneTallLowTrueFalseTall
- | BlockState::DeepslateBrickWall_NoneTallTallTrueTrueLow
- | BlockState::DeepslateBrickWall_NoneTallTallTrueTrueTall
- | BlockState::DeepslateBrickWall_NoneTallTallTrueFalseLow
- | BlockState::DeepslateBrickWall_NoneTallTallTrueFalseTall => &SHAPE151,
- BlockState::CobblestoneWall_NoneLowLowFalseTrueNone
- | BlockState::CobblestoneWall_NoneLowLowFalseFalseNone
- | BlockState::CobblestoneWall_NoneLowTallFalseTrueNone
- | BlockState::CobblestoneWall_NoneLowTallFalseFalseNone
- | BlockState::CobblestoneWall_NoneTallLowFalseTrueNone
- | BlockState::CobblestoneWall_NoneTallLowFalseFalseNone
- | BlockState::CobblestoneWall_NoneTallTallFalseTrueNone
- | BlockState::CobblestoneWall_NoneTallTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneLowLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneLowLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneLowTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneLowTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneTallLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneTallLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_NoneTallTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_NoneTallTallFalseFalseNone
- | BlockState::BrickWall_NoneLowLowFalseTrueNone
- | BlockState::BrickWall_NoneLowLowFalseFalseNone
- | BlockState::BrickWall_NoneLowTallFalseTrueNone
- | BlockState::BrickWall_NoneLowTallFalseFalseNone
- | BlockState::BrickWall_NoneTallLowFalseTrueNone
- | BlockState::BrickWall_NoneTallLowFalseFalseNone
- | BlockState::BrickWall_NoneTallTallFalseTrueNone
- | BlockState::BrickWall_NoneTallTallFalseFalseNone
- | BlockState::PrismarineWall_NoneLowLowFalseTrueNone
- | BlockState::PrismarineWall_NoneLowLowFalseFalseNone
- | BlockState::PrismarineWall_NoneLowTallFalseTrueNone
- | BlockState::PrismarineWall_NoneLowTallFalseFalseNone
- | BlockState::PrismarineWall_NoneTallLowFalseTrueNone
- | BlockState::PrismarineWall_NoneTallLowFalseFalseNone
- | BlockState::PrismarineWall_NoneTallTallFalseTrueNone
- | BlockState::PrismarineWall_NoneTallTallFalseFalseNone
- | BlockState::RedSandstoneWall_NoneLowLowFalseTrueNone
- | BlockState::RedSandstoneWall_NoneLowLowFalseFalseNone
- | BlockState::RedSandstoneWall_NoneLowTallFalseTrueNone
- | BlockState::RedSandstoneWall_NoneLowTallFalseFalseNone
- | BlockState::RedSandstoneWall_NoneTallLowFalseTrueNone
- | BlockState::RedSandstoneWall_NoneTallLowFalseFalseNone
- | BlockState::RedSandstoneWall_NoneTallTallFalseTrueNone
- | BlockState::RedSandstoneWall_NoneTallTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneLowLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneLowLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneLowTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneLowTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneTallLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneTallLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_NoneTallTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_NoneTallTallFalseFalseNone
- | BlockState::GraniteWall_NoneLowLowFalseTrueNone
- | BlockState::GraniteWall_NoneLowLowFalseFalseNone
- | BlockState::GraniteWall_NoneLowTallFalseTrueNone
- | BlockState::GraniteWall_NoneLowTallFalseFalseNone
- | BlockState::GraniteWall_NoneTallLowFalseTrueNone
- | BlockState::GraniteWall_NoneTallLowFalseFalseNone
- | BlockState::GraniteWall_NoneTallTallFalseTrueNone
- | BlockState::GraniteWall_NoneTallTallFalseFalseNone
- | BlockState::StoneBrickWall_NoneLowLowFalseTrueNone
- | BlockState::StoneBrickWall_NoneLowLowFalseFalseNone
- | BlockState::StoneBrickWall_NoneLowTallFalseTrueNone
- | BlockState::StoneBrickWall_NoneLowTallFalseFalseNone
- | BlockState::StoneBrickWall_NoneTallLowFalseTrueNone
- | BlockState::StoneBrickWall_NoneTallLowFalseFalseNone
- | BlockState::StoneBrickWall_NoneTallTallFalseTrueNone
- | BlockState::StoneBrickWall_NoneTallTallFalseFalseNone
- | BlockState::MudBrickWall_NoneLowLowFalseTrueNone
- | BlockState::MudBrickWall_NoneLowLowFalseFalseNone
- | BlockState::MudBrickWall_NoneLowTallFalseTrueNone
- | BlockState::MudBrickWall_NoneLowTallFalseFalseNone
- | BlockState::MudBrickWall_NoneTallLowFalseTrueNone
- | BlockState::MudBrickWall_NoneTallLowFalseFalseNone
- | BlockState::MudBrickWall_NoneTallTallFalseTrueNone
- | BlockState::MudBrickWall_NoneTallTallFalseFalseNone
- | BlockState::NetherBrickWall_NoneLowLowFalseTrueNone
- | BlockState::NetherBrickWall_NoneLowLowFalseFalseNone
- | BlockState::NetherBrickWall_NoneLowTallFalseTrueNone
- | BlockState::NetherBrickWall_NoneLowTallFalseFalseNone
- | BlockState::NetherBrickWall_NoneTallLowFalseTrueNone
- | BlockState::NetherBrickWall_NoneTallLowFalseFalseNone
- | BlockState::NetherBrickWall_NoneTallTallFalseTrueNone
- | BlockState::NetherBrickWall_NoneTallTallFalseFalseNone
- | BlockState::AndesiteWall_NoneLowLowFalseTrueNone
- | BlockState::AndesiteWall_NoneLowLowFalseFalseNone
- | BlockState::AndesiteWall_NoneLowTallFalseTrueNone
- | BlockState::AndesiteWall_NoneLowTallFalseFalseNone
- | BlockState::AndesiteWall_NoneTallLowFalseTrueNone
- | BlockState::AndesiteWall_NoneTallLowFalseFalseNone
- | BlockState::AndesiteWall_NoneTallTallFalseTrueNone
- | BlockState::AndesiteWall_NoneTallTallFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneLowLowFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneLowLowFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneLowTallFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneLowTallFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneTallLowFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneTallLowFalseFalseNone
- | BlockState::RedNetherBrickWall_NoneTallTallFalseTrueNone
- | BlockState::RedNetherBrickWall_NoneTallTallFalseFalseNone
- | BlockState::SandstoneWall_NoneLowLowFalseTrueNone
- | BlockState::SandstoneWall_NoneLowLowFalseFalseNone
- | BlockState::SandstoneWall_NoneLowTallFalseTrueNone
- | BlockState::SandstoneWall_NoneLowTallFalseFalseNone
- | BlockState::SandstoneWall_NoneTallLowFalseTrueNone
- | BlockState::SandstoneWall_NoneTallLowFalseFalseNone
- | BlockState::SandstoneWall_NoneTallTallFalseTrueNone
- | BlockState::SandstoneWall_NoneTallTallFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneLowLowFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneLowLowFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneLowTallFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneLowTallFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneTallLowFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneTallLowFalseFalseNone
- | BlockState::EndStoneBrickWall_NoneTallTallFalseTrueNone
- | BlockState::EndStoneBrickWall_NoneTallTallFalseFalseNone
- | BlockState::DioriteWall_NoneLowLowFalseTrueNone
- | BlockState::DioriteWall_NoneLowLowFalseFalseNone
- | BlockState::DioriteWall_NoneLowTallFalseTrueNone
- | BlockState::DioriteWall_NoneLowTallFalseFalseNone
- | BlockState::DioriteWall_NoneTallLowFalseTrueNone
- | BlockState::DioriteWall_NoneTallLowFalseFalseNone
- | BlockState::DioriteWall_NoneTallTallFalseTrueNone
- | BlockState::DioriteWall_NoneTallTallFalseFalseNone
- | BlockState::BlackstoneWall_NoneLowLowFalseTrueNone
- | BlockState::BlackstoneWall_NoneLowLowFalseFalseNone
- | BlockState::BlackstoneWall_NoneLowTallFalseTrueNone
- | BlockState::BlackstoneWall_NoneLowTallFalseFalseNone
- | BlockState::BlackstoneWall_NoneTallLowFalseTrueNone
- | BlockState::BlackstoneWall_NoneTallLowFalseFalseNone
- | BlockState::BlackstoneWall_NoneTallTallFalseTrueNone
- | BlockState::BlackstoneWall_NoneTallTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneLowLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneLowLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneLowTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneLowTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneTallLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneTallLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_NoneTallTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_NoneTallTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneLowLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneLowLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneLowTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneLowTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneTallLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneTallLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_NoneTallTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_NoneTallTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneLowLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneLowLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneLowTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneLowTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneTallLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneTallLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_NoneTallTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_NoneTallTallFalseFalseNone
- | BlockState::DeepslateTileWall_NoneLowLowFalseTrueNone
- | BlockState::DeepslateTileWall_NoneLowLowFalseFalseNone
- | BlockState::DeepslateTileWall_NoneLowTallFalseTrueNone
- | BlockState::DeepslateTileWall_NoneLowTallFalseFalseNone
- | BlockState::DeepslateTileWall_NoneTallLowFalseTrueNone
- | BlockState::DeepslateTileWall_NoneTallLowFalseFalseNone
- | BlockState::DeepslateTileWall_NoneTallTallFalseTrueNone
- | BlockState::DeepslateTileWall_NoneTallTallFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneLowLowFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneLowLowFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneLowTallFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneLowTallFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneTallLowFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneTallLowFalseFalseNone
- | BlockState::DeepslateBrickWall_NoneTallTallFalseTrueNone
- | BlockState::DeepslateBrickWall_NoneTallTallFalseFalseNone => &SHAPE152,
- BlockState::CobblestoneWall_NoneLowLowFalseTrueLow
- | BlockState::CobblestoneWall_NoneLowLowFalseTrueTall
- | BlockState::CobblestoneWall_NoneLowLowFalseFalseLow
- | BlockState::CobblestoneWall_NoneLowLowFalseFalseTall
- | BlockState::CobblestoneWall_NoneLowTallFalseTrueLow
- | BlockState::CobblestoneWall_NoneLowTallFalseTrueTall
- | BlockState::CobblestoneWall_NoneLowTallFalseFalseLow
- | BlockState::CobblestoneWall_NoneLowTallFalseFalseTall
- | BlockState::CobblestoneWall_NoneTallLowFalseTrueLow
- | BlockState::CobblestoneWall_NoneTallLowFalseTrueTall
- | BlockState::CobblestoneWall_NoneTallLowFalseFalseLow
- | BlockState::CobblestoneWall_NoneTallLowFalseFalseTall
- | BlockState::CobblestoneWall_NoneTallTallFalseTrueLow
- | BlockState::CobblestoneWall_NoneTallTallFalseTrueTall
- | BlockState::CobblestoneWall_NoneTallTallFalseFalseLow
- | BlockState::CobblestoneWall_NoneTallTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneLowLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneLowLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneLowLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneLowLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneLowTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneLowTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneLowTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneLowTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneTallLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneTallLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneTallLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneTallLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_NoneTallTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_NoneTallTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_NoneTallTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_NoneTallTallFalseFalseTall
- | BlockState::BrickWall_NoneLowLowFalseTrueLow
- | BlockState::BrickWall_NoneLowLowFalseTrueTall
- | BlockState::BrickWall_NoneLowLowFalseFalseLow
- | BlockState::BrickWall_NoneLowLowFalseFalseTall
- | BlockState::BrickWall_NoneLowTallFalseTrueLow
- | BlockState::BrickWall_NoneLowTallFalseTrueTall
- | BlockState::BrickWall_NoneLowTallFalseFalseLow
- | BlockState::BrickWall_NoneLowTallFalseFalseTall
- | BlockState::BrickWall_NoneTallLowFalseTrueLow
- | BlockState::BrickWall_NoneTallLowFalseTrueTall
- | BlockState::BrickWall_NoneTallLowFalseFalseLow
- | BlockState::BrickWall_NoneTallLowFalseFalseTall
- | BlockState::BrickWall_NoneTallTallFalseTrueLow
- | BlockState::BrickWall_NoneTallTallFalseTrueTall
- | BlockState::BrickWall_NoneTallTallFalseFalseLow
- | BlockState::BrickWall_NoneTallTallFalseFalseTall
- | BlockState::PrismarineWall_NoneLowLowFalseTrueLow
- | BlockState::PrismarineWall_NoneLowLowFalseTrueTall
- | BlockState::PrismarineWall_NoneLowLowFalseFalseLow
- | BlockState::PrismarineWall_NoneLowLowFalseFalseTall
- | BlockState::PrismarineWall_NoneLowTallFalseTrueLow
- | BlockState::PrismarineWall_NoneLowTallFalseTrueTall
- | BlockState::PrismarineWall_NoneLowTallFalseFalseLow
- | BlockState::PrismarineWall_NoneLowTallFalseFalseTall
- | BlockState::PrismarineWall_NoneTallLowFalseTrueLow
- | BlockState::PrismarineWall_NoneTallLowFalseTrueTall
- | BlockState::PrismarineWall_NoneTallLowFalseFalseLow
- | BlockState::PrismarineWall_NoneTallLowFalseFalseTall
- | BlockState::PrismarineWall_NoneTallTallFalseTrueLow
- | BlockState::PrismarineWall_NoneTallTallFalseTrueTall
- | BlockState::PrismarineWall_NoneTallTallFalseFalseLow
- | BlockState::PrismarineWall_NoneTallTallFalseFalseTall
- | BlockState::RedSandstoneWall_NoneLowLowFalseTrueLow
- | BlockState::RedSandstoneWall_NoneLowLowFalseTrueTall
- | BlockState::RedSandstoneWall_NoneLowLowFalseFalseLow
- | BlockState::RedSandstoneWall_NoneLowLowFalseFalseTall
- | BlockState::RedSandstoneWall_NoneLowTallFalseTrueLow
- | BlockState::RedSandstoneWall_NoneLowTallFalseTrueTall
- | BlockState::RedSandstoneWall_NoneLowTallFalseFalseLow
- | BlockState::RedSandstoneWall_NoneLowTallFalseFalseTall
- | BlockState::RedSandstoneWall_NoneTallLowFalseTrueLow
- | BlockState::RedSandstoneWall_NoneTallLowFalseTrueTall
- | BlockState::RedSandstoneWall_NoneTallLowFalseFalseLow
- | BlockState::RedSandstoneWall_NoneTallLowFalseFalseTall
- | BlockState::RedSandstoneWall_NoneTallTallFalseTrueLow
- | BlockState::RedSandstoneWall_NoneTallTallFalseTrueTall
- | BlockState::RedSandstoneWall_NoneTallTallFalseFalseLow
- | BlockState::RedSandstoneWall_NoneTallTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneLowLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneLowLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneLowLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneLowLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneLowTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneLowTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneLowTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneLowTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneTallLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneTallLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneTallLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneTallLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_NoneTallTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_NoneTallTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_NoneTallTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_NoneTallTallFalseFalseTall
- | BlockState::GraniteWall_NoneLowLowFalseTrueLow
- | BlockState::GraniteWall_NoneLowLowFalseTrueTall
- | BlockState::GraniteWall_NoneLowLowFalseFalseLow
- | BlockState::GraniteWall_NoneLowLowFalseFalseTall
- | BlockState::GraniteWall_NoneLowTallFalseTrueLow
- | BlockState::GraniteWall_NoneLowTallFalseTrueTall
- | BlockState::GraniteWall_NoneLowTallFalseFalseLow
- | BlockState::GraniteWall_NoneLowTallFalseFalseTall
- | BlockState::GraniteWall_NoneTallLowFalseTrueLow
- | BlockState::GraniteWall_NoneTallLowFalseTrueTall
- | BlockState::GraniteWall_NoneTallLowFalseFalseLow
- | BlockState::GraniteWall_NoneTallLowFalseFalseTall
- | BlockState::GraniteWall_NoneTallTallFalseTrueLow
- | BlockState::GraniteWall_NoneTallTallFalseTrueTall
- | BlockState::GraniteWall_NoneTallTallFalseFalseLow
- | BlockState::GraniteWall_NoneTallTallFalseFalseTall
- | BlockState::StoneBrickWall_NoneLowLowFalseTrueLow
- | BlockState::StoneBrickWall_NoneLowLowFalseTrueTall
- | BlockState::StoneBrickWall_NoneLowLowFalseFalseLow
- | BlockState::StoneBrickWall_NoneLowLowFalseFalseTall
- | BlockState::StoneBrickWall_NoneLowTallFalseTrueLow
- | BlockState::StoneBrickWall_NoneLowTallFalseTrueTall
- | BlockState::StoneBrickWall_NoneLowTallFalseFalseLow
- | BlockState::StoneBrickWall_NoneLowTallFalseFalseTall
- | BlockState::StoneBrickWall_NoneTallLowFalseTrueLow
- | BlockState::StoneBrickWall_NoneTallLowFalseTrueTall
- | BlockState::StoneBrickWall_NoneTallLowFalseFalseLow
- | BlockState::StoneBrickWall_NoneTallLowFalseFalseTall
- | BlockState::StoneBrickWall_NoneTallTallFalseTrueLow
- | BlockState::StoneBrickWall_NoneTallTallFalseTrueTall
- | BlockState::StoneBrickWall_NoneTallTallFalseFalseLow
- | BlockState::StoneBrickWall_NoneTallTallFalseFalseTall
- | BlockState::MudBrickWall_NoneLowLowFalseTrueLow
- | BlockState::MudBrickWall_NoneLowLowFalseTrueTall
- | BlockState::MudBrickWall_NoneLowLowFalseFalseLow
- | BlockState::MudBrickWall_NoneLowLowFalseFalseTall
- | BlockState::MudBrickWall_NoneLowTallFalseTrueLow
- | BlockState::MudBrickWall_NoneLowTallFalseTrueTall
- | BlockState::MudBrickWall_NoneLowTallFalseFalseLow
- | BlockState::MudBrickWall_NoneLowTallFalseFalseTall
- | BlockState::MudBrickWall_NoneTallLowFalseTrueLow
- | BlockState::MudBrickWall_NoneTallLowFalseTrueTall
- | BlockState::MudBrickWall_NoneTallLowFalseFalseLow
- | BlockState::MudBrickWall_NoneTallLowFalseFalseTall
- | BlockState::MudBrickWall_NoneTallTallFalseTrueLow
- | BlockState::MudBrickWall_NoneTallTallFalseTrueTall
- | BlockState::MudBrickWall_NoneTallTallFalseFalseLow
- | BlockState::MudBrickWall_NoneTallTallFalseFalseTall
- | BlockState::NetherBrickWall_NoneLowLowFalseTrueLow
- | BlockState::NetherBrickWall_NoneLowLowFalseTrueTall
- | BlockState::NetherBrickWall_NoneLowLowFalseFalseLow
- | BlockState::NetherBrickWall_NoneLowLowFalseFalseTall
- | BlockState::NetherBrickWall_NoneLowTallFalseTrueLow
- | BlockState::NetherBrickWall_NoneLowTallFalseTrueTall
- | BlockState::NetherBrickWall_NoneLowTallFalseFalseLow
- | BlockState::NetherBrickWall_NoneLowTallFalseFalseTall
- | BlockState::NetherBrickWall_NoneTallLowFalseTrueLow
- | BlockState::NetherBrickWall_NoneTallLowFalseTrueTall
- | BlockState::NetherBrickWall_NoneTallLowFalseFalseLow
- | BlockState::NetherBrickWall_NoneTallLowFalseFalseTall
- | BlockState::NetherBrickWall_NoneTallTallFalseTrueLow
- | BlockState::NetherBrickWall_NoneTallTallFalseTrueTall
- | BlockState::NetherBrickWall_NoneTallTallFalseFalseLow
- | BlockState::NetherBrickWall_NoneTallTallFalseFalseTall
- | BlockState::AndesiteWall_NoneLowLowFalseTrueLow
- | BlockState::AndesiteWall_NoneLowLowFalseTrueTall
- | BlockState::AndesiteWall_NoneLowLowFalseFalseLow
- | BlockState::AndesiteWall_NoneLowLowFalseFalseTall
- | BlockState::AndesiteWall_NoneLowTallFalseTrueLow
- | BlockState::AndesiteWall_NoneLowTallFalseTrueTall
- | BlockState::AndesiteWall_NoneLowTallFalseFalseLow
- | BlockState::AndesiteWall_NoneLowTallFalseFalseTall
- | BlockState::AndesiteWall_NoneTallLowFalseTrueLow
- | BlockState::AndesiteWall_NoneTallLowFalseTrueTall
- | BlockState::AndesiteWall_NoneTallLowFalseFalseLow
- | BlockState::AndesiteWall_NoneTallLowFalseFalseTall
- | BlockState::AndesiteWall_NoneTallTallFalseTrueLow
- | BlockState::AndesiteWall_NoneTallTallFalseTrueTall
- | BlockState::AndesiteWall_NoneTallTallFalseFalseLow
- | BlockState::AndesiteWall_NoneTallTallFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneLowLowFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneLowLowFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneLowLowFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneLowLowFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneLowTallFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneLowTallFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneLowTallFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneLowTallFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneTallLowFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneTallLowFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneTallLowFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneTallLowFalseFalseTall
- | BlockState::RedNetherBrickWall_NoneTallTallFalseTrueLow
- | BlockState::RedNetherBrickWall_NoneTallTallFalseTrueTall
- | BlockState::RedNetherBrickWall_NoneTallTallFalseFalseLow
- | BlockState::RedNetherBrickWall_NoneTallTallFalseFalseTall
- | BlockState::SandstoneWall_NoneLowLowFalseTrueLow
- | BlockState::SandstoneWall_NoneLowLowFalseTrueTall
- | BlockState::SandstoneWall_NoneLowLowFalseFalseLow
- | BlockState::SandstoneWall_NoneLowLowFalseFalseTall
- | BlockState::SandstoneWall_NoneLowTallFalseTrueLow
- | BlockState::SandstoneWall_NoneLowTallFalseTrueTall
- | BlockState::SandstoneWall_NoneLowTallFalseFalseLow
- | BlockState::SandstoneWall_NoneLowTallFalseFalseTall
- | BlockState::SandstoneWall_NoneTallLowFalseTrueLow
- | BlockState::SandstoneWall_NoneTallLowFalseTrueTall
- | BlockState::SandstoneWall_NoneTallLowFalseFalseLow
- | BlockState::SandstoneWall_NoneTallLowFalseFalseTall
- | BlockState::SandstoneWall_NoneTallTallFalseTrueLow
- | BlockState::SandstoneWall_NoneTallTallFalseTrueTall
- | BlockState::SandstoneWall_NoneTallTallFalseFalseLow
- | BlockState::SandstoneWall_NoneTallTallFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneLowLowFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneLowLowFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneLowLowFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneLowLowFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneLowTallFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneLowTallFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneLowTallFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneLowTallFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneTallLowFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneTallLowFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneTallLowFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneTallLowFalseFalseTall
- | BlockState::EndStoneBrickWall_NoneTallTallFalseTrueLow
- | BlockState::EndStoneBrickWall_NoneTallTallFalseTrueTall
- | BlockState::EndStoneBrickWall_NoneTallTallFalseFalseLow
- | BlockState::EndStoneBrickWall_NoneTallTallFalseFalseTall
- | BlockState::DioriteWall_NoneLowLowFalseTrueLow
- | BlockState::DioriteWall_NoneLowLowFalseTrueTall
- | BlockState::DioriteWall_NoneLowLowFalseFalseLow
- | BlockState::DioriteWall_NoneLowLowFalseFalseTall
- | BlockState::DioriteWall_NoneLowTallFalseTrueLow
- | BlockState::DioriteWall_NoneLowTallFalseTrueTall
- | BlockState::DioriteWall_NoneLowTallFalseFalseLow
- | BlockState::DioriteWall_NoneLowTallFalseFalseTall
- | BlockState::DioriteWall_NoneTallLowFalseTrueLow
- | BlockState::DioriteWall_NoneTallLowFalseTrueTall
- | BlockState::DioriteWall_NoneTallLowFalseFalseLow
- | BlockState::DioriteWall_NoneTallLowFalseFalseTall
- | BlockState::DioriteWall_NoneTallTallFalseTrueLow
- | BlockState::DioriteWall_NoneTallTallFalseTrueTall
- | BlockState::DioriteWall_NoneTallTallFalseFalseLow
- | BlockState::DioriteWall_NoneTallTallFalseFalseTall
- | BlockState::BlackstoneWall_NoneLowLowFalseTrueLow
- | BlockState::BlackstoneWall_NoneLowLowFalseTrueTall
- | BlockState::BlackstoneWall_NoneLowLowFalseFalseLow
- | BlockState::BlackstoneWall_NoneLowLowFalseFalseTall
- | BlockState::BlackstoneWall_NoneLowTallFalseTrueLow
- | BlockState::BlackstoneWall_NoneLowTallFalseTrueTall
- | BlockState::BlackstoneWall_NoneLowTallFalseFalseLow
- | BlockState::BlackstoneWall_NoneLowTallFalseFalseTall
- | BlockState::BlackstoneWall_NoneTallLowFalseTrueLow
- | BlockState::BlackstoneWall_NoneTallLowFalseTrueTall
- | BlockState::BlackstoneWall_NoneTallLowFalseFalseLow
- | BlockState::BlackstoneWall_NoneTallLowFalseFalseTall
- | BlockState::BlackstoneWall_NoneTallTallFalseTrueLow
- | BlockState::BlackstoneWall_NoneTallTallFalseTrueTall
- | BlockState::BlackstoneWall_NoneTallTallFalseFalseLow
- | BlockState::BlackstoneWall_NoneTallTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneLowTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_NoneTallTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneLowLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneLowLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneLowLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneLowLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneLowTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneLowTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneLowTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneLowTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneTallLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneTallLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneTallLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneTallLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_NoneTallTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_NoneTallTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_NoneTallTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_NoneTallTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneLowLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneLowLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneLowLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneLowLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneLowTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneLowTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneLowTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneLowTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneTallLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneTallLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneTallLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneTallLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_NoneTallTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_NoneTallTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_NoneTallTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_NoneTallTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneLowLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneLowLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneLowLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneLowLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneLowTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneLowTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneLowTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneLowTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneTallLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneTallLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneTallLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneTallLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_NoneTallTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_NoneTallTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_NoneTallTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_NoneTallTallFalseFalseTall
- | BlockState::DeepslateTileWall_NoneLowLowFalseTrueLow
- | BlockState::DeepslateTileWall_NoneLowLowFalseTrueTall
- | BlockState::DeepslateTileWall_NoneLowLowFalseFalseLow
- | BlockState::DeepslateTileWall_NoneLowLowFalseFalseTall
- | BlockState::DeepslateTileWall_NoneLowTallFalseTrueLow
- | BlockState::DeepslateTileWall_NoneLowTallFalseTrueTall
- | BlockState::DeepslateTileWall_NoneLowTallFalseFalseLow
- | BlockState::DeepslateTileWall_NoneLowTallFalseFalseTall
- | BlockState::DeepslateTileWall_NoneTallLowFalseTrueLow
- | BlockState::DeepslateTileWall_NoneTallLowFalseTrueTall
- | BlockState::DeepslateTileWall_NoneTallLowFalseFalseLow
- | BlockState::DeepslateTileWall_NoneTallLowFalseFalseTall
- | BlockState::DeepslateTileWall_NoneTallTallFalseTrueLow
- | BlockState::DeepslateTileWall_NoneTallTallFalseTrueTall
- | BlockState::DeepslateTileWall_NoneTallTallFalseFalseLow
- | BlockState::DeepslateTileWall_NoneTallTallFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneLowLowFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneLowLowFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneLowLowFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneLowLowFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneLowTallFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneLowTallFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneLowTallFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneLowTallFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneTallLowFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneTallLowFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneTallLowFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneTallLowFalseFalseTall
- | BlockState::DeepslateBrickWall_NoneTallTallFalseTrueLow
- | BlockState::DeepslateBrickWall_NoneTallTallFalseTrueTall
- | BlockState::DeepslateBrickWall_NoneTallTallFalseFalseLow
- | BlockState::DeepslateBrickWall_NoneTallTallFalseFalseTall => &SHAPE153,
- BlockState::CobblestoneWall_LowNoneNoneTrueTrueNone
- | BlockState::CobblestoneWall_LowNoneNoneTrueFalseNone
- | BlockState::CobblestoneWall_TallNoneNoneTrueTrueNone
- | BlockState::CobblestoneWall_TallNoneNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowNoneNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowNoneNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallNoneNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallNoneNoneTrueFalseNone
- | BlockState::BrickWall_LowNoneNoneTrueTrueNone
- | BlockState::BrickWall_LowNoneNoneTrueFalseNone
- | BlockState::BrickWall_TallNoneNoneTrueTrueNone
- | BlockState::BrickWall_TallNoneNoneTrueFalseNone
- | BlockState::PrismarineWall_LowNoneNoneTrueTrueNone
- | BlockState::PrismarineWall_LowNoneNoneTrueFalseNone
- | BlockState::PrismarineWall_TallNoneNoneTrueTrueNone
- | BlockState::PrismarineWall_TallNoneNoneTrueFalseNone
- | BlockState::RedSandstoneWall_LowNoneNoneTrueTrueNone
- | BlockState::RedSandstoneWall_LowNoneNoneTrueFalseNone
- | BlockState::RedSandstoneWall_TallNoneNoneTrueTrueNone
- | BlockState::RedSandstoneWall_TallNoneNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::GraniteWall_LowNoneNoneTrueTrueNone
- | BlockState::GraniteWall_LowNoneNoneTrueFalseNone
- | BlockState::GraniteWall_TallNoneNoneTrueTrueNone
- | BlockState::GraniteWall_TallNoneNoneTrueFalseNone
- | BlockState::StoneBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::StoneBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::StoneBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::StoneBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::MudBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::MudBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::MudBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::MudBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::NetherBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::NetherBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::NetherBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::NetherBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::AndesiteWall_LowNoneNoneTrueTrueNone
- | BlockState::AndesiteWall_LowNoneNoneTrueFalseNone
- | BlockState::AndesiteWall_TallNoneNoneTrueTrueNone
- | BlockState::AndesiteWall_TallNoneNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::SandstoneWall_LowNoneNoneTrueTrueNone
- | BlockState::SandstoneWall_LowNoneNoneTrueFalseNone
- | BlockState::SandstoneWall_TallNoneNoneTrueTrueNone
- | BlockState::SandstoneWall_TallNoneNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::DioriteWall_LowNoneNoneTrueTrueNone
- | BlockState::DioriteWall_LowNoneNoneTrueFalseNone
- | BlockState::DioriteWall_TallNoneNoneTrueTrueNone
- | BlockState::DioriteWall_TallNoneNoneTrueFalseNone
- | BlockState::BlackstoneWall_LowNoneNoneTrueTrueNone
- | BlockState::BlackstoneWall_LowNoneNoneTrueFalseNone
- | BlockState::BlackstoneWall_TallNoneNoneTrueTrueNone
- | BlockState::BlackstoneWall_TallNoneNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowNoneNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowNoneNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallNoneNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallNoneNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowNoneNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowNoneNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallNoneNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallNoneNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowNoneNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowNoneNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallNoneNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallNoneNoneTrueFalseNone
- | BlockState::DeepslateTileWall_LowNoneNoneTrueTrueNone
- | BlockState::DeepslateTileWall_LowNoneNoneTrueFalseNone
- | BlockState::DeepslateTileWall_TallNoneNoneTrueTrueNone
- | BlockState::DeepslateTileWall_TallNoneNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_LowNoneNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_LowNoneNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_TallNoneNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_TallNoneNoneTrueFalseNone => &SHAPE154,
- BlockState::CobblestoneWall_LowNoneNoneTrueTrueLow
- | BlockState::CobblestoneWall_LowNoneNoneTrueTrueTall
- | BlockState::CobblestoneWall_LowNoneNoneTrueFalseLow
- | BlockState::CobblestoneWall_LowNoneNoneTrueFalseTall
- | BlockState::CobblestoneWall_TallNoneNoneTrueTrueLow
- | BlockState::CobblestoneWall_TallNoneNoneTrueTrueTall
- | BlockState::CobblestoneWall_TallNoneNoneTrueFalseLow
- | BlockState::CobblestoneWall_TallNoneNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowNoneNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowNoneNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowNoneNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowNoneNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallNoneNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallNoneNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallNoneNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallNoneNoneTrueFalseTall
- | BlockState::BrickWall_LowNoneNoneTrueTrueLow
- | BlockState::BrickWall_LowNoneNoneTrueTrueTall
- | BlockState::BrickWall_LowNoneNoneTrueFalseLow
- | BlockState::BrickWall_LowNoneNoneTrueFalseTall
- | BlockState::BrickWall_TallNoneNoneTrueTrueLow
- | BlockState::BrickWall_TallNoneNoneTrueTrueTall
- | BlockState::BrickWall_TallNoneNoneTrueFalseLow
- | BlockState::BrickWall_TallNoneNoneTrueFalseTall
- | BlockState::PrismarineWall_LowNoneNoneTrueTrueLow
- | BlockState::PrismarineWall_LowNoneNoneTrueTrueTall
- | BlockState::PrismarineWall_LowNoneNoneTrueFalseLow
- | BlockState::PrismarineWall_LowNoneNoneTrueFalseTall
- | BlockState::PrismarineWall_TallNoneNoneTrueTrueLow
- | BlockState::PrismarineWall_TallNoneNoneTrueTrueTall
- | BlockState::PrismarineWall_TallNoneNoneTrueFalseLow
- | BlockState::PrismarineWall_TallNoneNoneTrueFalseTall
- | BlockState::RedSandstoneWall_LowNoneNoneTrueTrueLow
- | BlockState::RedSandstoneWall_LowNoneNoneTrueTrueTall
- | BlockState::RedSandstoneWall_LowNoneNoneTrueFalseLow
- | BlockState::RedSandstoneWall_LowNoneNoneTrueFalseTall
- | BlockState::RedSandstoneWall_TallNoneNoneTrueTrueLow
- | BlockState::RedSandstoneWall_TallNoneNoneTrueTrueTall
- | BlockState::RedSandstoneWall_TallNoneNoneTrueFalseLow
- | BlockState::RedSandstoneWall_TallNoneNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::GraniteWall_LowNoneNoneTrueTrueLow
- | BlockState::GraniteWall_LowNoneNoneTrueTrueTall
- | BlockState::GraniteWall_LowNoneNoneTrueFalseLow
- | BlockState::GraniteWall_LowNoneNoneTrueFalseTall
- | BlockState::GraniteWall_TallNoneNoneTrueTrueLow
- | BlockState::GraniteWall_TallNoneNoneTrueTrueTall
- | BlockState::GraniteWall_TallNoneNoneTrueFalseLow
- | BlockState::GraniteWall_TallNoneNoneTrueFalseTall
- | BlockState::StoneBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::StoneBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::StoneBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::StoneBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::StoneBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::StoneBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::StoneBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::StoneBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::MudBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::MudBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::MudBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::MudBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::MudBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::MudBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::MudBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::MudBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::NetherBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::NetherBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::NetherBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::NetherBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::NetherBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::NetherBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::NetherBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::NetherBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::AndesiteWall_LowNoneNoneTrueTrueLow
- | BlockState::AndesiteWall_LowNoneNoneTrueTrueTall
- | BlockState::AndesiteWall_LowNoneNoneTrueFalseLow
- | BlockState::AndesiteWall_LowNoneNoneTrueFalseTall
- | BlockState::AndesiteWall_TallNoneNoneTrueTrueLow
- | BlockState::AndesiteWall_TallNoneNoneTrueTrueTall
- | BlockState::AndesiteWall_TallNoneNoneTrueFalseLow
- | BlockState::AndesiteWall_TallNoneNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::SandstoneWall_LowNoneNoneTrueTrueLow
- | BlockState::SandstoneWall_LowNoneNoneTrueTrueTall
- | BlockState::SandstoneWall_LowNoneNoneTrueFalseLow
- | BlockState::SandstoneWall_LowNoneNoneTrueFalseTall
- | BlockState::SandstoneWall_TallNoneNoneTrueTrueLow
- | BlockState::SandstoneWall_TallNoneNoneTrueTrueTall
- | BlockState::SandstoneWall_TallNoneNoneTrueFalseLow
- | BlockState::SandstoneWall_TallNoneNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::DioriteWall_LowNoneNoneTrueTrueLow
- | BlockState::DioriteWall_LowNoneNoneTrueTrueTall
- | BlockState::DioriteWall_LowNoneNoneTrueFalseLow
- | BlockState::DioriteWall_LowNoneNoneTrueFalseTall
- | BlockState::DioriteWall_TallNoneNoneTrueTrueLow
- | BlockState::DioriteWall_TallNoneNoneTrueTrueTall
- | BlockState::DioriteWall_TallNoneNoneTrueFalseLow
- | BlockState::DioriteWall_TallNoneNoneTrueFalseTall
- | BlockState::BlackstoneWall_LowNoneNoneTrueTrueLow
- | BlockState::BlackstoneWall_LowNoneNoneTrueTrueTall
- | BlockState::BlackstoneWall_LowNoneNoneTrueFalseLow
- | BlockState::BlackstoneWall_LowNoneNoneTrueFalseTall
- | BlockState::BlackstoneWall_TallNoneNoneTrueTrueLow
- | BlockState::BlackstoneWall_TallNoneNoneTrueTrueTall
- | BlockState::BlackstoneWall_TallNoneNoneTrueFalseLow
- | BlockState::BlackstoneWall_TallNoneNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowNoneNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowNoneNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowNoneNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowNoneNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallNoneNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallNoneNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallNoneNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallNoneNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowNoneNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowNoneNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowNoneNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowNoneNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallNoneNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallNoneNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallNoneNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallNoneNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowNoneNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowNoneNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowNoneNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowNoneNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallNoneNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallNoneNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallNoneNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallNoneNoneTrueFalseTall
- | BlockState::DeepslateTileWall_LowNoneNoneTrueTrueLow
- | BlockState::DeepslateTileWall_LowNoneNoneTrueTrueTall
- | BlockState::DeepslateTileWall_LowNoneNoneTrueFalseLow
- | BlockState::DeepslateTileWall_LowNoneNoneTrueFalseTall
- | BlockState::DeepslateTileWall_TallNoneNoneTrueTrueLow
- | BlockState::DeepslateTileWall_TallNoneNoneTrueTrueTall
- | BlockState::DeepslateTileWall_TallNoneNoneTrueFalseLow
- | BlockState::DeepslateTileWall_TallNoneNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_LowNoneNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_LowNoneNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_LowNoneNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_LowNoneNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_TallNoneNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_TallNoneNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_TallNoneNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_TallNoneNoneTrueFalseTall => &SHAPE155,
- BlockState::CobblestoneWall_LowNoneNoneFalseTrueNone
- | BlockState::CobblestoneWall_LowNoneNoneFalseFalseNone
- | BlockState::CobblestoneWall_TallNoneNoneFalseTrueNone
- | BlockState::CobblestoneWall_TallNoneNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowNoneNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowNoneNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallNoneNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallNoneNoneFalseFalseNone
- | BlockState::BrickWall_LowNoneNoneFalseTrueNone
- | BlockState::BrickWall_LowNoneNoneFalseFalseNone
- | BlockState::BrickWall_TallNoneNoneFalseTrueNone
- | BlockState::BrickWall_TallNoneNoneFalseFalseNone
- | BlockState::PrismarineWall_LowNoneNoneFalseTrueNone
- | BlockState::PrismarineWall_LowNoneNoneFalseFalseNone
- | BlockState::PrismarineWall_TallNoneNoneFalseTrueNone
- | BlockState::PrismarineWall_TallNoneNoneFalseFalseNone
- | BlockState::RedSandstoneWall_LowNoneNoneFalseTrueNone
- | BlockState::RedSandstoneWall_LowNoneNoneFalseFalseNone
- | BlockState::RedSandstoneWall_TallNoneNoneFalseTrueNone
- | BlockState::RedSandstoneWall_TallNoneNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::GraniteWall_LowNoneNoneFalseTrueNone
- | BlockState::GraniteWall_LowNoneNoneFalseFalseNone
- | BlockState::GraniteWall_TallNoneNoneFalseTrueNone
- | BlockState::GraniteWall_TallNoneNoneFalseFalseNone
- | BlockState::StoneBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::StoneBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::StoneBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::StoneBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::MudBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::MudBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::MudBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::MudBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::NetherBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::NetherBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::NetherBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::NetherBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::AndesiteWall_LowNoneNoneFalseTrueNone
- | BlockState::AndesiteWall_LowNoneNoneFalseFalseNone
- | BlockState::AndesiteWall_TallNoneNoneFalseTrueNone
- | BlockState::AndesiteWall_TallNoneNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::SandstoneWall_LowNoneNoneFalseTrueNone
- | BlockState::SandstoneWall_LowNoneNoneFalseFalseNone
- | BlockState::SandstoneWall_TallNoneNoneFalseTrueNone
- | BlockState::SandstoneWall_TallNoneNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::DioriteWall_LowNoneNoneFalseTrueNone
- | BlockState::DioriteWall_LowNoneNoneFalseFalseNone
- | BlockState::DioriteWall_TallNoneNoneFalseTrueNone
- | BlockState::DioriteWall_TallNoneNoneFalseFalseNone
- | BlockState::BlackstoneWall_LowNoneNoneFalseTrueNone
- | BlockState::BlackstoneWall_LowNoneNoneFalseFalseNone
- | BlockState::BlackstoneWall_TallNoneNoneFalseTrueNone
- | BlockState::BlackstoneWall_TallNoneNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowNoneNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowNoneNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallNoneNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallNoneNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowNoneNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowNoneNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallNoneNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallNoneNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowNoneNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowNoneNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallNoneNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallNoneNoneFalseFalseNone
- | BlockState::DeepslateTileWall_LowNoneNoneFalseTrueNone
- | BlockState::DeepslateTileWall_LowNoneNoneFalseFalseNone
- | BlockState::DeepslateTileWall_TallNoneNoneFalseTrueNone
- | BlockState::DeepslateTileWall_TallNoneNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_LowNoneNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_LowNoneNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_TallNoneNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_TallNoneNoneFalseFalseNone => &SHAPE156,
- BlockState::CobblestoneWall_LowNoneNoneFalseTrueLow
- | BlockState::CobblestoneWall_LowNoneNoneFalseTrueTall
- | BlockState::CobblestoneWall_LowNoneNoneFalseFalseLow
- | BlockState::CobblestoneWall_LowNoneNoneFalseFalseTall
- | BlockState::CobblestoneWall_TallNoneNoneFalseTrueLow
- | BlockState::CobblestoneWall_TallNoneNoneFalseTrueTall
- | BlockState::CobblestoneWall_TallNoneNoneFalseFalseLow
- | BlockState::CobblestoneWall_TallNoneNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowNoneNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowNoneNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowNoneNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowNoneNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallNoneNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallNoneNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallNoneNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallNoneNoneFalseFalseTall
- | BlockState::BrickWall_LowNoneNoneFalseTrueLow
- | BlockState::BrickWall_LowNoneNoneFalseTrueTall
- | BlockState::BrickWall_LowNoneNoneFalseFalseLow
- | BlockState::BrickWall_LowNoneNoneFalseFalseTall
- | BlockState::BrickWall_TallNoneNoneFalseTrueLow
- | BlockState::BrickWall_TallNoneNoneFalseTrueTall
- | BlockState::BrickWall_TallNoneNoneFalseFalseLow
- | BlockState::BrickWall_TallNoneNoneFalseFalseTall
- | BlockState::PrismarineWall_LowNoneNoneFalseTrueLow
- | BlockState::PrismarineWall_LowNoneNoneFalseTrueTall
- | BlockState::PrismarineWall_LowNoneNoneFalseFalseLow
- | BlockState::PrismarineWall_LowNoneNoneFalseFalseTall
- | BlockState::PrismarineWall_TallNoneNoneFalseTrueLow
- | BlockState::PrismarineWall_TallNoneNoneFalseTrueTall
- | BlockState::PrismarineWall_TallNoneNoneFalseFalseLow
- | BlockState::PrismarineWall_TallNoneNoneFalseFalseTall
- | BlockState::RedSandstoneWall_LowNoneNoneFalseTrueLow
- | BlockState::RedSandstoneWall_LowNoneNoneFalseTrueTall
- | BlockState::RedSandstoneWall_LowNoneNoneFalseFalseLow
- | BlockState::RedSandstoneWall_LowNoneNoneFalseFalseTall
- | BlockState::RedSandstoneWall_TallNoneNoneFalseTrueLow
- | BlockState::RedSandstoneWall_TallNoneNoneFalseTrueTall
- | BlockState::RedSandstoneWall_TallNoneNoneFalseFalseLow
- | BlockState::RedSandstoneWall_TallNoneNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::GraniteWall_LowNoneNoneFalseTrueLow
- | BlockState::GraniteWall_LowNoneNoneFalseTrueTall
- | BlockState::GraniteWall_LowNoneNoneFalseFalseLow
- | BlockState::GraniteWall_LowNoneNoneFalseFalseTall
- | BlockState::GraniteWall_TallNoneNoneFalseTrueLow
- | BlockState::GraniteWall_TallNoneNoneFalseTrueTall
- | BlockState::GraniteWall_TallNoneNoneFalseFalseLow
- | BlockState::GraniteWall_TallNoneNoneFalseFalseTall
- | BlockState::StoneBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::StoneBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::StoneBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::StoneBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::StoneBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::StoneBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::StoneBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::StoneBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::MudBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::MudBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::MudBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::MudBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::MudBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::MudBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::MudBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::MudBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::NetherBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::NetherBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::NetherBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::NetherBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::NetherBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::NetherBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::NetherBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::NetherBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::AndesiteWall_LowNoneNoneFalseTrueLow
- | BlockState::AndesiteWall_LowNoneNoneFalseTrueTall
- | BlockState::AndesiteWall_LowNoneNoneFalseFalseLow
- | BlockState::AndesiteWall_LowNoneNoneFalseFalseTall
- | BlockState::AndesiteWall_TallNoneNoneFalseTrueLow
- | BlockState::AndesiteWall_TallNoneNoneFalseTrueTall
- | BlockState::AndesiteWall_TallNoneNoneFalseFalseLow
- | BlockState::AndesiteWall_TallNoneNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::SandstoneWall_LowNoneNoneFalseTrueLow
- | BlockState::SandstoneWall_LowNoneNoneFalseTrueTall
- | BlockState::SandstoneWall_LowNoneNoneFalseFalseLow
- | BlockState::SandstoneWall_LowNoneNoneFalseFalseTall
- | BlockState::SandstoneWall_TallNoneNoneFalseTrueLow
- | BlockState::SandstoneWall_TallNoneNoneFalseTrueTall
- | BlockState::SandstoneWall_TallNoneNoneFalseFalseLow
- | BlockState::SandstoneWall_TallNoneNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::DioriteWall_LowNoneNoneFalseTrueLow
- | BlockState::DioriteWall_LowNoneNoneFalseTrueTall
- | BlockState::DioriteWall_LowNoneNoneFalseFalseLow
- | BlockState::DioriteWall_LowNoneNoneFalseFalseTall
- | BlockState::DioriteWall_TallNoneNoneFalseTrueLow
- | BlockState::DioriteWall_TallNoneNoneFalseTrueTall
- | BlockState::DioriteWall_TallNoneNoneFalseFalseLow
- | BlockState::DioriteWall_TallNoneNoneFalseFalseTall
- | BlockState::BlackstoneWall_LowNoneNoneFalseTrueLow
- | BlockState::BlackstoneWall_LowNoneNoneFalseTrueTall
- | BlockState::BlackstoneWall_LowNoneNoneFalseFalseLow
- | BlockState::BlackstoneWall_LowNoneNoneFalseFalseTall
- | BlockState::BlackstoneWall_TallNoneNoneFalseTrueLow
- | BlockState::BlackstoneWall_TallNoneNoneFalseTrueTall
- | BlockState::BlackstoneWall_TallNoneNoneFalseFalseLow
- | BlockState::BlackstoneWall_TallNoneNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowNoneNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowNoneNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowNoneNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowNoneNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallNoneNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallNoneNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallNoneNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallNoneNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowNoneNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowNoneNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowNoneNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowNoneNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallNoneNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallNoneNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallNoneNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallNoneNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowNoneNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowNoneNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowNoneNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowNoneNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallNoneNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallNoneNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallNoneNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallNoneNoneFalseFalseTall
- | BlockState::DeepslateTileWall_LowNoneNoneFalseTrueLow
- | BlockState::DeepslateTileWall_LowNoneNoneFalseTrueTall
- | BlockState::DeepslateTileWall_LowNoneNoneFalseFalseLow
- | BlockState::DeepslateTileWall_LowNoneNoneFalseFalseTall
- | BlockState::DeepslateTileWall_TallNoneNoneFalseTrueLow
- | BlockState::DeepslateTileWall_TallNoneNoneFalseTrueTall
- | BlockState::DeepslateTileWall_TallNoneNoneFalseFalseLow
- | BlockState::DeepslateTileWall_TallNoneNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_LowNoneNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_LowNoneNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_LowNoneNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_LowNoneNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_TallNoneNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_TallNoneNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_TallNoneNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_TallNoneNoneFalseFalseTall => &SHAPE157,
- BlockState::CobblestoneWall_LowNoneLowTrueTrueNone
- | BlockState::CobblestoneWall_LowNoneLowTrueFalseNone
- | BlockState::CobblestoneWall_LowNoneTallTrueTrueNone
- | BlockState::CobblestoneWall_LowNoneTallTrueFalseNone
- | BlockState::CobblestoneWall_TallNoneLowTrueTrueNone
- | BlockState::CobblestoneWall_TallNoneLowTrueFalseNone
- | BlockState::CobblestoneWall_TallNoneTallTrueTrueNone
- | BlockState::CobblestoneWall_TallNoneTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowNoneLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowNoneLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowNoneTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowNoneTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallNoneLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallNoneLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallNoneTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallNoneTallTrueFalseNone
- | BlockState::BrickWall_LowNoneLowTrueTrueNone
- | BlockState::BrickWall_LowNoneLowTrueFalseNone
- | BlockState::BrickWall_LowNoneTallTrueTrueNone
- | BlockState::BrickWall_LowNoneTallTrueFalseNone
- | BlockState::BrickWall_TallNoneLowTrueTrueNone
- | BlockState::BrickWall_TallNoneLowTrueFalseNone
- | BlockState::BrickWall_TallNoneTallTrueTrueNone
- | BlockState::BrickWall_TallNoneTallTrueFalseNone
- | BlockState::PrismarineWall_LowNoneLowTrueTrueNone
- | BlockState::PrismarineWall_LowNoneLowTrueFalseNone
- | BlockState::PrismarineWall_LowNoneTallTrueTrueNone
- | BlockState::PrismarineWall_LowNoneTallTrueFalseNone
- | BlockState::PrismarineWall_TallNoneLowTrueTrueNone
- | BlockState::PrismarineWall_TallNoneLowTrueFalseNone
- | BlockState::PrismarineWall_TallNoneTallTrueTrueNone
- | BlockState::PrismarineWall_TallNoneTallTrueFalseNone
- | BlockState::RedSandstoneWall_LowNoneLowTrueTrueNone
- | BlockState::RedSandstoneWall_LowNoneLowTrueFalseNone
- | BlockState::RedSandstoneWall_LowNoneTallTrueTrueNone
- | BlockState::RedSandstoneWall_LowNoneTallTrueFalseNone
- | BlockState::RedSandstoneWall_TallNoneLowTrueTrueNone
- | BlockState::RedSandstoneWall_TallNoneLowTrueFalseNone
- | BlockState::RedSandstoneWall_TallNoneTallTrueTrueNone
- | BlockState::RedSandstoneWall_TallNoneTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowNoneLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowNoneLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowNoneTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowNoneTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallNoneLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallNoneLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallNoneTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallNoneTallTrueFalseNone
- | BlockState::GraniteWall_LowNoneLowTrueTrueNone
- | BlockState::GraniteWall_LowNoneLowTrueFalseNone
- | BlockState::GraniteWall_LowNoneTallTrueTrueNone
- | BlockState::GraniteWall_LowNoneTallTrueFalseNone
- | BlockState::GraniteWall_TallNoneLowTrueTrueNone
- | BlockState::GraniteWall_TallNoneLowTrueFalseNone
- | BlockState::GraniteWall_TallNoneTallTrueTrueNone
- | BlockState::GraniteWall_TallNoneTallTrueFalseNone
- | BlockState::StoneBrickWall_LowNoneLowTrueTrueNone
- | BlockState::StoneBrickWall_LowNoneLowTrueFalseNone
- | BlockState::StoneBrickWall_LowNoneTallTrueTrueNone
- | BlockState::StoneBrickWall_LowNoneTallTrueFalseNone
- | BlockState::StoneBrickWall_TallNoneLowTrueTrueNone
- | BlockState::StoneBrickWall_TallNoneLowTrueFalseNone
- | BlockState::StoneBrickWall_TallNoneTallTrueTrueNone
- | BlockState::StoneBrickWall_TallNoneTallTrueFalseNone
- | BlockState::MudBrickWall_LowNoneLowTrueTrueNone
- | BlockState::MudBrickWall_LowNoneLowTrueFalseNone
- | BlockState::MudBrickWall_LowNoneTallTrueTrueNone
- | BlockState::MudBrickWall_LowNoneTallTrueFalseNone
- | BlockState::MudBrickWall_TallNoneLowTrueTrueNone
- | BlockState::MudBrickWall_TallNoneLowTrueFalseNone
- | BlockState::MudBrickWall_TallNoneTallTrueTrueNone
- | BlockState::MudBrickWall_TallNoneTallTrueFalseNone
- | BlockState::NetherBrickWall_LowNoneLowTrueTrueNone
- | BlockState::NetherBrickWall_LowNoneLowTrueFalseNone
- | BlockState::NetherBrickWall_LowNoneTallTrueTrueNone
- | BlockState::NetherBrickWall_LowNoneTallTrueFalseNone
- | BlockState::NetherBrickWall_TallNoneLowTrueTrueNone
- | BlockState::NetherBrickWall_TallNoneLowTrueFalseNone
- | BlockState::NetherBrickWall_TallNoneTallTrueTrueNone
- | BlockState::NetherBrickWall_TallNoneTallTrueFalseNone
- | BlockState::AndesiteWall_LowNoneLowTrueTrueNone
- | BlockState::AndesiteWall_LowNoneLowTrueFalseNone
- | BlockState::AndesiteWall_LowNoneTallTrueTrueNone
- | BlockState::AndesiteWall_LowNoneTallTrueFalseNone
- | BlockState::AndesiteWall_TallNoneLowTrueTrueNone
- | BlockState::AndesiteWall_TallNoneLowTrueFalseNone
- | BlockState::AndesiteWall_TallNoneTallTrueTrueNone
- | BlockState::AndesiteWall_TallNoneTallTrueFalseNone
- | BlockState::RedNetherBrickWall_LowNoneLowTrueTrueNone
- | BlockState::RedNetherBrickWall_LowNoneLowTrueFalseNone
- | BlockState::RedNetherBrickWall_LowNoneTallTrueTrueNone
- | BlockState::RedNetherBrickWall_LowNoneTallTrueFalseNone
- | BlockState::RedNetherBrickWall_TallNoneLowTrueTrueNone
- | BlockState::RedNetherBrickWall_TallNoneLowTrueFalseNone
- | BlockState::RedNetherBrickWall_TallNoneTallTrueTrueNone
- | BlockState::RedNetherBrickWall_TallNoneTallTrueFalseNone
- | BlockState::SandstoneWall_LowNoneLowTrueTrueNone
- | BlockState::SandstoneWall_LowNoneLowTrueFalseNone
- | BlockState::SandstoneWall_LowNoneTallTrueTrueNone
- | BlockState::SandstoneWall_LowNoneTallTrueFalseNone
- | BlockState::SandstoneWall_TallNoneLowTrueTrueNone
- | BlockState::SandstoneWall_TallNoneLowTrueFalseNone
- | BlockState::SandstoneWall_TallNoneTallTrueTrueNone
- | BlockState::SandstoneWall_TallNoneTallTrueFalseNone
- | BlockState::EndStoneBrickWall_LowNoneLowTrueTrueNone
- | BlockState::EndStoneBrickWall_LowNoneLowTrueFalseNone
- | BlockState::EndStoneBrickWall_LowNoneTallTrueTrueNone
- | BlockState::EndStoneBrickWall_LowNoneTallTrueFalseNone
- | BlockState::EndStoneBrickWall_TallNoneLowTrueTrueNone
- | BlockState::EndStoneBrickWall_TallNoneLowTrueFalseNone
- | BlockState::EndStoneBrickWall_TallNoneTallTrueTrueNone
- | BlockState::EndStoneBrickWall_TallNoneTallTrueFalseNone
- | BlockState::DioriteWall_LowNoneLowTrueTrueNone
- | BlockState::DioriteWall_LowNoneLowTrueFalseNone
- | BlockState::DioriteWall_LowNoneTallTrueTrueNone
- | BlockState::DioriteWall_LowNoneTallTrueFalseNone
- | BlockState::DioriteWall_TallNoneLowTrueTrueNone
- | BlockState::DioriteWall_TallNoneLowTrueFalseNone
- | BlockState::DioriteWall_TallNoneTallTrueTrueNone
- | BlockState::DioriteWall_TallNoneTallTrueFalseNone
- | BlockState::BlackstoneWall_LowNoneLowTrueTrueNone
- | BlockState::BlackstoneWall_LowNoneLowTrueFalseNone
- | BlockState::BlackstoneWall_LowNoneTallTrueTrueNone
- | BlockState::BlackstoneWall_LowNoneTallTrueFalseNone
- | BlockState::BlackstoneWall_TallNoneLowTrueTrueNone
- | BlockState::BlackstoneWall_TallNoneLowTrueFalseNone
- | BlockState::BlackstoneWall_TallNoneTallTrueTrueNone
- | BlockState::BlackstoneWall_TallNoneTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowNoneLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowNoneLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowNoneTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowNoneTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallNoneLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallNoneLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallNoneTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallNoneTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowNoneLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowNoneLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowNoneTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowNoneTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallNoneLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallNoneLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallNoneTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallNoneTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowNoneLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowNoneLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowNoneTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowNoneTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallNoneLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallNoneLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallNoneTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallNoneTallTrueFalseNone
- | BlockState::DeepslateTileWall_LowNoneLowTrueTrueNone
- | BlockState::DeepslateTileWall_LowNoneLowTrueFalseNone
- | BlockState::DeepslateTileWall_LowNoneTallTrueTrueNone
- | BlockState::DeepslateTileWall_LowNoneTallTrueFalseNone
- | BlockState::DeepslateTileWall_TallNoneLowTrueTrueNone
- | BlockState::DeepslateTileWall_TallNoneLowTrueFalseNone
- | BlockState::DeepslateTileWall_TallNoneTallTrueTrueNone
- | BlockState::DeepslateTileWall_TallNoneTallTrueFalseNone
- | BlockState::DeepslateBrickWall_LowNoneLowTrueTrueNone
- | BlockState::DeepslateBrickWall_LowNoneLowTrueFalseNone
- | BlockState::DeepslateBrickWall_LowNoneTallTrueTrueNone
- | BlockState::DeepslateBrickWall_LowNoneTallTrueFalseNone
- | BlockState::DeepslateBrickWall_TallNoneLowTrueTrueNone
- | BlockState::DeepslateBrickWall_TallNoneLowTrueFalseNone
- | BlockState::DeepslateBrickWall_TallNoneTallTrueTrueNone
- | BlockState::DeepslateBrickWall_TallNoneTallTrueFalseNone => &SHAPE158,
- BlockState::CobblestoneWall_LowNoneLowTrueTrueLow
- | BlockState::CobblestoneWall_LowNoneLowTrueTrueTall
- | BlockState::CobblestoneWall_LowNoneLowTrueFalseLow
- | BlockState::CobblestoneWall_LowNoneLowTrueFalseTall
- | BlockState::CobblestoneWall_LowNoneTallTrueTrueLow
- | BlockState::CobblestoneWall_LowNoneTallTrueTrueTall
- | BlockState::CobblestoneWall_LowNoneTallTrueFalseLow
- | BlockState::CobblestoneWall_LowNoneTallTrueFalseTall
- | BlockState::CobblestoneWall_TallNoneLowTrueTrueLow
- | BlockState::CobblestoneWall_TallNoneLowTrueTrueTall
- | BlockState::CobblestoneWall_TallNoneLowTrueFalseLow
- | BlockState::CobblestoneWall_TallNoneLowTrueFalseTall
- | BlockState::CobblestoneWall_TallNoneTallTrueTrueLow
- | BlockState::CobblestoneWall_TallNoneTallTrueTrueTall
- | BlockState::CobblestoneWall_TallNoneTallTrueFalseLow
- | BlockState::CobblestoneWall_TallNoneTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowNoneLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowNoneLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowNoneLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowNoneLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowNoneTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowNoneTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowNoneTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowNoneTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallNoneLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallNoneLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallNoneLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallNoneLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallNoneTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallNoneTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallNoneTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallNoneTallTrueFalseTall
- | BlockState::BrickWall_LowNoneLowTrueTrueLow
- | BlockState::BrickWall_LowNoneLowTrueTrueTall
- | BlockState::BrickWall_LowNoneLowTrueFalseLow
- | BlockState::BrickWall_LowNoneLowTrueFalseTall
- | BlockState::BrickWall_LowNoneTallTrueTrueLow
- | BlockState::BrickWall_LowNoneTallTrueTrueTall
- | BlockState::BrickWall_LowNoneTallTrueFalseLow
- | BlockState::BrickWall_LowNoneTallTrueFalseTall
- | BlockState::BrickWall_TallNoneLowTrueTrueLow
- | BlockState::BrickWall_TallNoneLowTrueTrueTall
- | BlockState::BrickWall_TallNoneLowTrueFalseLow
- | BlockState::BrickWall_TallNoneLowTrueFalseTall
- | BlockState::BrickWall_TallNoneTallTrueTrueLow
- | BlockState::BrickWall_TallNoneTallTrueTrueTall
- | BlockState::BrickWall_TallNoneTallTrueFalseLow
- | BlockState::BrickWall_TallNoneTallTrueFalseTall
- | BlockState::PrismarineWall_LowNoneLowTrueTrueLow
- | BlockState::PrismarineWall_LowNoneLowTrueTrueTall
- | BlockState::PrismarineWall_LowNoneLowTrueFalseLow
- | BlockState::PrismarineWall_LowNoneLowTrueFalseTall
- | BlockState::PrismarineWall_LowNoneTallTrueTrueLow
- | BlockState::PrismarineWall_LowNoneTallTrueTrueTall
- | BlockState::PrismarineWall_LowNoneTallTrueFalseLow
- | BlockState::PrismarineWall_LowNoneTallTrueFalseTall
- | BlockState::PrismarineWall_TallNoneLowTrueTrueLow
- | BlockState::PrismarineWall_TallNoneLowTrueTrueTall
- | BlockState::PrismarineWall_TallNoneLowTrueFalseLow
- | BlockState::PrismarineWall_TallNoneLowTrueFalseTall
- | BlockState::PrismarineWall_TallNoneTallTrueTrueLow
- | BlockState::PrismarineWall_TallNoneTallTrueTrueTall
- | BlockState::PrismarineWall_TallNoneTallTrueFalseLow
- | BlockState::PrismarineWall_TallNoneTallTrueFalseTall
- | BlockState::RedSandstoneWall_LowNoneLowTrueTrueLow
- | BlockState::RedSandstoneWall_LowNoneLowTrueTrueTall
- | BlockState::RedSandstoneWall_LowNoneLowTrueFalseLow
- | BlockState::RedSandstoneWall_LowNoneLowTrueFalseTall
- | BlockState::RedSandstoneWall_LowNoneTallTrueTrueLow
- | BlockState::RedSandstoneWall_LowNoneTallTrueTrueTall
- | BlockState::RedSandstoneWall_LowNoneTallTrueFalseLow
- | BlockState::RedSandstoneWall_LowNoneTallTrueFalseTall
- | BlockState::RedSandstoneWall_TallNoneLowTrueTrueLow
- | BlockState::RedSandstoneWall_TallNoneLowTrueTrueTall
- | BlockState::RedSandstoneWall_TallNoneLowTrueFalseLow
- | BlockState::RedSandstoneWall_TallNoneLowTrueFalseTall
- | BlockState::RedSandstoneWall_TallNoneTallTrueTrueLow
- | BlockState::RedSandstoneWall_TallNoneTallTrueTrueTall
- | BlockState::RedSandstoneWall_TallNoneTallTrueFalseLow
- | BlockState::RedSandstoneWall_TallNoneTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowNoneLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowNoneLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowNoneLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowNoneLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowNoneTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowNoneTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowNoneTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowNoneTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallNoneLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallNoneLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallNoneLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallNoneLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallNoneTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallNoneTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallNoneTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallNoneTallTrueFalseTall
- | BlockState::GraniteWall_LowNoneLowTrueTrueLow
- | BlockState::GraniteWall_LowNoneLowTrueTrueTall
- | BlockState::GraniteWall_LowNoneLowTrueFalseLow
- | BlockState::GraniteWall_LowNoneLowTrueFalseTall
- | BlockState::GraniteWall_LowNoneTallTrueTrueLow
- | BlockState::GraniteWall_LowNoneTallTrueTrueTall
- | BlockState::GraniteWall_LowNoneTallTrueFalseLow
- | BlockState::GraniteWall_LowNoneTallTrueFalseTall
- | BlockState::GraniteWall_TallNoneLowTrueTrueLow
- | BlockState::GraniteWall_TallNoneLowTrueTrueTall
- | BlockState::GraniteWall_TallNoneLowTrueFalseLow
- | BlockState::GraniteWall_TallNoneLowTrueFalseTall
- | BlockState::GraniteWall_TallNoneTallTrueTrueLow
- | BlockState::GraniteWall_TallNoneTallTrueTrueTall
- | BlockState::GraniteWall_TallNoneTallTrueFalseLow
- | BlockState::GraniteWall_TallNoneTallTrueFalseTall
- | BlockState::StoneBrickWall_LowNoneLowTrueTrueLow
- | BlockState::StoneBrickWall_LowNoneLowTrueTrueTall
- | BlockState::StoneBrickWall_LowNoneLowTrueFalseLow
- | BlockState::StoneBrickWall_LowNoneLowTrueFalseTall
- | BlockState::StoneBrickWall_LowNoneTallTrueTrueLow
- | BlockState::StoneBrickWall_LowNoneTallTrueTrueTall
- | BlockState::StoneBrickWall_LowNoneTallTrueFalseLow
- | BlockState::StoneBrickWall_LowNoneTallTrueFalseTall
- | BlockState::StoneBrickWall_TallNoneLowTrueTrueLow
- | BlockState::StoneBrickWall_TallNoneLowTrueTrueTall
- | BlockState::StoneBrickWall_TallNoneLowTrueFalseLow
- | BlockState::StoneBrickWall_TallNoneLowTrueFalseTall
- | BlockState::StoneBrickWall_TallNoneTallTrueTrueLow
- | BlockState::StoneBrickWall_TallNoneTallTrueTrueTall
- | BlockState::StoneBrickWall_TallNoneTallTrueFalseLow
- | BlockState::StoneBrickWall_TallNoneTallTrueFalseTall
- | BlockState::MudBrickWall_LowNoneLowTrueTrueLow
- | BlockState::MudBrickWall_LowNoneLowTrueTrueTall
- | BlockState::MudBrickWall_LowNoneLowTrueFalseLow
- | BlockState::MudBrickWall_LowNoneLowTrueFalseTall
- | BlockState::MudBrickWall_LowNoneTallTrueTrueLow
- | BlockState::MudBrickWall_LowNoneTallTrueTrueTall
- | BlockState::MudBrickWall_LowNoneTallTrueFalseLow
- | BlockState::MudBrickWall_LowNoneTallTrueFalseTall
- | BlockState::MudBrickWall_TallNoneLowTrueTrueLow
- | BlockState::MudBrickWall_TallNoneLowTrueTrueTall
- | BlockState::MudBrickWall_TallNoneLowTrueFalseLow
- | BlockState::MudBrickWall_TallNoneLowTrueFalseTall
- | BlockState::MudBrickWall_TallNoneTallTrueTrueLow
- | BlockState::MudBrickWall_TallNoneTallTrueTrueTall
- | BlockState::MudBrickWall_TallNoneTallTrueFalseLow
- | BlockState::MudBrickWall_TallNoneTallTrueFalseTall
- | BlockState::NetherBrickWall_LowNoneLowTrueTrueLow
- | BlockState::NetherBrickWall_LowNoneLowTrueTrueTall
- | BlockState::NetherBrickWall_LowNoneLowTrueFalseLow
- | BlockState::NetherBrickWall_LowNoneLowTrueFalseTall
- | BlockState::NetherBrickWall_LowNoneTallTrueTrueLow
- | BlockState::NetherBrickWall_LowNoneTallTrueTrueTall
- | BlockState::NetherBrickWall_LowNoneTallTrueFalseLow
- | BlockState::NetherBrickWall_LowNoneTallTrueFalseTall
- | BlockState::NetherBrickWall_TallNoneLowTrueTrueLow
- | BlockState::NetherBrickWall_TallNoneLowTrueTrueTall
- | BlockState::NetherBrickWall_TallNoneLowTrueFalseLow
- | BlockState::NetherBrickWall_TallNoneLowTrueFalseTall
- | BlockState::NetherBrickWall_TallNoneTallTrueTrueLow
- | BlockState::NetherBrickWall_TallNoneTallTrueTrueTall
- | BlockState::NetherBrickWall_TallNoneTallTrueFalseLow
- | BlockState::NetherBrickWall_TallNoneTallTrueFalseTall
- | BlockState::AndesiteWall_LowNoneLowTrueTrueLow
- | BlockState::AndesiteWall_LowNoneLowTrueTrueTall
- | BlockState::AndesiteWall_LowNoneLowTrueFalseLow
- | BlockState::AndesiteWall_LowNoneLowTrueFalseTall
- | BlockState::AndesiteWall_LowNoneTallTrueTrueLow
- | BlockState::AndesiteWall_LowNoneTallTrueTrueTall
- | BlockState::AndesiteWall_LowNoneTallTrueFalseLow
- | BlockState::AndesiteWall_LowNoneTallTrueFalseTall
- | BlockState::AndesiteWall_TallNoneLowTrueTrueLow
- | BlockState::AndesiteWall_TallNoneLowTrueTrueTall
- | BlockState::AndesiteWall_TallNoneLowTrueFalseLow
- | BlockState::AndesiteWall_TallNoneLowTrueFalseTall
- | BlockState::AndesiteWall_TallNoneTallTrueTrueLow
- | BlockState::AndesiteWall_TallNoneTallTrueTrueTall
- | BlockState::AndesiteWall_TallNoneTallTrueFalseLow
- | BlockState::AndesiteWall_TallNoneTallTrueFalseTall
- | BlockState::RedNetherBrickWall_LowNoneLowTrueTrueLow
- | BlockState::RedNetherBrickWall_LowNoneLowTrueTrueTall
- | BlockState::RedNetherBrickWall_LowNoneLowTrueFalseLow
- | BlockState::RedNetherBrickWall_LowNoneLowTrueFalseTall
- | BlockState::RedNetherBrickWall_LowNoneTallTrueTrueLow
- | BlockState::RedNetherBrickWall_LowNoneTallTrueTrueTall
- | BlockState::RedNetherBrickWall_LowNoneTallTrueFalseLow
- | BlockState::RedNetherBrickWall_LowNoneTallTrueFalseTall
- | BlockState::RedNetherBrickWall_TallNoneLowTrueTrueLow
- | BlockState::RedNetherBrickWall_TallNoneLowTrueTrueTall
- | BlockState::RedNetherBrickWall_TallNoneLowTrueFalseLow
- | BlockState::RedNetherBrickWall_TallNoneLowTrueFalseTall
- | BlockState::RedNetherBrickWall_TallNoneTallTrueTrueLow
- | BlockState::RedNetherBrickWall_TallNoneTallTrueTrueTall
- | BlockState::RedNetherBrickWall_TallNoneTallTrueFalseLow
- | BlockState::RedNetherBrickWall_TallNoneTallTrueFalseTall
- | BlockState::SandstoneWall_LowNoneLowTrueTrueLow
- | BlockState::SandstoneWall_LowNoneLowTrueTrueTall
- | BlockState::SandstoneWall_LowNoneLowTrueFalseLow
- | BlockState::SandstoneWall_LowNoneLowTrueFalseTall
- | BlockState::SandstoneWall_LowNoneTallTrueTrueLow
- | BlockState::SandstoneWall_LowNoneTallTrueTrueTall
- | BlockState::SandstoneWall_LowNoneTallTrueFalseLow
- | BlockState::SandstoneWall_LowNoneTallTrueFalseTall
- | BlockState::SandstoneWall_TallNoneLowTrueTrueLow
- | BlockState::SandstoneWall_TallNoneLowTrueTrueTall
- | BlockState::SandstoneWall_TallNoneLowTrueFalseLow
- | BlockState::SandstoneWall_TallNoneLowTrueFalseTall
- | BlockState::SandstoneWall_TallNoneTallTrueTrueLow
- | BlockState::SandstoneWall_TallNoneTallTrueTrueTall
- | BlockState::SandstoneWall_TallNoneTallTrueFalseLow
- | BlockState::SandstoneWall_TallNoneTallTrueFalseTall
- | BlockState::EndStoneBrickWall_LowNoneLowTrueTrueLow
- | BlockState::EndStoneBrickWall_LowNoneLowTrueTrueTall
- | BlockState::EndStoneBrickWall_LowNoneLowTrueFalseLow
- | BlockState::EndStoneBrickWall_LowNoneLowTrueFalseTall
- | BlockState::EndStoneBrickWall_LowNoneTallTrueTrueLow
- | BlockState::EndStoneBrickWall_LowNoneTallTrueTrueTall
- | BlockState::EndStoneBrickWall_LowNoneTallTrueFalseLow
- | BlockState::EndStoneBrickWall_LowNoneTallTrueFalseTall
- | BlockState::EndStoneBrickWall_TallNoneLowTrueTrueLow
- | BlockState::EndStoneBrickWall_TallNoneLowTrueTrueTall
- | BlockState::EndStoneBrickWall_TallNoneLowTrueFalseLow
- | BlockState::EndStoneBrickWall_TallNoneLowTrueFalseTall
- | BlockState::EndStoneBrickWall_TallNoneTallTrueTrueLow
- | BlockState::EndStoneBrickWall_TallNoneTallTrueTrueTall
- | BlockState::EndStoneBrickWall_TallNoneTallTrueFalseLow
- | BlockState::EndStoneBrickWall_TallNoneTallTrueFalseTall
- | BlockState::DioriteWall_LowNoneLowTrueTrueLow
- | BlockState::DioriteWall_LowNoneLowTrueTrueTall
- | BlockState::DioriteWall_LowNoneLowTrueFalseLow
- | BlockState::DioriteWall_LowNoneLowTrueFalseTall
- | BlockState::DioriteWall_LowNoneTallTrueTrueLow
- | BlockState::DioriteWall_LowNoneTallTrueTrueTall
- | BlockState::DioriteWall_LowNoneTallTrueFalseLow
- | BlockState::DioriteWall_LowNoneTallTrueFalseTall
- | BlockState::DioriteWall_TallNoneLowTrueTrueLow
- | BlockState::DioriteWall_TallNoneLowTrueTrueTall
- | BlockState::DioriteWall_TallNoneLowTrueFalseLow
- | BlockState::DioriteWall_TallNoneLowTrueFalseTall
- | BlockState::DioriteWall_TallNoneTallTrueTrueLow
- | BlockState::DioriteWall_TallNoneTallTrueTrueTall
- | BlockState::DioriteWall_TallNoneTallTrueFalseLow
- | BlockState::DioriteWall_TallNoneTallTrueFalseTall
- | BlockState::BlackstoneWall_LowNoneLowTrueTrueLow
- | BlockState::BlackstoneWall_LowNoneLowTrueTrueTall
- | BlockState::BlackstoneWall_LowNoneLowTrueFalseLow
- | BlockState::BlackstoneWall_LowNoneLowTrueFalseTall
- | BlockState::BlackstoneWall_LowNoneTallTrueTrueLow
- | BlockState::BlackstoneWall_LowNoneTallTrueTrueTall
- | BlockState::BlackstoneWall_LowNoneTallTrueFalseLow
- | BlockState::BlackstoneWall_LowNoneTallTrueFalseTall
- | BlockState::BlackstoneWall_TallNoneLowTrueTrueLow
- | BlockState::BlackstoneWall_TallNoneLowTrueTrueTall
- | BlockState::BlackstoneWall_TallNoneLowTrueFalseLow
- | BlockState::BlackstoneWall_TallNoneLowTrueFalseTall
- | BlockState::BlackstoneWall_TallNoneTallTrueTrueLow
- | BlockState::BlackstoneWall_TallNoneTallTrueTrueTall
- | BlockState::BlackstoneWall_TallNoneTallTrueFalseLow
- | BlockState::BlackstoneWall_TallNoneTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowNoneLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowNoneLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowNoneLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowNoneLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowNoneTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowNoneTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowNoneTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowNoneTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallNoneLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallNoneLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallNoneLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallNoneLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallNoneTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallNoneTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallNoneTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallNoneTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowNoneLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowNoneLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowNoneLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowNoneLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowNoneTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowNoneTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowNoneTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowNoneTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallNoneLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallNoneLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallNoneLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallNoneLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallNoneTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallNoneTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallNoneTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallNoneTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowNoneLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowNoneLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowNoneLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowNoneLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowNoneTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowNoneTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowNoneTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowNoneTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallNoneLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallNoneLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallNoneLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallNoneLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallNoneTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallNoneTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallNoneTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallNoneTallTrueFalseTall
- | BlockState::DeepslateTileWall_LowNoneLowTrueTrueLow
- | BlockState::DeepslateTileWall_LowNoneLowTrueTrueTall
- | BlockState::DeepslateTileWall_LowNoneLowTrueFalseLow
- | BlockState::DeepslateTileWall_LowNoneLowTrueFalseTall
- | BlockState::DeepslateTileWall_LowNoneTallTrueTrueLow
- | BlockState::DeepslateTileWall_LowNoneTallTrueTrueTall
- | BlockState::DeepslateTileWall_LowNoneTallTrueFalseLow
- | BlockState::DeepslateTileWall_LowNoneTallTrueFalseTall
- | BlockState::DeepslateTileWall_TallNoneLowTrueTrueLow
- | BlockState::DeepslateTileWall_TallNoneLowTrueTrueTall
- | BlockState::DeepslateTileWall_TallNoneLowTrueFalseLow
- | BlockState::DeepslateTileWall_TallNoneLowTrueFalseTall
- | BlockState::DeepslateTileWall_TallNoneTallTrueTrueLow
- | BlockState::DeepslateTileWall_TallNoneTallTrueTrueTall
- | BlockState::DeepslateTileWall_TallNoneTallTrueFalseLow
- | BlockState::DeepslateTileWall_TallNoneTallTrueFalseTall
- | BlockState::DeepslateBrickWall_LowNoneLowTrueTrueLow
- | BlockState::DeepslateBrickWall_LowNoneLowTrueTrueTall
- | BlockState::DeepslateBrickWall_LowNoneLowTrueFalseLow
- | BlockState::DeepslateBrickWall_LowNoneLowTrueFalseTall
- | BlockState::DeepslateBrickWall_LowNoneTallTrueTrueLow
- | BlockState::DeepslateBrickWall_LowNoneTallTrueTrueTall
- | BlockState::DeepslateBrickWall_LowNoneTallTrueFalseLow
- | BlockState::DeepslateBrickWall_LowNoneTallTrueFalseTall
- | BlockState::DeepslateBrickWall_TallNoneLowTrueTrueLow
- | BlockState::DeepslateBrickWall_TallNoneLowTrueTrueTall
- | BlockState::DeepslateBrickWall_TallNoneLowTrueFalseLow
- | BlockState::DeepslateBrickWall_TallNoneLowTrueFalseTall
- | BlockState::DeepslateBrickWall_TallNoneTallTrueTrueLow
- | BlockState::DeepslateBrickWall_TallNoneTallTrueTrueTall
- | BlockState::DeepslateBrickWall_TallNoneTallTrueFalseLow
- | BlockState::DeepslateBrickWall_TallNoneTallTrueFalseTall => &SHAPE159,
- BlockState::CobblestoneWall_LowNoneLowFalseTrueNone
- | BlockState::CobblestoneWall_LowNoneLowFalseFalseNone
- | BlockState::CobblestoneWall_LowNoneTallFalseTrueNone
- | BlockState::CobblestoneWall_LowNoneTallFalseFalseNone
- | BlockState::CobblestoneWall_TallNoneLowFalseTrueNone
- | BlockState::CobblestoneWall_TallNoneLowFalseFalseNone
- | BlockState::CobblestoneWall_TallNoneTallFalseTrueNone
- | BlockState::CobblestoneWall_TallNoneTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowNoneLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowNoneLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowNoneTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowNoneTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallNoneLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallNoneLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallNoneTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallNoneTallFalseFalseNone
- | BlockState::BrickWall_LowNoneLowFalseTrueNone
- | BlockState::BrickWall_LowNoneLowFalseFalseNone
- | BlockState::BrickWall_LowNoneTallFalseTrueNone
- | BlockState::BrickWall_LowNoneTallFalseFalseNone
- | BlockState::BrickWall_TallNoneLowFalseTrueNone
- | BlockState::BrickWall_TallNoneLowFalseFalseNone
- | BlockState::BrickWall_TallNoneTallFalseTrueNone
- | BlockState::BrickWall_TallNoneTallFalseFalseNone
- | BlockState::PrismarineWall_LowNoneLowFalseTrueNone
- | BlockState::PrismarineWall_LowNoneLowFalseFalseNone
- | BlockState::PrismarineWall_LowNoneTallFalseTrueNone
- | BlockState::PrismarineWall_LowNoneTallFalseFalseNone
- | BlockState::PrismarineWall_TallNoneLowFalseTrueNone
- | BlockState::PrismarineWall_TallNoneLowFalseFalseNone
- | BlockState::PrismarineWall_TallNoneTallFalseTrueNone
- | BlockState::PrismarineWall_TallNoneTallFalseFalseNone
- | BlockState::RedSandstoneWall_LowNoneLowFalseTrueNone
- | BlockState::RedSandstoneWall_LowNoneLowFalseFalseNone
- | BlockState::RedSandstoneWall_LowNoneTallFalseTrueNone
- | BlockState::RedSandstoneWall_LowNoneTallFalseFalseNone
- | BlockState::RedSandstoneWall_TallNoneLowFalseTrueNone
- | BlockState::RedSandstoneWall_TallNoneLowFalseFalseNone
- | BlockState::RedSandstoneWall_TallNoneTallFalseTrueNone
- | BlockState::RedSandstoneWall_TallNoneTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowNoneLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowNoneLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowNoneTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowNoneTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallNoneLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallNoneLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallNoneTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallNoneTallFalseFalseNone
- | BlockState::GraniteWall_LowNoneLowFalseTrueNone
- | BlockState::GraniteWall_LowNoneLowFalseFalseNone
- | BlockState::GraniteWall_LowNoneTallFalseTrueNone
- | BlockState::GraniteWall_LowNoneTallFalseFalseNone
- | BlockState::GraniteWall_TallNoneLowFalseTrueNone
- | BlockState::GraniteWall_TallNoneLowFalseFalseNone
- | BlockState::GraniteWall_TallNoneTallFalseTrueNone
- | BlockState::GraniteWall_TallNoneTallFalseFalseNone
- | BlockState::StoneBrickWall_LowNoneLowFalseTrueNone
- | BlockState::StoneBrickWall_LowNoneLowFalseFalseNone
- | BlockState::StoneBrickWall_LowNoneTallFalseTrueNone
- | BlockState::StoneBrickWall_LowNoneTallFalseFalseNone
- | BlockState::StoneBrickWall_TallNoneLowFalseTrueNone
- | BlockState::StoneBrickWall_TallNoneLowFalseFalseNone
- | BlockState::StoneBrickWall_TallNoneTallFalseTrueNone
- | BlockState::StoneBrickWall_TallNoneTallFalseFalseNone
- | BlockState::MudBrickWall_LowNoneLowFalseTrueNone
- | BlockState::MudBrickWall_LowNoneLowFalseFalseNone
- | BlockState::MudBrickWall_LowNoneTallFalseTrueNone
- | BlockState::MudBrickWall_LowNoneTallFalseFalseNone
- | BlockState::MudBrickWall_TallNoneLowFalseTrueNone
- | BlockState::MudBrickWall_TallNoneLowFalseFalseNone
- | BlockState::MudBrickWall_TallNoneTallFalseTrueNone
- | BlockState::MudBrickWall_TallNoneTallFalseFalseNone
- | BlockState::NetherBrickWall_LowNoneLowFalseTrueNone
- | BlockState::NetherBrickWall_LowNoneLowFalseFalseNone
- | BlockState::NetherBrickWall_LowNoneTallFalseTrueNone
- | BlockState::NetherBrickWall_LowNoneTallFalseFalseNone
- | BlockState::NetherBrickWall_TallNoneLowFalseTrueNone
- | BlockState::NetherBrickWall_TallNoneLowFalseFalseNone
- | BlockState::NetherBrickWall_TallNoneTallFalseTrueNone
- | BlockState::NetherBrickWall_TallNoneTallFalseFalseNone
- | BlockState::AndesiteWall_LowNoneLowFalseTrueNone
- | BlockState::AndesiteWall_LowNoneLowFalseFalseNone
- | BlockState::AndesiteWall_LowNoneTallFalseTrueNone
- | BlockState::AndesiteWall_LowNoneTallFalseFalseNone
- | BlockState::AndesiteWall_TallNoneLowFalseTrueNone
- | BlockState::AndesiteWall_TallNoneLowFalseFalseNone
- | BlockState::AndesiteWall_TallNoneTallFalseTrueNone
- | BlockState::AndesiteWall_TallNoneTallFalseFalseNone
- | BlockState::RedNetherBrickWall_LowNoneLowFalseTrueNone
- | BlockState::RedNetherBrickWall_LowNoneLowFalseFalseNone
- | BlockState::RedNetherBrickWall_LowNoneTallFalseTrueNone
- | BlockState::RedNetherBrickWall_LowNoneTallFalseFalseNone
- | BlockState::RedNetherBrickWall_TallNoneLowFalseTrueNone
- | BlockState::RedNetherBrickWall_TallNoneLowFalseFalseNone
- | BlockState::RedNetherBrickWall_TallNoneTallFalseTrueNone
- | BlockState::RedNetherBrickWall_TallNoneTallFalseFalseNone
- | BlockState::SandstoneWall_LowNoneLowFalseTrueNone
- | BlockState::SandstoneWall_LowNoneLowFalseFalseNone
- | BlockState::SandstoneWall_LowNoneTallFalseTrueNone
- | BlockState::SandstoneWall_LowNoneTallFalseFalseNone
- | BlockState::SandstoneWall_TallNoneLowFalseTrueNone
- | BlockState::SandstoneWall_TallNoneLowFalseFalseNone
- | BlockState::SandstoneWall_TallNoneTallFalseTrueNone
- | BlockState::SandstoneWall_TallNoneTallFalseFalseNone
- | BlockState::EndStoneBrickWall_LowNoneLowFalseTrueNone
- | BlockState::EndStoneBrickWall_LowNoneLowFalseFalseNone
- | BlockState::EndStoneBrickWall_LowNoneTallFalseTrueNone
- | BlockState::EndStoneBrickWall_LowNoneTallFalseFalseNone
- | BlockState::EndStoneBrickWall_TallNoneLowFalseTrueNone
- | BlockState::EndStoneBrickWall_TallNoneLowFalseFalseNone
- | BlockState::EndStoneBrickWall_TallNoneTallFalseTrueNone
- | BlockState::EndStoneBrickWall_TallNoneTallFalseFalseNone
- | BlockState::DioriteWall_LowNoneLowFalseTrueNone
- | BlockState::DioriteWall_LowNoneLowFalseFalseNone
- | BlockState::DioriteWall_LowNoneTallFalseTrueNone
- | BlockState::DioriteWall_LowNoneTallFalseFalseNone
- | BlockState::DioriteWall_TallNoneLowFalseTrueNone
- | BlockState::DioriteWall_TallNoneLowFalseFalseNone
- | BlockState::DioriteWall_TallNoneTallFalseTrueNone
- | BlockState::DioriteWall_TallNoneTallFalseFalseNone
- | BlockState::BlackstoneWall_LowNoneLowFalseTrueNone
- | BlockState::BlackstoneWall_LowNoneLowFalseFalseNone
- | BlockState::BlackstoneWall_LowNoneTallFalseTrueNone
- | BlockState::BlackstoneWall_LowNoneTallFalseFalseNone
- | BlockState::BlackstoneWall_TallNoneLowFalseTrueNone
- | BlockState::BlackstoneWall_TallNoneLowFalseFalseNone
- | BlockState::BlackstoneWall_TallNoneTallFalseTrueNone
- | BlockState::BlackstoneWall_TallNoneTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowNoneLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowNoneLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowNoneTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowNoneTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallNoneLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallNoneLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallNoneTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallNoneTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowNoneLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowNoneLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowNoneTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowNoneTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallNoneLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallNoneLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallNoneTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallNoneTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowNoneLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowNoneLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowNoneTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowNoneTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallNoneLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallNoneLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallNoneTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallNoneTallFalseFalseNone
- | BlockState::DeepslateTileWall_LowNoneLowFalseTrueNone
- | BlockState::DeepslateTileWall_LowNoneLowFalseFalseNone
- | BlockState::DeepslateTileWall_LowNoneTallFalseTrueNone
- | BlockState::DeepslateTileWall_LowNoneTallFalseFalseNone
- | BlockState::DeepslateTileWall_TallNoneLowFalseTrueNone
- | BlockState::DeepslateTileWall_TallNoneLowFalseFalseNone
- | BlockState::DeepslateTileWall_TallNoneTallFalseTrueNone
- | BlockState::DeepslateTileWall_TallNoneTallFalseFalseNone
- | BlockState::DeepslateBrickWall_LowNoneLowFalseTrueNone
- | BlockState::DeepslateBrickWall_LowNoneLowFalseFalseNone
- | BlockState::DeepslateBrickWall_LowNoneTallFalseTrueNone
- | BlockState::DeepslateBrickWall_LowNoneTallFalseFalseNone
- | BlockState::DeepslateBrickWall_TallNoneLowFalseTrueNone
- | BlockState::DeepslateBrickWall_TallNoneLowFalseFalseNone
- | BlockState::DeepslateBrickWall_TallNoneTallFalseTrueNone
- | BlockState::DeepslateBrickWall_TallNoneTallFalseFalseNone => &SHAPE160,
- BlockState::CobblestoneWall_LowNoneLowFalseTrueLow
- | BlockState::CobblestoneWall_LowNoneLowFalseTrueTall
- | BlockState::CobblestoneWall_LowNoneLowFalseFalseLow
- | BlockState::CobblestoneWall_LowNoneLowFalseFalseTall
- | BlockState::CobblestoneWall_LowNoneTallFalseTrueLow
- | BlockState::CobblestoneWall_LowNoneTallFalseTrueTall
- | BlockState::CobblestoneWall_LowNoneTallFalseFalseLow
- | BlockState::CobblestoneWall_LowNoneTallFalseFalseTall
- | BlockState::CobblestoneWall_TallNoneLowFalseTrueLow
- | BlockState::CobblestoneWall_TallNoneLowFalseTrueTall
- | BlockState::CobblestoneWall_TallNoneLowFalseFalseLow
- | BlockState::CobblestoneWall_TallNoneLowFalseFalseTall
- | BlockState::CobblestoneWall_TallNoneTallFalseTrueLow
- | BlockState::CobblestoneWall_TallNoneTallFalseTrueTall
- | BlockState::CobblestoneWall_TallNoneTallFalseFalseLow
- | BlockState::CobblestoneWall_TallNoneTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowNoneLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowNoneLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowNoneLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowNoneLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowNoneTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowNoneTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowNoneTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowNoneTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallNoneLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallNoneLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallNoneLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallNoneLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallNoneTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallNoneTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallNoneTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallNoneTallFalseFalseTall
- | BlockState::BrickWall_LowNoneLowFalseTrueLow
- | BlockState::BrickWall_LowNoneLowFalseTrueTall
- | BlockState::BrickWall_LowNoneLowFalseFalseLow
- | BlockState::BrickWall_LowNoneLowFalseFalseTall
- | BlockState::BrickWall_LowNoneTallFalseTrueLow
- | BlockState::BrickWall_LowNoneTallFalseTrueTall
- | BlockState::BrickWall_LowNoneTallFalseFalseLow
- | BlockState::BrickWall_LowNoneTallFalseFalseTall
- | BlockState::BrickWall_TallNoneLowFalseTrueLow
- | BlockState::BrickWall_TallNoneLowFalseTrueTall
- | BlockState::BrickWall_TallNoneLowFalseFalseLow
- | BlockState::BrickWall_TallNoneLowFalseFalseTall
- | BlockState::BrickWall_TallNoneTallFalseTrueLow
- | BlockState::BrickWall_TallNoneTallFalseTrueTall
- | BlockState::BrickWall_TallNoneTallFalseFalseLow
- | BlockState::BrickWall_TallNoneTallFalseFalseTall
- | BlockState::PrismarineWall_LowNoneLowFalseTrueLow
- | BlockState::PrismarineWall_LowNoneLowFalseTrueTall
- | BlockState::PrismarineWall_LowNoneLowFalseFalseLow
- | BlockState::PrismarineWall_LowNoneLowFalseFalseTall
- | BlockState::PrismarineWall_LowNoneTallFalseTrueLow
- | BlockState::PrismarineWall_LowNoneTallFalseTrueTall
- | BlockState::PrismarineWall_LowNoneTallFalseFalseLow
- | BlockState::PrismarineWall_LowNoneTallFalseFalseTall
- | BlockState::PrismarineWall_TallNoneLowFalseTrueLow
- | BlockState::PrismarineWall_TallNoneLowFalseTrueTall
- | BlockState::PrismarineWall_TallNoneLowFalseFalseLow
- | BlockState::PrismarineWall_TallNoneLowFalseFalseTall
- | BlockState::PrismarineWall_TallNoneTallFalseTrueLow
- | BlockState::PrismarineWall_TallNoneTallFalseTrueTall
- | BlockState::PrismarineWall_TallNoneTallFalseFalseLow
- | BlockState::PrismarineWall_TallNoneTallFalseFalseTall
- | BlockState::RedSandstoneWall_LowNoneLowFalseTrueLow
- | BlockState::RedSandstoneWall_LowNoneLowFalseTrueTall
- | BlockState::RedSandstoneWall_LowNoneLowFalseFalseLow
- | BlockState::RedSandstoneWall_LowNoneLowFalseFalseTall
- | BlockState::RedSandstoneWall_LowNoneTallFalseTrueLow
- | BlockState::RedSandstoneWall_LowNoneTallFalseTrueTall
- | BlockState::RedSandstoneWall_LowNoneTallFalseFalseLow
- | BlockState::RedSandstoneWall_LowNoneTallFalseFalseTall
- | BlockState::RedSandstoneWall_TallNoneLowFalseTrueLow
- | BlockState::RedSandstoneWall_TallNoneLowFalseTrueTall
- | BlockState::RedSandstoneWall_TallNoneLowFalseFalseLow
- | BlockState::RedSandstoneWall_TallNoneLowFalseFalseTall
- | BlockState::RedSandstoneWall_TallNoneTallFalseTrueLow
- | BlockState::RedSandstoneWall_TallNoneTallFalseTrueTall
- | BlockState::RedSandstoneWall_TallNoneTallFalseFalseLow
- | BlockState::RedSandstoneWall_TallNoneTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowNoneLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowNoneLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowNoneLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowNoneLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowNoneTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowNoneTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowNoneTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowNoneTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallNoneLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallNoneLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallNoneLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallNoneLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallNoneTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallNoneTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallNoneTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallNoneTallFalseFalseTall
- | BlockState::GraniteWall_LowNoneLowFalseTrueLow
- | BlockState::GraniteWall_LowNoneLowFalseTrueTall
- | BlockState::GraniteWall_LowNoneLowFalseFalseLow
- | BlockState::GraniteWall_LowNoneLowFalseFalseTall
- | BlockState::GraniteWall_LowNoneTallFalseTrueLow
- | BlockState::GraniteWall_LowNoneTallFalseTrueTall
- | BlockState::GraniteWall_LowNoneTallFalseFalseLow
- | BlockState::GraniteWall_LowNoneTallFalseFalseTall
- | BlockState::GraniteWall_TallNoneLowFalseTrueLow
- | BlockState::GraniteWall_TallNoneLowFalseTrueTall
- | BlockState::GraniteWall_TallNoneLowFalseFalseLow
- | BlockState::GraniteWall_TallNoneLowFalseFalseTall
- | BlockState::GraniteWall_TallNoneTallFalseTrueLow
- | BlockState::GraniteWall_TallNoneTallFalseTrueTall
- | BlockState::GraniteWall_TallNoneTallFalseFalseLow
- | BlockState::GraniteWall_TallNoneTallFalseFalseTall
- | BlockState::StoneBrickWall_LowNoneLowFalseTrueLow
- | BlockState::StoneBrickWall_LowNoneLowFalseTrueTall
- | BlockState::StoneBrickWall_LowNoneLowFalseFalseLow
- | BlockState::StoneBrickWall_LowNoneLowFalseFalseTall
- | BlockState::StoneBrickWall_LowNoneTallFalseTrueLow
- | BlockState::StoneBrickWall_LowNoneTallFalseTrueTall
- | BlockState::StoneBrickWall_LowNoneTallFalseFalseLow
- | BlockState::StoneBrickWall_LowNoneTallFalseFalseTall
- | BlockState::StoneBrickWall_TallNoneLowFalseTrueLow
- | BlockState::StoneBrickWall_TallNoneLowFalseTrueTall
- | BlockState::StoneBrickWall_TallNoneLowFalseFalseLow
- | BlockState::StoneBrickWall_TallNoneLowFalseFalseTall
- | BlockState::StoneBrickWall_TallNoneTallFalseTrueLow
- | BlockState::StoneBrickWall_TallNoneTallFalseTrueTall
- | BlockState::StoneBrickWall_TallNoneTallFalseFalseLow
- | BlockState::StoneBrickWall_TallNoneTallFalseFalseTall
- | BlockState::MudBrickWall_LowNoneLowFalseTrueLow
- | BlockState::MudBrickWall_LowNoneLowFalseTrueTall
- | BlockState::MudBrickWall_LowNoneLowFalseFalseLow
- | BlockState::MudBrickWall_LowNoneLowFalseFalseTall
- | BlockState::MudBrickWall_LowNoneTallFalseTrueLow
- | BlockState::MudBrickWall_LowNoneTallFalseTrueTall
- | BlockState::MudBrickWall_LowNoneTallFalseFalseLow
- | BlockState::MudBrickWall_LowNoneTallFalseFalseTall
- | BlockState::MudBrickWall_TallNoneLowFalseTrueLow
- | BlockState::MudBrickWall_TallNoneLowFalseTrueTall
- | BlockState::MudBrickWall_TallNoneLowFalseFalseLow
- | BlockState::MudBrickWall_TallNoneLowFalseFalseTall
- | BlockState::MudBrickWall_TallNoneTallFalseTrueLow
- | BlockState::MudBrickWall_TallNoneTallFalseTrueTall
- | BlockState::MudBrickWall_TallNoneTallFalseFalseLow
- | BlockState::MudBrickWall_TallNoneTallFalseFalseTall
- | BlockState::NetherBrickWall_LowNoneLowFalseTrueLow
- | BlockState::NetherBrickWall_LowNoneLowFalseTrueTall
- | BlockState::NetherBrickWall_LowNoneLowFalseFalseLow
- | BlockState::NetherBrickWall_LowNoneLowFalseFalseTall
- | BlockState::NetherBrickWall_LowNoneTallFalseTrueLow
- | BlockState::NetherBrickWall_LowNoneTallFalseTrueTall
- | BlockState::NetherBrickWall_LowNoneTallFalseFalseLow
- | BlockState::NetherBrickWall_LowNoneTallFalseFalseTall
- | BlockState::NetherBrickWall_TallNoneLowFalseTrueLow
- | BlockState::NetherBrickWall_TallNoneLowFalseTrueTall
- | BlockState::NetherBrickWall_TallNoneLowFalseFalseLow
- | BlockState::NetherBrickWall_TallNoneLowFalseFalseTall
- | BlockState::NetherBrickWall_TallNoneTallFalseTrueLow
- | BlockState::NetherBrickWall_TallNoneTallFalseTrueTall
- | BlockState::NetherBrickWall_TallNoneTallFalseFalseLow
- | BlockState::NetherBrickWall_TallNoneTallFalseFalseTall
- | BlockState::AndesiteWall_LowNoneLowFalseTrueLow
- | BlockState::AndesiteWall_LowNoneLowFalseTrueTall
- | BlockState::AndesiteWall_LowNoneLowFalseFalseLow
- | BlockState::AndesiteWall_LowNoneLowFalseFalseTall
- | BlockState::AndesiteWall_LowNoneTallFalseTrueLow
- | BlockState::AndesiteWall_LowNoneTallFalseTrueTall
- | BlockState::AndesiteWall_LowNoneTallFalseFalseLow
- | BlockState::AndesiteWall_LowNoneTallFalseFalseTall
- | BlockState::AndesiteWall_TallNoneLowFalseTrueLow
- | BlockState::AndesiteWall_TallNoneLowFalseTrueTall
- | BlockState::AndesiteWall_TallNoneLowFalseFalseLow
- | BlockState::AndesiteWall_TallNoneLowFalseFalseTall
- | BlockState::AndesiteWall_TallNoneTallFalseTrueLow
- | BlockState::AndesiteWall_TallNoneTallFalseTrueTall
- | BlockState::AndesiteWall_TallNoneTallFalseFalseLow
- | BlockState::AndesiteWall_TallNoneTallFalseFalseTall
- | BlockState::RedNetherBrickWall_LowNoneLowFalseTrueLow
- | BlockState::RedNetherBrickWall_LowNoneLowFalseTrueTall
- | BlockState::RedNetherBrickWall_LowNoneLowFalseFalseLow
- | BlockState::RedNetherBrickWall_LowNoneLowFalseFalseTall
- | BlockState::RedNetherBrickWall_LowNoneTallFalseTrueLow
- | BlockState::RedNetherBrickWall_LowNoneTallFalseTrueTall
- | BlockState::RedNetherBrickWall_LowNoneTallFalseFalseLow
- | BlockState::RedNetherBrickWall_LowNoneTallFalseFalseTall
- | BlockState::RedNetherBrickWall_TallNoneLowFalseTrueLow
- | BlockState::RedNetherBrickWall_TallNoneLowFalseTrueTall
- | BlockState::RedNetherBrickWall_TallNoneLowFalseFalseLow
- | BlockState::RedNetherBrickWall_TallNoneLowFalseFalseTall
- | BlockState::RedNetherBrickWall_TallNoneTallFalseTrueLow
- | BlockState::RedNetherBrickWall_TallNoneTallFalseTrueTall
- | BlockState::RedNetherBrickWall_TallNoneTallFalseFalseLow
- | BlockState::RedNetherBrickWall_TallNoneTallFalseFalseTall
- | BlockState::SandstoneWall_LowNoneLowFalseTrueLow
- | BlockState::SandstoneWall_LowNoneLowFalseTrueTall
- | BlockState::SandstoneWall_LowNoneLowFalseFalseLow
- | BlockState::SandstoneWall_LowNoneLowFalseFalseTall
- | BlockState::SandstoneWall_LowNoneTallFalseTrueLow
- | BlockState::SandstoneWall_LowNoneTallFalseTrueTall
- | BlockState::SandstoneWall_LowNoneTallFalseFalseLow
- | BlockState::SandstoneWall_LowNoneTallFalseFalseTall
- | BlockState::SandstoneWall_TallNoneLowFalseTrueLow
- | BlockState::SandstoneWall_TallNoneLowFalseTrueTall
- | BlockState::SandstoneWall_TallNoneLowFalseFalseLow
- | BlockState::SandstoneWall_TallNoneLowFalseFalseTall
- | BlockState::SandstoneWall_TallNoneTallFalseTrueLow
- | BlockState::SandstoneWall_TallNoneTallFalseTrueTall
- | BlockState::SandstoneWall_TallNoneTallFalseFalseLow
- | BlockState::SandstoneWall_TallNoneTallFalseFalseTall
- | BlockState::EndStoneBrickWall_LowNoneLowFalseTrueLow
- | BlockState::EndStoneBrickWall_LowNoneLowFalseTrueTall
- | BlockState::EndStoneBrickWall_LowNoneLowFalseFalseLow
- | BlockState::EndStoneBrickWall_LowNoneLowFalseFalseTall
- | BlockState::EndStoneBrickWall_LowNoneTallFalseTrueLow
- | BlockState::EndStoneBrickWall_LowNoneTallFalseTrueTall
- | BlockState::EndStoneBrickWall_LowNoneTallFalseFalseLow
- | BlockState::EndStoneBrickWall_LowNoneTallFalseFalseTall
- | BlockState::EndStoneBrickWall_TallNoneLowFalseTrueLow
- | BlockState::EndStoneBrickWall_TallNoneLowFalseTrueTall
- | BlockState::EndStoneBrickWall_TallNoneLowFalseFalseLow
- | BlockState::EndStoneBrickWall_TallNoneLowFalseFalseTall
- | BlockState::EndStoneBrickWall_TallNoneTallFalseTrueLow
- | BlockState::EndStoneBrickWall_TallNoneTallFalseTrueTall
- | BlockState::EndStoneBrickWall_TallNoneTallFalseFalseLow
- | BlockState::EndStoneBrickWall_TallNoneTallFalseFalseTall
- | BlockState::DioriteWall_LowNoneLowFalseTrueLow
- | BlockState::DioriteWall_LowNoneLowFalseTrueTall
- | BlockState::DioriteWall_LowNoneLowFalseFalseLow
- | BlockState::DioriteWall_LowNoneLowFalseFalseTall
- | BlockState::DioriteWall_LowNoneTallFalseTrueLow
- | BlockState::DioriteWall_LowNoneTallFalseTrueTall
- | BlockState::DioriteWall_LowNoneTallFalseFalseLow
- | BlockState::DioriteWall_LowNoneTallFalseFalseTall
- | BlockState::DioriteWall_TallNoneLowFalseTrueLow
- | BlockState::DioriteWall_TallNoneLowFalseTrueTall
- | BlockState::DioriteWall_TallNoneLowFalseFalseLow
- | BlockState::DioriteWall_TallNoneLowFalseFalseTall
- | BlockState::DioriteWall_TallNoneTallFalseTrueLow
- | BlockState::DioriteWall_TallNoneTallFalseTrueTall
- | BlockState::DioriteWall_TallNoneTallFalseFalseLow
- | BlockState::DioriteWall_TallNoneTallFalseFalseTall
- | BlockState::BlackstoneWall_LowNoneLowFalseTrueLow
- | BlockState::BlackstoneWall_LowNoneLowFalseTrueTall
- | BlockState::BlackstoneWall_LowNoneLowFalseFalseLow
- | BlockState::BlackstoneWall_LowNoneLowFalseFalseTall
- | BlockState::BlackstoneWall_LowNoneTallFalseTrueLow
- | BlockState::BlackstoneWall_LowNoneTallFalseTrueTall
- | BlockState::BlackstoneWall_LowNoneTallFalseFalseLow
- | BlockState::BlackstoneWall_LowNoneTallFalseFalseTall
- | BlockState::BlackstoneWall_TallNoneLowFalseTrueLow
- | BlockState::BlackstoneWall_TallNoneLowFalseTrueTall
- | BlockState::BlackstoneWall_TallNoneLowFalseFalseLow
- | BlockState::BlackstoneWall_TallNoneLowFalseFalseTall
- | BlockState::BlackstoneWall_TallNoneTallFalseTrueLow
- | BlockState::BlackstoneWall_TallNoneTallFalseTrueTall
- | BlockState::BlackstoneWall_TallNoneTallFalseFalseLow
- | BlockState::BlackstoneWall_TallNoneTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowNoneTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallNoneTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowNoneLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowNoneLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowNoneLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowNoneLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowNoneTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowNoneTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowNoneTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowNoneTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallNoneLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallNoneLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallNoneLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallNoneLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallNoneTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallNoneTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallNoneTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallNoneTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowNoneLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowNoneLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowNoneLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowNoneLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowNoneTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowNoneTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowNoneTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowNoneTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallNoneLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallNoneLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallNoneLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallNoneLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallNoneTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallNoneTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallNoneTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallNoneTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowNoneLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowNoneLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowNoneLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowNoneLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowNoneTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowNoneTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowNoneTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowNoneTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallNoneLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallNoneLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallNoneLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallNoneLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallNoneTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallNoneTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallNoneTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallNoneTallFalseFalseTall
- | BlockState::DeepslateTileWall_LowNoneLowFalseTrueLow
- | BlockState::DeepslateTileWall_LowNoneLowFalseTrueTall
- | BlockState::DeepslateTileWall_LowNoneLowFalseFalseLow
- | BlockState::DeepslateTileWall_LowNoneLowFalseFalseTall
- | BlockState::DeepslateTileWall_LowNoneTallFalseTrueLow
- | BlockState::DeepslateTileWall_LowNoneTallFalseTrueTall
- | BlockState::DeepslateTileWall_LowNoneTallFalseFalseLow
- | BlockState::DeepslateTileWall_LowNoneTallFalseFalseTall
- | BlockState::DeepslateTileWall_TallNoneLowFalseTrueLow
- | BlockState::DeepslateTileWall_TallNoneLowFalseTrueTall
- | BlockState::DeepslateTileWall_TallNoneLowFalseFalseLow
- | BlockState::DeepslateTileWall_TallNoneLowFalseFalseTall
- | BlockState::DeepslateTileWall_TallNoneTallFalseTrueLow
- | BlockState::DeepslateTileWall_TallNoneTallFalseTrueTall
- | BlockState::DeepslateTileWall_TallNoneTallFalseFalseLow
- | BlockState::DeepslateTileWall_TallNoneTallFalseFalseTall
- | BlockState::DeepslateBrickWall_LowNoneLowFalseTrueLow
- | BlockState::DeepslateBrickWall_LowNoneLowFalseTrueTall
- | BlockState::DeepslateBrickWall_LowNoneLowFalseFalseLow
- | BlockState::DeepslateBrickWall_LowNoneLowFalseFalseTall
- | BlockState::DeepslateBrickWall_LowNoneTallFalseTrueLow
- | BlockState::DeepslateBrickWall_LowNoneTallFalseTrueTall
- | BlockState::DeepslateBrickWall_LowNoneTallFalseFalseLow
- | BlockState::DeepslateBrickWall_LowNoneTallFalseFalseTall
- | BlockState::DeepslateBrickWall_TallNoneLowFalseTrueLow
- | BlockState::DeepslateBrickWall_TallNoneLowFalseTrueTall
- | BlockState::DeepslateBrickWall_TallNoneLowFalseFalseLow
- | BlockState::DeepslateBrickWall_TallNoneLowFalseFalseTall
- | BlockState::DeepslateBrickWall_TallNoneTallFalseTrueLow
- | BlockState::DeepslateBrickWall_TallNoneTallFalseTrueTall
- | BlockState::DeepslateBrickWall_TallNoneTallFalseFalseLow
- | BlockState::DeepslateBrickWall_TallNoneTallFalseFalseTall => &SHAPE161,
- BlockState::CobblestoneWall_LowLowNoneTrueTrueNone
- | BlockState::CobblestoneWall_LowLowNoneTrueFalseNone
- | BlockState::CobblestoneWall_LowTallNoneTrueTrueNone
- | BlockState::CobblestoneWall_LowTallNoneTrueFalseNone
- | BlockState::CobblestoneWall_TallLowNoneTrueTrueNone
- | BlockState::CobblestoneWall_TallLowNoneTrueFalseNone
- | BlockState::CobblestoneWall_TallTallNoneTrueTrueNone
- | BlockState::CobblestoneWall_TallTallNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowLowNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowLowNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowTallNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowTallNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallLowNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallLowNoneTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallTallNoneTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallTallNoneTrueFalseNone
- | BlockState::BrickWall_LowLowNoneTrueTrueNone
- | BlockState::BrickWall_LowLowNoneTrueFalseNone
- | BlockState::BrickWall_LowTallNoneTrueTrueNone
- | BlockState::BrickWall_LowTallNoneTrueFalseNone
- | BlockState::BrickWall_TallLowNoneTrueTrueNone
- | BlockState::BrickWall_TallLowNoneTrueFalseNone
- | BlockState::BrickWall_TallTallNoneTrueTrueNone
- | BlockState::BrickWall_TallTallNoneTrueFalseNone
- | BlockState::PrismarineWall_LowLowNoneTrueTrueNone
- | BlockState::PrismarineWall_LowLowNoneTrueFalseNone
- | BlockState::PrismarineWall_LowTallNoneTrueTrueNone
- | BlockState::PrismarineWall_LowTallNoneTrueFalseNone
- | BlockState::PrismarineWall_TallLowNoneTrueTrueNone
- | BlockState::PrismarineWall_TallLowNoneTrueFalseNone
- | BlockState::PrismarineWall_TallTallNoneTrueTrueNone
- | BlockState::PrismarineWall_TallTallNoneTrueFalseNone
- | BlockState::RedSandstoneWall_LowLowNoneTrueTrueNone
- | BlockState::RedSandstoneWall_LowLowNoneTrueFalseNone
- | BlockState::RedSandstoneWall_LowTallNoneTrueTrueNone
- | BlockState::RedSandstoneWall_LowTallNoneTrueFalseNone
- | BlockState::RedSandstoneWall_TallLowNoneTrueTrueNone
- | BlockState::RedSandstoneWall_TallLowNoneTrueFalseNone
- | BlockState::RedSandstoneWall_TallTallNoneTrueTrueNone
- | BlockState::RedSandstoneWall_TallTallNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowLowNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowLowNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowTallNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowTallNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallLowNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallLowNoneTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallTallNoneTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallTallNoneTrueFalseNone
- | BlockState::GraniteWall_LowLowNoneTrueTrueNone
- | BlockState::GraniteWall_LowLowNoneTrueFalseNone
- | BlockState::GraniteWall_LowTallNoneTrueTrueNone
- | BlockState::GraniteWall_LowTallNoneTrueFalseNone
- | BlockState::GraniteWall_TallLowNoneTrueTrueNone
- | BlockState::GraniteWall_TallLowNoneTrueFalseNone
- | BlockState::GraniteWall_TallTallNoneTrueTrueNone
- | BlockState::GraniteWall_TallTallNoneTrueFalseNone
- | BlockState::StoneBrickWall_LowLowNoneTrueTrueNone
- | BlockState::StoneBrickWall_LowLowNoneTrueFalseNone
- | BlockState::StoneBrickWall_LowTallNoneTrueTrueNone
- | BlockState::StoneBrickWall_LowTallNoneTrueFalseNone
- | BlockState::StoneBrickWall_TallLowNoneTrueTrueNone
- | BlockState::StoneBrickWall_TallLowNoneTrueFalseNone
- | BlockState::StoneBrickWall_TallTallNoneTrueTrueNone
- | BlockState::StoneBrickWall_TallTallNoneTrueFalseNone
- | BlockState::MudBrickWall_LowLowNoneTrueTrueNone
- | BlockState::MudBrickWall_LowLowNoneTrueFalseNone
- | BlockState::MudBrickWall_LowTallNoneTrueTrueNone
- | BlockState::MudBrickWall_LowTallNoneTrueFalseNone
- | BlockState::MudBrickWall_TallLowNoneTrueTrueNone
- | BlockState::MudBrickWall_TallLowNoneTrueFalseNone
- | BlockState::MudBrickWall_TallTallNoneTrueTrueNone
- | BlockState::MudBrickWall_TallTallNoneTrueFalseNone
- | BlockState::NetherBrickWall_LowLowNoneTrueTrueNone
- | BlockState::NetherBrickWall_LowLowNoneTrueFalseNone
- | BlockState::NetherBrickWall_LowTallNoneTrueTrueNone
- | BlockState::NetherBrickWall_LowTallNoneTrueFalseNone
- | BlockState::NetherBrickWall_TallLowNoneTrueTrueNone
- | BlockState::NetherBrickWall_TallLowNoneTrueFalseNone
- | BlockState::NetherBrickWall_TallTallNoneTrueTrueNone
- | BlockState::NetherBrickWall_TallTallNoneTrueFalseNone
- | BlockState::AndesiteWall_LowLowNoneTrueTrueNone
- | BlockState::AndesiteWall_LowLowNoneTrueFalseNone
- | BlockState::AndesiteWall_LowTallNoneTrueTrueNone
- | BlockState::AndesiteWall_LowTallNoneTrueFalseNone
- | BlockState::AndesiteWall_TallLowNoneTrueTrueNone
- | BlockState::AndesiteWall_TallLowNoneTrueFalseNone
- | BlockState::AndesiteWall_TallTallNoneTrueTrueNone
- | BlockState::AndesiteWall_TallTallNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_LowLowNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_LowLowNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_LowTallNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_LowTallNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_TallLowNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_TallLowNoneTrueFalseNone
- | BlockState::RedNetherBrickWall_TallTallNoneTrueTrueNone
- | BlockState::RedNetherBrickWall_TallTallNoneTrueFalseNone
- | BlockState::SandstoneWall_LowLowNoneTrueTrueNone
- | BlockState::SandstoneWall_LowLowNoneTrueFalseNone
- | BlockState::SandstoneWall_LowTallNoneTrueTrueNone
- | BlockState::SandstoneWall_LowTallNoneTrueFalseNone
- | BlockState::SandstoneWall_TallLowNoneTrueTrueNone
- | BlockState::SandstoneWall_TallLowNoneTrueFalseNone
- | BlockState::SandstoneWall_TallTallNoneTrueTrueNone
- | BlockState::SandstoneWall_TallTallNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_LowLowNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_LowLowNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_LowTallNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_LowTallNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_TallLowNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_TallLowNoneTrueFalseNone
- | BlockState::EndStoneBrickWall_TallTallNoneTrueTrueNone
- | BlockState::EndStoneBrickWall_TallTallNoneTrueFalseNone
- | BlockState::DioriteWall_LowLowNoneTrueTrueNone
- | BlockState::DioriteWall_LowLowNoneTrueFalseNone
- | BlockState::DioriteWall_LowTallNoneTrueTrueNone
- | BlockState::DioriteWall_LowTallNoneTrueFalseNone
- | BlockState::DioriteWall_TallLowNoneTrueTrueNone
- | BlockState::DioriteWall_TallLowNoneTrueFalseNone
- | BlockState::DioriteWall_TallTallNoneTrueTrueNone
- | BlockState::DioriteWall_TallTallNoneTrueFalseNone
- | BlockState::BlackstoneWall_LowLowNoneTrueTrueNone
- | BlockState::BlackstoneWall_LowLowNoneTrueFalseNone
- | BlockState::BlackstoneWall_LowTallNoneTrueTrueNone
- | BlockState::BlackstoneWall_LowTallNoneTrueFalseNone
- | BlockState::BlackstoneWall_TallLowNoneTrueTrueNone
- | BlockState::BlackstoneWall_TallLowNoneTrueFalseNone
- | BlockState::BlackstoneWall_TallTallNoneTrueTrueNone
- | BlockState::BlackstoneWall_TallTallNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowLowNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowLowNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowTallNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowTallNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallLowNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallLowNoneTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallTallNoneTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallTallNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowLowNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowLowNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowTallNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowTallNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallLowNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallLowNoneTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallTallNoneTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallTallNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowLowNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowLowNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowTallNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowTallNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallLowNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallLowNoneTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallTallNoneTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallTallNoneTrueFalseNone
- | BlockState::DeepslateTileWall_LowLowNoneTrueTrueNone
- | BlockState::DeepslateTileWall_LowLowNoneTrueFalseNone
- | BlockState::DeepslateTileWall_LowTallNoneTrueTrueNone
- | BlockState::DeepslateTileWall_LowTallNoneTrueFalseNone
- | BlockState::DeepslateTileWall_TallLowNoneTrueTrueNone
- | BlockState::DeepslateTileWall_TallLowNoneTrueFalseNone
- | BlockState::DeepslateTileWall_TallTallNoneTrueTrueNone
- | BlockState::DeepslateTileWall_TallTallNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_LowLowNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_LowLowNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_LowTallNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_LowTallNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_TallLowNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_TallLowNoneTrueFalseNone
- | BlockState::DeepslateBrickWall_TallTallNoneTrueTrueNone
- | BlockState::DeepslateBrickWall_TallTallNoneTrueFalseNone => &SHAPE162,
- BlockState::CobblestoneWall_LowLowNoneTrueTrueLow
- | BlockState::CobblestoneWall_LowLowNoneTrueTrueTall
- | BlockState::CobblestoneWall_LowLowNoneTrueFalseLow
- | BlockState::CobblestoneWall_LowLowNoneTrueFalseTall
- | BlockState::CobblestoneWall_LowTallNoneTrueTrueLow
- | BlockState::CobblestoneWall_LowTallNoneTrueTrueTall
- | BlockState::CobblestoneWall_LowTallNoneTrueFalseLow
- | BlockState::CobblestoneWall_LowTallNoneTrueFalseTall
- | BlockState::CobblestoneWall_TallLowNoneTrueTrueLow
- | BlockState::CobblestoneWall_TallLowNoneTrueTrueTall
- | BlockState::CobblestoneWall_TallLowNoneTrueFalseLow
- | BlockState::CobblestoneWall_TallLowNoneTrueFalseTall
- | BlockState::CobblestoneWall_TallTallNoneTrueTrueLow
- | BlockState::CobblestoneWall_TallTallNoneTrueTrueTall
- | BlockState::CobblestoneWall_TallTallNoneTrueFalseLow
- | BlockState::CobblestoneWall_TallTallNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowLowNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowLowNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowLowNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowLowNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowTallNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowTallNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowTallNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowTallNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallLowNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallLowNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallLowNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallLowNoneTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallTallNoneTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallTallNoneTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallTallNoneTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallTallNoneTrueFalseTall
- | BlockState::BrickWall_LowLowNoneTrueTrueLow
- | BlockState::BrickWall_LowLowNoneTrueTrueTall
- | BlockState::BrickWall_LowLowNoneTrueFalseLow
- | BlockState::BrickWall_LowLowNoneTrueFalseTall
- | BlockState::BrickWall_LowTallNoneTrueTrueLow
- | BlockState::BrickWall_LowTallNoneTrueTrueTall
- | BlockState::BrickWall_LowTallNoneTrueFalseLow
- | BlockState::BrickWall_LowTallNoneTrueFalseTall
- | BlockState::BrickWall_TallLowNoneTrueTrueLow
- | BlockState::BrickWall_TallLowNoneTrueTrueTall
- | BlockState::BrickWall_TallLowNoneTrueFalseLow
- | BlockState::BrickWall_TallLowNoneTrueFalseTall
- | BlockState::BrickWall_TallTallNoneTrueTrueLow
- | BlockState::BrickWall_TallTallNoneTrueTrueTall
- | BlockState::BrickWall_TallTallNoneTrueFalseLow
- | BlockState::BrickWall_TallTallNoneTrueFalseTall
- | BlockState::PrismarineWall_LowLowNoneTrueTrueLow
- | BlockState::PrismarineWall_LowLowNoneTrueTrueTall
- | BlockState::PrismarineWall_LowLowNoneTrueFalseLow
- | BlockState::PrismarineWall_LowLowNoneTrueFalseTall
- | BlockState::PrismarineWall_LowTallNoneTrueTrueLow
- | BlockState::PrismarineWall_LowTallNoneTrueTrueTall
- | BlockState::PrismarineWall_LowTallNoneTrueFalseLow
- | BlockState::PrismarineWall_LowTallNoneTrueFalseTall
- | BlockState::PrismarineWall_TallLowNoneTrueTrueLow
- | BlockState::PrismarineWall_TallLowNoneTrueTrueTall
- | BlockState::PrismarineWall_TallLowNoneTrueFalseLow
- | BlockState::PrismarineWall_TallLowNoneTrueFalseTall
- | BlockState::PrismarineWall_TallTallNoneTrueTrueLow
- | BlockState::PrismarineWall_TallTallNoneTrueTrueTall
- | BlockState::PrismarineWall_TallTallNoneTrueFalseLow
- | BlockState::PrismarineWall_TallTallNoneTrueFalseTall
- | BlockState::RedSandstoneWall_LowLowNoneTrueTrueLow
- | BlockState::RedSandstoneWall_LowLowNoneTrueTrueTall
- | BlockState::RedSandstoneWall_LowLowNoneTrueFalseLow
- | BlockState::RedSandstoneWall_LowLowNoneTrueFalseTall
- | BlockState::RedSandstoneWall_LowTallNoneTrueTrueLow
- | BlockState::RedSandstoneWall_LowTallNoneTrueTrueTall
- | BlockState::RedSandstoneWall_LowTallNoneTrueFalseLow
- | BlockState::RedSandstoneWall_LowTallNoneTrueFalseTall
- | BlockState::RedSandstoneWall_TallLowNoneTrueTrueLow
- | BlockState::RedSandstoneWall_TallLowNoneTrueTrueTall
- | BlockState::RedSandstoneWall_TallLowNoneTrueFalseLow
- | BlockState::RedSandstoneWall_TallLowNoneTrueFalseTall
- | BlockState::RedSandstoneWall_TallTallNoneTrueTrueLow
- | BlockState::RedSandstoneWall_TallTallNoneTrueTrueTall
- | BlockState::RedSandstoneWall_TallTallNoneTrueFalseLow
- | BlockState::RedSandstoneWall_TallTallNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowLowNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowLowNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowLowNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowLowNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowTallNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowTallNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowTallNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowTallNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallLowNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallLowNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallLowNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallLowNoneTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallTallNoneTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallTallNoneTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallTallNoneTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallTallNoneTrueFalseTall
- | BlockState::GraniteWall_LowLowNoneTrueTrueLow
- | BlockState::GraniteWall_LowLowNoneTrueTrueTall
- | BlockState::GraniteWall_LowLowNoneTrueFalseLow
- | BlockState::GraniteWall_LowLowNoneTrueFalseTall
- | BlockState::GraniteWall_LowTallNoneTrueTrueLow
- | BlockState::GraniteWall_LowTallNoneTrueTrueTall
- | BlockState::GraniteWall_LowTallNoneTrueFalseLow
- | BlockState::GraniteWall_LowTallNoneTrueFalseTall
- | BlockState::GraniteWall_TallLowNoneTrueTrueLow
- | BlockState::GraniteWall_TallLowNoneTrueTrueTall
- | BlockState::GraniteWall_TallLowNoneTrueFalseLow
- | BlockState::GraniteWall_TallLowNoneTrueFalseTall
- | BlockState::GraniteWall_TallTallNoneTrueTrueLow
- | BlockState::GraniteWall_TallTallNoneTrueTrueTall
- | BlockState::GraniteWall_TallTallNoneTrueFalseLow
- | BlockState::GraniteWall_TallTallNoneTrueFalseTall
- | BlockState::StoneBrickWall_LowLowNoneTrueTrueLow
- | BlockState::StoneBrickWall_LowLowNoneTrueTrueTall
- | BlockState::StoneBrickWall_LowLowNoneTrueFalseLow
- | BlockState::StoneBrickWall_LowLowNoneTrueFalseTall
- | BlockState::StoneBrickWall_LowTallNoneTrueTrueLow
- | BlockState::StoneBrickWall_LowTallNoneTrueTrueTall
- | BlockState::StoneBrickWall_LowTallNoneTrueFalseLow
- | BlockState::StoneBrickWall_LowTallNoneTrueFalseTall
- | BlockState::StoneBrickWall_TallLowNoneTrueTrueLow
- | BlockState::StoneBrickWall_TallLowNoneTrueTrueTall
- | BlockState::StoneBrickWall_TallLowNoneTrueFalseLow
- | BlockState::StoneBrickWall_TallLowNoneTrueFalseTall
- | BlockState::StoneBrickWall_TallTallNoneTrueTrueLow
- | BlockState::StoneBrickWall_TallTallNoneTrueTrueTall
- | BlockState::StoneBrickWall_TallTallNoneTrueFalseLow
- | BlockState::StoneBrickWall_TallTallNoneTrueFalseTall
- | BlockState::MudBrickWall_LowLowNoneTrueTrueLow
- | BlockState::MudBrickWall_LowLowNoneTrueTrueTall
- | BlockState::MudBrickWall_LowLowNoneTrueFalseLow
- | BlockState::MudBrickWall_LowLowNoneTrueFalseTall
- | BlockState::MudBrickWall_LowTallNoneTrueTrueLow
- | BlockState::MudBrickWall_LowTallNoneTrueTrueTall
- | BlockState::MudBrickWall_LowTallNoneTrueFalseLow
- | BlockState::MudBrickWall_LowTallNoneTrueFalseTall
- | BlockState::MudBrickWall_TallLowNoneTrueTrueLow
- | BlockState::MudBrickWall_TallLowNoneTrueTrueTall
- | BlockState::MudBrickWall_TallLowNoneTrueFalseLow
- | BlockState::MudBrickWall_TallLowNoneTrueFalseTall
- | BlockState::MudBrickWall_TallTallNoneTrueTrueLow
- | BlockState::MudBrickWall_TallTallNoneTrueTrueTall
- | BlockState::MudBrickWall_TallTallNoneTrueFalseLow
- | BlockState::MudBrickWall_TallTallNoneTrueFalseTall
- | BlockState::NetherBrickWall_LowLowNoneTrueTrueLow
- | BlockState::NetherBrickWall_LowLowNoneTrueTrueTall
- | BlockState::NetherBrickWall_LowLowNoneTrueFalseLow
- | BlockState::NetherBrickWall_LowLowNoneTrueFalseTall
- | BlockState::NetherBrickWall_LowTallNoneTrueTrueLow
- | BlockState::NetherBrickWall_LowTallNoneTrueTrueTall
- | BlockState::NetherBrickWall_LowTallNoneTrueFalseLow
- | BlockState::NetherBrickWall_LowTallNoneTrueFalseTall
- | BlockState::NetherBrickWall_TallLowNoneTrueTrueLow
- | BlockState::NetherBrickWall_TallLowNoneTrueTrueTall
- | BlockState::NetherBrickWall_TallLowNoneTrueFalseLow
- | BlockState::NetherBrickWall_TallLowNoneTrueFalseTall
- | BlockState::NetherBrickWall_TallTallNoneTrueTrueLow
- | BlockState::NetherBrickWall_TallTallNoneTrueTrueTall
- | BlockState::NetherBrickWall_TallTallNoneTrueFalseLow
- | BlockState::NetherBrickWall_TallTallNoneTrueFalseTall
- | BlockState::AndesiteWall_LowLowNoneTrueTrueLow
- | BlockState::AndesiteWall_LowLowNoneTrueTrueTall
- | BlockState::AndesiteWall_LowLowNoneTrueFalseLow
- | BlockState::AndesiteWall_LowLowNoneTrueFalseTall
- | BlockState::AndesiteWall_LowTallNoneTrueTrueLow
- | BlockState::AndesiteWall_LowTallNoneTrueTrueTall
- | BlockState::AndesiteWall_LowTallNoneTrueFalseLow
- | BlockState::AndesiteWall_LowTallNoneTrueFalseTall
- | BlockState::AndesiteWall_TallLowNoneTrueTrueLow
- | BlockState::AndesiteWall_TallLowNoneTrueTrueTall
- | BlockState::AndesiteWall_TallLowNoneTrueFalseLow
- | BlockState::AndesiteWall_TallLowNoneTrueFalseTall
- | BlockState::AndesiteWall_TallTallNoneTrueTrueLow
- | BlockState::AndesiteWall_TallTallNoneTrueTrueTall
- | BlockState::AndesiteWall_TallTallNoneTrueFalseLow
- | BlockState::AndesiteWall_TallTallNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_LowLowNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_LowLowNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_LowLowNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_LowLowNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_LowTallNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_LowTallNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_LowTallNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_LowTallNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_TallLowNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_TallLowNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_TallLowNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_TallLowNoneTrueFalseTall
- | BlockState::RedNetherBrickWall_TallTallNoneTrueTrueLow
- | BlockState::RedNetherBrickWall_TallTallNoneTrueTrueTall
- | BlockState::RedNetherBrickWall_TallTallNoneTrueFalseLow
- | BlockState::RedNetherBrickWall_TallTallNoneTrueFalseTall
- | BlockState::SandstoneWall_LowLowNoneTrueTrueLow
- | BlockState::SandstoneWall_LowLowNoneTrueTrueTall
- | BlockState::SandstoneWall_LowLowNoneTrueFalseLow
- | BlockState::SandstoneWall_LowLowNoneTrueFalseTall
- | BlockState::SandstoneWall_LowTallNoneTrueTrueLow
- | BlockState::SandstoneWall_LowTallNoneTrueTrueTall
- | BlockState::SandstoneWall_LowTallNoneTrueFalseLow
- | BlockState::SandstoneWall_LowTallNoneTrueFalseTall
- | BlockState::SandstoneWall_TallLowNoneTrueTrueLow
- | BlockState::SandstoneWall_TallLowNoneTrueTrueTall
- | BlockState::SandstoneWall_TallLowNoneTrueFalseLow
- | BlockState::SandstoneWall_TallLowNoneTrueFalseTall
- | BlockState::SandstoneWall_TallTallNoneTrueTrueLow
- | BlockState::SandstoneWall_TallTallNoneTrueTrueTall
- | BlockState::SandstoneWall_TallTallNoneTrueFalseLow
- | BlockState::SandstoneWall_TallTallNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_LowLowNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_LowLowNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_LowLowNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_LowLowNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_LowTallNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_LowTallNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_LowTallNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_LowTallNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_TallLowNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_TallLowNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_TallLowNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_TallLowNoneTrueFalseTall
- | BlockState::EndStoneBrickWall_TallTallNoneTrueTrueLow
- | BlockState::EndStoneBrickWall_TallTallNoneTrueTrueTall
- | BlockState::EndStoneBrickWall_TallTallNoneTrueFalseLow
- | BlockState::EndStoneBrickWall_TallTallNoneTrueFalseTall
- | BlockState::DioriteWall_LowLowNoneTrueTrueLow
- | BlockState::DioriteWall_LowLowNoneTrueTrueTall
- | BlockState::DioriteWall_LowLowNoneTrueFalseLow
- | BlockState::DioriteWall_LowLowNoneTrueFalseTall
- | BlockState::DioriteWall_LowTallNoneTrueTrueLow
- | BlockState::DioriteWall_LowTallNoneTrueTrueTall
- | BlockState::DioriteWall_LowTallNoneTrueFalseLow
- | BlockState::DioriteWall_LowTallNoneTrueFalseTall
- | BlockState::DioriteWall_TallLowNoneTrueTrueLow
- | BlockState::DioriteWall_TallLowNoneTrueTrueTall
- | BlockState::DioriteWall_TallLowNoneTrueFalseLow
- | BlockState::DioriteWall_TallLowNoneTrueFalseTall
- | BlockState::DioriteWall_TallTallNoneTrueTrueLow
- | BlockState::DioriteWall_TallTallNoneTrueTrueTall
- | BlockState::DioriteWall_TallTallNoneTrueFalseLow
- | BlockState::DioriteWall_TallTallNoneTrueFalseTall
- | BlockState::BlackstoneWall_LowLowNoneTrueTrueLow
- | BlockState::BlackstoneWall_LowLowNoneTrueTrueTall
- | BlockState::BlackstoneWall_LowLowNoneTrueFalseLow
- | BlockState::BlackstoneWall_LowLowNoneTrueFalseTall
- | BlockState::BlackstoneWall_LowTallNoneTrueTrueLow
- | BlockState::BlackstoneWall_LowTallNoneTrueTrueTall
- | BlockState::BlackstoneWall_LowTallNoneTrueFalseLow
- | BlockState::BlackstoneWall_LowTallNoneTrueFalseTall
- | BlockState::BlackstoneWall_TallLowNoneTrueTrueLow
- | BlockState::BlackstoneWall_TallLowNoneTrueTrueTall
- | BlockState::BlackstoneWall_TallLowNoneTrueFalseLow
- | BlockState::BlackstoneWall_TallLowNoneTrueFalseTall
- | BlockState::BlackstoneWall_TallTallNoneTrueTrueLow
- | BlockState::BlackstoneWall_TallTallNoneTrueTrueTall
- | BlockState::BlackstoneWall_TallTallNoneTrueFalseLow
- | BlockState::BlackstoneWall_TallTallNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowLowNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowLowNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowLowNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowLowNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowTallNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowTallNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowTallNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowTallNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallLowNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallLowNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallLowNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallLowNoneTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallTallNoneTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallTallNoneTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallTallNoneTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallTallNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowLowNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowLowNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowLowNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowLowNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowTallNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowTallNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowTallNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowTallNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallLowNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallLowNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallLowNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallLowNoneTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallTallNoneTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallTallNoneTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallTallNoneTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallTallNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowLowNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowLowNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowLowNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowLowNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowTallNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowTallNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowTallNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowTallNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallLowNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallLowNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallLowNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallLowNoneTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallTallNoneTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallTallNoneTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallTallNoneTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallTallNoneTrueFalseTall
- | BlockState::DeepslateTileWall_LowLowNoneTrueTrueLow
- | BlockState::DeepslateTileWall_LowLowNoneTrueTrueTall
- | BlockState::DeepslateTileWall_LowLowNoneTrueFalseLow
- | BlockState::DeepslateTileWall_LowLowNoneTrueFalseTall
- | BlockState::DeepslateTileWall_LowTallNoneTrueTrueLow
- | BlockState::DeepslateTileWall_LowTallNoneTrueTrueTall
- | BlockState::DeepslateTileWall_LowTallNoneTrueFalseLow
- | BlockState::DeepslateTileWall_LowTallNoneTrueFalseTall
- | BlockState::DeepslateTileWall_TallLowNoneTrueTrueLow
- | BlockState::DeepslateTileWall_TallLowNoneTrueTrueTall
- | BlockState::DeepslateTileWall_TallLowNoneTrueFalseLow
- | BlockState::DeepslateTileWall_TallLowNoneTrueFalseTall
- | BlockState::DeepslateTileWall_TallTallNoneTrueTrueLow
- | BlockState::DeepslateTileWall_TallTallNoneTrueTrueTall
- | BlockState::DeepslateTileWall_TallTallNoneTrueFalseLow
- | BlockState::DeepslateTileWall_TallTallNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_LowLowNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_LowLowNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_LowLowNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_LowLowNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_LowTallNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_LowTallNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_LowTallNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_LowTallNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_TallLowNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_TallLowNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_TallLowNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_TallLowNoneTrueFalseTall
- | BlockState::DeepslateBrickWall_TallTallNoneTrueTrueLow
- | BlockState::DeepslateBrickWall_TallTallNoneTrueTrueTall
- | BlockState::DeepslateBrickWall_TallTallNoneTrueFalseLow
- | BlockState::DeepslateBrickWall_TallTallNoneTrueFalseTall => &SHAPE163,
- BlockState::CobblestoneWall_LowLowNoneFalseTrueNone
- | BlockState::CobblestoneWall_LowLowNoneFalseFalseNone
- | BlockState::CobblestoneWall_LowTallNoneFalseTrueNone
- | BlockState::CobblestoneWall_LowTallNoneFalseFalseNone
- | BlockState::CobblestoneWall_TallLowNoneFalseTrueNone
- | BlockState::CobblestoneWall_TallLowNoneFalseFalseNone
- | BlockState::CobblestoneWall_TallTallNoneFalseTrueNone
- | BlockState::CobblestoneWall_TallTallNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowLowNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowLowNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowTallNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowTallNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallLowNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallLowNoneFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallTallNoneFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallTallNoneFalseFalseNone
- | BlockState::BrickWall_LowLowNoneFalseTrueNone
- | BlockState::BrickWall_LowLowNoneFalseFalseNone
- | BlockState::BrickWall_LowTallNoneFalseTrueNone
- | BlockState::BrickWall_LowTallNoneFalseFalseNone
- | BlockState::BrickWall_TallLowNoneFalseTrueNone
- | BlockState::BrickWall_TallLowNoneFalseFalseNone
- | BlockState::BrickWall_TallTallNoneFalseTrueNone
- | BlockState::BrickWall_TallTallNoneFalseFalseNone
- | BlockState::PrismarineWall_LowLowNoneFalseTrueNone
- | BlockState::PrismarineWall_LowLowNoneFalseFalseNone
- | BlockState::PrismarineWall_LowTallNoneFalseTrueNone
- | BlockState::PrismarineWall_LowTallNoneFalseFalseNone
- | BlockState::PrismarineWall_TallLowNoneFalseTrueNone
- | BlockState::PrismarineWall_TallLowNoneFalseFalseNone
- | BlockState::PrismarineWall_TallTallNoneFalseTrueNone
- | BlockState::PrismarineWall_TallTallNoneFalseFalseNone
- | BlockState::RedSandstoneWall_LowLowNoneFalseTrueNone
- | BlockState::RedSandstoneWall_LowLowNoneFalseFalseNone
- | BlockState::RedSandstoneWall_LowTallNoneFalseTrueNone
- | BlockState::RedSandstoneWall_LowTallNoneFalseFalseNone
- | BlockState::RedSandstoneWall_TallLowNoneFalseTrueNone
- | BlockState::RedSandstoneWall_TallLowNoneFalseFalseNone
- | BlockState::RedSandstoneWall_TallTallNoneFalseTrueNone
- | BlockState::RedSandstoneWall_TallTallNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowLowNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowLowNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowTallNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowTallNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallLowNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallLowNoneFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallTallNoneFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallTallNoneFalseFalseNone
- | BlockState::GraniteWall_LowLowNoneFalseTrueNone
- | BlockState::GraniteWall_LowLowNoneFalseFalseNone
- | BlockState::GraniteWall_LowTallNoneFalseTrueNone
- | BlockState::GraniteWall_LowTallNoneFalseFalseNone
- | BlockState::GraniteWall_TallLowNoneFalseTrueNone
- | BlockState::GraniteWall_TallLowNoneFalseFalseNone
- | BlockState::GraniteWall_TallTallNoneFalseTrueNone
- | BlockState::GraniteWall_TallTallNoneFalseFalseNone
- | BlockState::StoneBrickWall_LowLowNoneFalseTrueNone
- | BlockState::StoneBrickWall_LowLowNoneFalseFalseNone
- | BlockState::StoneBrickWall_LowTallNoneFalseTrueNone
- | BlockState::StoneBrickWall_LowTallNoneFalseFalseNone
- | BlockState::StoneBrickWall_TallLowNoneFalseTrueNone
- | BlockState::StoneBrickWall_TallLowNoneFalseFalseNone
- | BlockState::StoneBrickWall_TallTallNoneFalseTrueNone
- | BlockState::StoneBrickWall_TallTallNoneFalseFalseNone
- | BlockState::MudBrickWall_LowLowNoneFalseTrueNone
- | BlockState::MudBrickWall_LowLowNoneFalseFalseNone
- | BlockState::MudBrickWall_LowTallNoneFalseTrueNone
- | BlockState::MudBrickWall_LowTallNoneFalseFalseNone
- | BlockState::MudBrickWall_TallLowNoneFalseTrueNone
- | BlockState::MudBrickWall_TallLowNoneFalseFalseNone
- | BlockState::MudBrickWall_TallTallNoneFalseTrueNone
- | BlockState::MudBrickWall_TallTallNoneFalseFalseNone
- | BlockState::NetherBrickWall_LowLowNoneFalseTrueNone
- | BlockState::NetherBrickWall_LowLowNoneFalseFalseNone
- | BlockState::NetherBrickWall_LowTallNoneFalseTrueNone
- | BlockState::NetherBrickWall_LowTallNoneFalseFalseNone
- | BlockState::NetherBrickWall_TallLowNoneFalseTrueNone
- | BlockState::NetherBrickWall_TallLowNoneFalseFalseNone
- | BlockState::NetherBrickWall_TallTallNoneFalseTrueNone
- | BlockState::NetherBrickWall_TallTallNoneFalseFalseNone
- | BlockState::AndesiteWall_LowLowNoneFalseTrueNone
- | BlockState::AndesiteWall_LowLowNoneFalseFalseNone
- | BlockState::AndesiteWall_LowTallNoneFalseTrueNone
- | BlockState::AndesiteWall_LowTallNoneFalseFalseNone
- | BlockState::AndesiteWall_TallLowNoneFalseTrueNone
- | BlockState::AndesiteWall_TallLowNoneFalseFalseNone
- | BlockState::AndesiteWall_TallTallNoneFalseTrueNone
- | BlockState::AndesiteWall_TallTallNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_LowLowNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_LowLowNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_LowTallNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_LowTallNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_TallLowNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_TallLowNoneFalseFalseNone
- | BlockState::RedNetherBrickWall_TallTallNoneFalseTrueNone
- | BlockState::RedNetherBrickWall_TallTallNoneFalseFalseNone
- | BlockState::SandstoneWall_LowLowNoneFalseTrueNone
- | BlockState::SandstoneWall_LowLowNoneFalseFalseNone
- | BlockState::SandstoneWall_LowTallNoneFalseTrueNone
- | BlockState::SandstoneWall_LowTallNoneFalseFalseNone
- | BlockState::SandstoneWall_TallLowNoneFalseTrueNone
- | BlockState::SandstoneWall_TallLowNoneFalseFalseNone
- | BlockState::SandstoneWall_TallTallNoneFalseTrueNone
- | BlockState::SandstoneWall_TallTallNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_LowLowNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_LowLowNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_LowTallNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_LowTallNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_TallLowNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_TallLowNoneFalseFalseNone
- | BlockState::EndStoneBrickWall_TallTallNoneFalseTrueNone
- | BlockState::EndStoneBrickWall_TallTallNoneFalseFalseNone
- | BlockState::DioriteWall_LowLowNoneFalseTrueNone
- | BlockState::DioriteWall_LowLowNoneFalseFalseNone
- | BlockState::DioriteWall_LowTallNoneFalseTrueNone
- | BlockState::DioriteWall_LowTallNoneFalseFalseNone
- | BlockState::DioriteWall_TallLowNoneFalseTrueNone
- | BlockState::DioriteWall_TallLowNoneFalseFalseNone
- | BlockState::DioriteWall_TallTallNoneFalseTrueNone
- | BlockState::DioriteWall_TallTallNoneFalseFalseNone
- | BlockState::BlackstoneWall_LowLowNoneFalseTrueNone
- | BlockState::BlackstoneWall_LowLowNoneFalseFalseNone
- | BlockState::BlackstoneWall_LowTallNoneFalseTrueNone
- | BlockState::BlackstoneWall_LowTallNoneFalseFalseNone
- | BlockState::BlackstoneWall_TallLowNoneFalseTrueNone
- | BlockState::BlackstoneWall_TallLowNoneFalseFalseNone
- | BlockState::BlackstoneWall_TallTallNoneFalseTrueNone
- | BlockState::BlackstoneWall_TallTallNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowLowNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowLowNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowTallNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowTallNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallLowNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallLowNoneFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallTallNoneFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallTallNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowLowNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowLowNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowTallNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowTallNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallLowNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallLowNoneFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallTallNoneFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallTallNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowLowNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowLowNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowTallNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowTallNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallLowNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallLowNoneFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallTallNoneFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallTallNoneFalseFalseNone
- | BlockState::DeepslateTileWall_LowLowNoneFalseTrueNone
- | BlockState::DeepslateTileWall_LowLowNoneFalseFalseNone
- | BlockState::DeepslateTileWall_LowTallNoneFalseTrueNone
- | BlockState::DeepslateTileWall_LowTallNoneFalseFalseNone
- | BlockState::DeepslateTileWall_TallLowNoneFalseTrueNone
- | BlockState::DeepslateTileWall_TallLowNoneFalseFalseNone
- | BlockState::DeepslateTileWall_TallTallNoneFalseTrueNone
- | BlockState::DeepslateTileWall_TallTallNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_LowLowNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_LowLowNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_LowTallNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_LowTallNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_TallLowNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_TallLowNoneFalseFalseNone
- | BlockState::DeepslateBrickWall_TallTallNoneFalseTrueNone
- | BlockState::DeepslateBrickWall_TallTallNoneFalseFalseNone => &SHAPE164,
- BlockState::CobblestoneWall_LowLowNoneFalseTrueLow
- | BlockState::CobblestoneWall_LowLowNoneFalseTrueTall
- | BlockState::CobblestoneWall_LowLowNoneFalseFalseLow
- | BlockState::CobblestoneWall_LowLowNoneFalseFalseTall
- | BlockState::CobblestoneWall_LowTallNoneFalseTrueLow
- | BlockState::CobblestoneWall_LowTallNoneFalseTrueTall
- | BlockState::CobblestoneWall_LowTallNoneFalseFalseLow
- | BlockState::CobblestoneWall_LowTallNoneFalseFalseTall
- | BlockState::CobblestoneWall_TallLowNoneFalseTrueLow
- | BlockState::CobblestoneWall_TallLowNoneFalseTrueTall
- | BlockState::CobblestoneWall_TallLowNoneFalseFalseLow
- | BlockState::CobblestoneWall_TallLowNoneFalseFalseTall
- | BlockState::CobblestoneWall_TallTallNoneFalseTrueLow
- | BlockState::CobblestoneWall_TallTallNoneFalseTrueTall
- | BlockState::CobblestoneWall_TallTallNoneFalseFalseLow
- | BlockState::CobblestoneWall_TallTallNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowLowNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowLowNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowLowNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowLowNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowTallNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowTallNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowTallNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowTallNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallLowNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallLowNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallLowNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallLowNoneFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallTallNoneFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallTallNoneFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallTallNoneFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallTallNoneFalseFalseTall
- | BlockState::BrickWall_LowLowNoneFalseTrueLow
- | BlockState::BrickWall_LowLowNoneFalseTrueTall
- | BlockState::BrickWall_LowLowNoneFalseFalseLow
- | BlockState::BrickWall_LowLowNoneFalseFalseTall
- | BlockState::BrickWall_LowTallNoneFalseTrueLow
- | BlockState::BrickWall_LowTallNoneFalseTrueTall
- | BlockState::BrickWall_LowTallNoneFalseFalseLow
- | BlockState::BrickWall_LowTallNoneFalseFalseTall
- | BlockState::BrickWall_TallLowNoneFalseTrueLow
- | BlockState::BrickWall_TallLowNoneFalseTrueTall
- | BlockState::BrickWall_TallLowNoneFalseFalseLow
- | BlockState::BrickWall_TallLowNoneFalseFalseTall
- | BlockState::BrickWall_TallTallNoneFalseTrueLow
- | BlockState::BrickWall_TallTallNoneFalseTrueTall
- | BlockState::BrickWall_TallTallNoneFalseFalseLow
- | BlockState::BrickWall_TallTallNoneFalseFalseTall
- | BlockState::PrismarineWall_LowLowNoneFalseTrueLow
- | BlockState::PrismarineWall_LowLowNoneFalseTrueTall
- | BlockState::PrismarineWall_LowLowNoneFalseFalseLow
- | BlockState::PrismarineWall_LowLowNoneFalseFalseTall
- | BlockState::PrismarineWall_LowTallNoneFalseTrueLow
- | BlockState::PrismarineWall_LowTallNoneFalseTrueTall
- | BlockState::PrismarineWall_LowTallNoneFalseFalseLow
- | BlockState::PrismarineWall_LowTallNoneFalseFalseTall
- | BlockState::PrismarineWall_TallLowNoneFalseTrueLow
- | BlockState::PrismarineWall_TallLowNoneFalseTrueTall
- | BlockState::PrismarineWall_TallLowNoneFalseFalseLow
- | BlockState::PrismarineWall_TallLowNoneFalseFalseTall
- | BlockState::PrismarineWall_TallTallNoneFalseTrueLow
- | BlockState::PrismarineWall_TallTallNoneFalseTrueTall
- | BlockState::PrismarineWall_TallTallNoneFalseFalseLow
- | BlockState::PrismarineWall_TallTallNoneFalseFalseTall
- | BlockState::RedSandstoneWall_LowLowNoneFalseTrueLow
- | BlockState::RedSandstoneWall_LowLowNoneFalseTrueTall
- | BlockState::RedSandstoneWall_LowLowNoneFalseFalseLow
- | BlockState::RedSandstoneWall_LowLowNoneFalseFalseTall
- | BlockState::RedSandstoneWall_LowTallNoneFalseTrueLow
- | BlockState::RedSandstoneWall_LowTallNoneFalseTrueTall
- | BlockState::RedSandstoneWall_LowTallNoneFalseFalseLow
- | BlockState::RedSandstoneWall_LowTallNoneFalseFalseTall
- | BlockState::RedSandstoneWall_TallLowNoneFalseTrueLow
- | BlockState::RedSandstoneWall_TallLowNoneFalseTrueTall
- | BlockState::RedSandstoneWall_TallLowNoneFalseFalseLow
- | BlockState::RedSandstoneWall_TallLowNoneFalseFalseTall
- | BlockState::RedSandstoneWall_TallTallNoneFalseTrueLow
- | BlockState::RedSandstoneWall_TallTallNoneFalseTrueTall
- | BlockState::RedSandstoneWall_TallTallNoneFalseFalseLow
- | BlockState::RedSandstoneWall_TallTallNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowLowNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowLowNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowLowNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowLowNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowTallNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowTallNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowTallNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowTallNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallLowNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallLowNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallLowNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallLowNoneFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallTallNoneFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallTallNoneFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallTallNoneFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallTallNoneFalseFalseTall
- | BlockState::GraniteWall_LowLowNoneFalseTrueLow
- | BlockState::GraniteWall_LowLowNoneFalseTrueTall
- | BlockState::GraniteWall_LowLowNoneFalseFalseLow
- | BlockState::GraniteWall_LowLowNoneFalseFalseTall
- | BlockState::GraniteWall_LowTallNoneFalseTrueLow
- | BlockState::GraniteWall_LowTallNoneFalseTrueTall
- | BlockState::GraniteWall_LowTallNoneFalseFalseLow
- | BlockState::GraniteWall_LowTallNoneFalseFalseTall
- | BlockState::GraniteWall_TallLowNoneFalseTrueLow
- | BlockState::GraniteWall_TallLowNoneFalseTrueTall
- | BlockState::GraniteWall_TallLowNoneFalseFalseLow
- | BlockState::GraniteWall_TallLowNoneFalseFalseTall
- | BlockState::GraniteWall_TallTallNoneFalseTrueLow
- | BlockState::GraniteWall_TallTallNoneFalseTrueTall
- | BlockState::GraniteWall_TallTallNoneFalseFalseLow
- | BlockState::GraniteWall_TallTallNoneFalseFalseTall
- | BlockState::StoneBrickWall_LowLowNoneFalseTrueLow
- | BlockState::StoneBrickWall_LowLowNoneFalseTrueTall
- | BlockState::StoneBrickWall_LowLowNoneFalseFalseLow
- | BlockState::StoneBrickWall_LowLowNoneFalseFalseTall
- | BlockState::StoneBrickWall_LowTallNoneFalseTrueLow
- | BlockState::StoneBrickWall_LowTallNoneFalseTrueTall
- | BlockState::StoneBrickWall_LowTallNoneFalseFalseLow
- | BlockState::StoneBrickWall_LowTallNoneFalseFalseTall
- | BlockState::StoneBrickWall_TallLowNoneFalseTrueLow
- | BlockState::StoneBrickWall_TallLowNoneFalseTrueTall
- | BlockState::StoneBrickWall_TallLowNoneFalseFalseLow
- | BlockState::StoneBrickWall_TallLowNoneFalseFalseTall
- | BlockState::StoneBrickWall_TallTallNoneFalseTrueLow
- | BlockState::StoneBrickWall_TallTallNoneFalseTrueTall
- | BlockState::StoneBrickWall_TallTallNoneFalseFalseLow
- | BlockState::StoneBrickWall_TallTallNoneFalseFalseTall
- | BlockState::MudBrickWall_LowLowNoneFalseTrueLow
- | BlockState::MudBrickWall_LowLowNoneFalseTrueTall
- | BlockState::MudBrickWall_LowLowNoneFalseFalseLow
- | BlockState::MudBrickWall_LowLowNoneFalseFalseTall
- | BlockState::MudBrickWall_LowTallNoneFalseTrueLow
- | BlockState::MudBrickWall_LowTallNoneFalseTrueTall
- | BlockState::MudBrickWall_LowTallNoneFalseFalseLow
- | BlockState::MudBrickWall_LowTallNoneFalseFalseTall
- | BlockState::MudBrickWall_TallLowNoneFalseTrueLow
- | BlockState::MudBrickWall_TallLowNoneFalseTrueTall
- | BlockState::MudBrickWall_TallLowNoneFalseFalseLow
- | BlockState::MudBrickWall_TallLowNoneFalseFalseTall
- | BlockState::MudBrickWall_TallTallNoneFalseTrueLow
- | BlockState::MudBrickWall_TallTallNoneFalseTrueTall
- | BlockState::MudBrickWall_TallTallNoneFalseFalseLow
- | BlockState::MudBrickWall_TallTallNoneFalseFalseTall
- | BlockState::NetherBrickWall_LowLowNoneFalseTrueLow
- | BlockState::NetherBrickWall_LowLowNoneFalseTrueTall
- | BlockState::NetherBrickWall_LowLowNoneFalseFalseLow
- | BlockState::NetherBrickWall_LowLowNoneFalseFalseTall
- | BlockState::NetherBrickWall_LowTallNoneFalseTrueLow
- | BlockState::NetherBrickWall_LowTallNoneFalseTrueTall
- | BlockState::NetherBrickWall_LowTallNoneFalseFalseLow
- | BlockState::NetherBrickWall_LowTallNoneFalseFalseTall
- | BlockState::NetherBrickWall_TallLowNoneFalseTrueLow
- | BlockState::NetherBrickWall_TallLowNoneFalseTrueTall
- | BlockState::NetherBrickWall_TallLowNoneFalseFalseLow
- | BlockState::NetherBrickWall_TallLowNoneFalseFalseTall
- | BlockState::NetherBrickWall_TallTallNoneFalseTrueLow
- | BlockState::NetherBrickWall_TallTallNoneFalseTrueTall
- | BlockState::NetherBrickWall_TallTallNoneFalseFalseLow
- | BlockState::NetherBrickWall_TallTallNoneFalseFalseTall
- | BlockState::AndesiteWall_LowLowNoneFalseTrueLow
- | BlockState::AndesiteWall_LowLowNoneFalseTrueTall
- | BlockState::AndesiteWall_LowLowNoneFalseFalseLow
- | BlockState::AndesiteWall_LowLowNoneFalseFalseTall
- | BlockState::AndesiteWall_LowTallNoneFalseTrueLow
- | BlockState::AndesiteWall_LowTallNoneFalseTrueTall
- | BlockState::AndesiteWall_LowTallNoneFalseFalseLow
- | BlockState::AndesiteWall_LowTallNoneFalseFalseTall
- | BlockState::AndesiteWall_TallLowNoneFalseTrueLow
- | BlockState::AndesiteWall_TallLowNoneFalseTrueTall
- | BlockState::AndesiteWall_TallLowNoneFalseFalseLow
- | BlockState::AndesiteWall_TallLowNoneFalseFalseTall
- | BlockState::AndesiteWall_TallTallNoneFalseTrueLow
- | BlockState::AndesiteWall_TallTallNoneFalseTrueTall
- | BlockState::AndesiteWall_TallTallNoneFalseFalseLow
- | BlockState::AndesiteWall_TallTallNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_LowLowNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_LowLowNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_LowLowNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_LowLowNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_LowTallNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_LowTallNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_LowTallNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_LowTallNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_TallLowNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_TallLowNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_TallLowNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_TallLowNoneFalseFalseTall
- | BlockState::RedNetherBrickWall_TallTallNoneFalseTrueLow
- | BlockState::RedNetherBrickWall_TallTallNoneFalseTrueTall
- | BlockState::RedNetherBrickWall_TallTallNoneFalseFalseLow
- | BlockState::RedNetherBrickWall_TallTallNoneFalseFalseTall
- | BlockState::SandstoneWall_LowLowNoneFalseTrueLow
- | BlockState::SandstoneWall_LowLowNoneFalseTrueTall
- | BlockState::SandstoneWall_LowLowNoneFalseFalseLow
- | BlockState::SandstoneWall_LowLowNoneFalseFalseTall
- | BlockState::SandstoneWall_LowTallNoneFalseTrueLow
- | BlockState::SandstoneWall_LowTallNoneFalseTrueTall
- | BlockState::SandstoneWall_LowTallNoneFalseFalseLow
- | BlockState::SandstoneWall_LowTallNoneFalseFalseTall
- | BlockState::SandstoneWall_TallLowNoneFalseTrueLow
- | BlockState::SandstoneWall_TallLowNoneFalseTrueTall
- | BlockState::SandstoneWall_TallLowNoneFalseFalseLow
- | BlockState::SandstoneWall_TallLowNoneFalseFalseTall
- | BlockState::SandstoneWall_TallTallNoneFalseTrueLow
- | BlockState::SandstoneWall_TallTallNoneFalseTrueTall
- | BlockState::SandstoneWall_TallTallNoneFalseFalseLow
- | BlockState::SandstoneWall_TallTallNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_LowLowNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_LowLowNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_LowLowNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_LowLowNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_LowTallNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_LowTallNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_LowTallNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_LowTallNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_TallLowNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_TallLowNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_TallLowNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_TallLowNoneFalseFalseTall
- | BlockState::EndStoneBrickWall_TallTallNoneFalseTrueLow
- | BlockState::EndStoneBrickWall_TallTallNoneFalseTrueTall
- | BlockState::EndStoneBrickWall_TallTallNoneFalseFalseLow
- | BlockState::EndStoneBrickWall_TallTallNoneFalseFalseTall
- | BlockState::DioriteWall_LowLowNoneFalseTrueLow
- | BlockState::DioriteWall_LowLowNoneFalseTrueTall
- | BlockState::DioriteWall_LowLowNoneFalseFalseLow
- | BlockState::DioriteWall_LowLowNoneFalseFalseTall
- | BlockState::DioriteWall_LowTallNoneFalseTrueLow
- | BlockState::DioriteWall_LowTallNoneFalseTrueTall
- | BlockState::DioriteWall_LowTallNoneFalseFalseLow
- | BlockState::DioriteWall_LowTallNoneFalseFalseTall
- | BlockState::DioriteWall_TallLowNoneFalseTrueLow
- | BlockState::DioriteWall_TallLowNoneFalseTrueTall
- | BlockState::DioriteWall_TallLowNoneFalseFalseLow
- | BlockState::DioriteWall_TallLowNoneFalseFalseTall
- | BlockState::DioriteWall_TallTallNoneFalseTrueLow
- | BlockState::DioriteWall_TallTallNoneFalseTrueTall
- | BlockState::DioriteWall_TallTallNoneFalseFalseLow
- | BlockState::DioriteWall_TallTallNoneFalseFalseTall
- | BlockState::BlackstoneWall_LowLowNoneFalseTrueLow
- | BlockState::BlackstoneWall_LowLowNoneFalseTrueTall
- | BlockState::BlackstoneWall_LowLowNoneFalseFalseLow
- | BlockState::BlackstoneWall_LowLowNoneFalseFalseTall
- | BlockState::BlackstoneWall_LowTallNoneFalseTrueLow
- | BlockState::BlackstoneWall_LowTallNoneFalseTrueTall
- | BlockState::BlackstoneWall_LowTallNoneFalseFalseLow
- | BlockState::BlackstoneWall_LowTallNoneFalseFalseTall
- | BlockState::BlackstoneWall_TallLowNoneFalseTrueLow
- | BlockState::BlackstoneWall_TallLowNoneFalseTrueTall
- | BlockState::BlackstoneWall_TallLowNoneFalseFalseLow
- | BlockState::BlackstoneWall_TallLowNoneFalseFalseTall
- | BlockState::BlackstoneWall_TallTallNoneFalseTrueLow
- | BlockState::BlackstoneWall_TallTallNoneFalseTrueTall
- | BlockState::BlackstoneWall_TallTallNoneFalseFalseLow
- | BlockState::BlackstoneWall_TallTallNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowNoneFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowLowNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowLowNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowLowNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowLowNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowTallNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowTallNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowTallNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowTallNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallLowNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallLowNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallLowNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallLowNoneFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallTallNoneFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallTallNoneFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallTallNoneFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallTallNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowLowNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowLowNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowLowNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowLowNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowTallNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowTallNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowTallNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowTallNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallLowNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallLowNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallLowNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallLowNoneFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallTallNoneFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallTallNoneFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallTallNoneFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallTallNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowLowNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowLowNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowLowNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowLowNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowTallNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowTallNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowTallNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowTallNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallLowNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallLowNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallLowNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallLowNoneFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallTallNoneFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallTallNoneFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallTallNoneFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallTallNoneFalseFalseTall
- | BlockState::DeepslateTileWall_LowLowNoneFalseTrueLow
- | BlockState::DeepslateTileWall_LowLowNoneFalseTrueTall
- | BlockState::DeepslateTileWall_LowLowNoneFalseFalseLow
- | BlockState::DeepslateTileWall_LowLowNoneFalseFalseTall
- | BlockState::DeepslateTileWall_LowTallNoneFalseTrueLow
- | BlockState::DeepslateTileWall_LowTallNoneFalseTrueTall
- | BlockState::DeepslateTileWall_LowTallNoneFalseFalseLow
- | BlockState::DeepslateTileWall_LowTallNoneFalseFalseTall
- | BlockState::DeepslateTileWall_TallLowNoneFalseTrueLow
- | BlockState::DeepslateTileWall_TallLowNoneFalseTrueTall
- | BlockState::DeepslateTileWall_TallLowNoneFalseFalseLow
- | BlockState::DeepslateTileWall_TallLowNoneFalseFalseTall
- | BlockState::DeepslateTileWall_TallTallNoneFalseTrueLow
- | BlockState::DeepslateTileWall_TallTallNoneFalseTrueTall
- | BlockState::DeepslateTileWall_TallTallNoneFalseFalseLow
- | BlockState::DeepslateTileWall_TallTallNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_LowLowNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_LowLowNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_LowLowNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_LowLowNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_LowTallNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_LowTallNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_LowTallNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_LowTallNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_TallLowNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_TallLowNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_TallLowNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_TallLowNoneFalseFalseTall
- | BlockState::DeepslateBrickWall_TallTallNoneFalseTrueLow
- | BlockState::DeepslateBrickWall_TallTallNoneFalseTrueTall
- | BlockState::DeepslateBrickWall_TallTallNoneFalseFalseLow
- | BlockState::DeepslateBrickWall_TallTallNoneFalseFalseTall => &SHAPE165,
- BlockState::CobblestoneWall_LowLowLowTrueTrueNone
- | BlockState::CobblestoneWall_LowLowLowTrueFalseNone
- | BlockState::CobblestoneWall_LowLowTallTrueTrueNone
- | BlockState::CobblestoneWall_LowLowTallTrueFalseNone
- | BlockState::CobblestoneWall_LowTallLowTrueTrueNone
- | BlockState::CobblestoneWall_LowTallLowTrueFalseNone
- | BlockState::CobblestoneWall_LowTallTallTrueTrueNone
- | BlockState::CobblestoneWall_LowTallTallTrueFalseNone
- | BlockState::CobblestoneWall_TallLowLowTrueTrueNone
- | BlockState::CobblestoneWall_TallLowLowTrueFalseNone
- | BlockState::CobblestoneWall_TallLowTallTrueTrueNone
- | BlockState::CobblestoneWall_TallLowTallTrueFalseNone
- | BlockState::CobblestoneWall_TallTallLowTrueTrueNone
- | BlockState::CobblestoneWall_TallTallLowTrueFalseNone
- | BlockState::CobblestoneWall_TallTallTallTrueTrueNone
- | BlockState::CobblestoneWall_TallTallTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowLowLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowLowLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowLowTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowLowTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowTallLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowTallLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_LowTallTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_LowTallTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallLowLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallLowLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallLowTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallLowTallTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallTallLowTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallTallLowTrueFalseNone
- | BlockState::MossyCobblestoneWall_TallTallTallTrueTrueNone
- | BlockState::MossyCobblestoneWall_TallTallTallTrueFalseNone
- | BlockState::BrickWall_LowLowLowTrueTrueNone
- | BlockState::BrickWall_LowLowLowTrueFalseNone
- | BlockState::BrickWall_LowLowTallTrueTrueNone
- | BlockState::BrickWall_LowLowTallTrueFalseNone
- | BlockState::BrickWall_LowTallLowTrueTrueNone
- | BlockState::BrickWall_LowTallLowTrueFalseNone
- | BlockState::BrickWall_LowTallTallTrueTrueNone
- | BlockState::BrickWall_LowTallTallTrueFalseNone
- | BlockState::BrickWall_TallLowLowTrueTrueNone
- | BlockState::BrickWall_TallLowLowTrueFalseNone
- | BlockState::BrickWall_TallLowTallTrueTrueNone
- | BlockState::BrickWall_TallLowTallTrueFalseNone
- | BlockState::BrickWall_TallTallLowTrueTrueNone
- | BlockState::BrickWall_TallTallLowTrueFalseNone
- | BlockState::BrickWall_TallTallTallTrueTrueNone
- | BlockState::BrickWall_TallTallTallTrueFalseNone
- | BlockState::PrismarineWall_LowLowLowTrueTrueNone
- | BlockState::PrismarineWall_LowLowLowTrueFalseNone
- | BlockState::PrismarineWall_LowLowTallTrueTrueNone
- | BlockState::PrismarineWall_LowLowTallTrueFalseNone
- | BlockState::PrismarineWall_LowTallLowTrueTrueNone
- | BlockState::PrismarineWall_LowTallLowTrueFalseNone
- | BlockState::PrismarineWall_LowTallTallTrueTrueNone
- | BlockState::PrismarineWall_LowTallTallTrueFalseNone
- | BlockState::PrismarineWall_TallLowLowTrueTrueNone
- | BlockState::PrismarineWall_TallLowLowTrueFalseNone
- | BlockState::PrismarineWall_TallLowTallTrueTrueNone
- | BlockState::PrismarineWall_TallLowTallTrueFalseNone
- | BlockState::PrismarineWall_TallTallLowTrueTrueNone
- | BlockState::PrismarineWall_TallTallLowTrueFalseNone
- | BlockState::PrismarineWall_TallTallTallTrueTrueNone
- | BlockState::PrismarineWall_TallTallTallTrueFalseNone
- | BlockState::RedSandstoneWall_LowLowLowTrueTrueNone
- | BlockState::RedSandstoneWall_LowLowLowTrueFalseNone
- | BlockState::RedSandstoneWall_LowLowTallTrueTrueNone
- | BlockState::RedSandstoneWall_LowLowTallTrueFalseNone
- | BlockState::RedSandstoneWall_LowTallLowTrueTrueNone
- | BlockState::RedSandstoneWall_LowTallLowTrueFalseNone
- | BlockState::RedSandstoneWall_LowTallTallTrueTrueNone
- | BlockState::RedSandstoneWall_LowTallTallTrueFalseNone
- | BlockState::RedSandstoneWall_TallLowLowTrueTrueNone
- | BlockState::RedSandstoneWall_TallLowLowTrueFalseNone
- | BlockState::RedSandstoneWall_TallLowTallTrueTrueNone
- | BlockState::RedSandstoneWall_TallLowTallTrueFalseNone
- | BlockState::RedSandstoneWall_TallTallLowTrueTrueNone
- | BlockState::RedSandstoneWall_TallTallLowTrueFalseNone
- | BlockState::RedSandstoneWall_TallTallTallTrueTrueNone
- | BlockState::RedSandstoneWall_TallTallTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowLowLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowLowLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowLowTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowLowTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowTallLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowTallLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_LowTallTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_LowTallTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallLowLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallLowLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallLowTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallLowTallTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallTallLowTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallTallLowTrueFalseNone
- | BlockState::MossyStoneBrickWall_TallTallTallTrueTrueNone
- | BlockState::MossyStoneBrickWall_TallTallTallTrueFalseNone
- | BlockState::GraniteWall_LowLowLowTrueTrueNone
- | BlockState::GraniteWall_LowLowLowTrueFalseNone
- | BlockState::GraniteWall_LowLowTallTrueTrueNone
- | BlockState::GraniteWall_LowLowTallTrueFalseNone
- | BlockState::GraniteWall_LowTallLowTrueTrueNone
- | BlockState::GraniteWall_LowTallLowTrueFalseNone
- | BlockState::GraniteWall_LowTallTallTrueTrueNone
- | BlockState::GraniteWall_LowTallTallTrueFalseNone
- | BlockState::GraniteWall_TallLowLowTrueTrueNone
- | BlockState::GraniteWall_TallLowLowTrueFalseNone
- | BlockState::GraniteWall_TallLowTallTrueTrueNone
- | BlockState::GraniteWall_TallLowTallTrueFalseNone
- | BlockState::GraniteWall_TallTallLowTrueTrueNone
- | BlockState::GraniteWall_TallTallLowTrueFalseNone
- | BlockState::GraniteWall_TallTallTallTrueTrueNone
- | BlockState::GraniteWall_TallTallTallTrueFalseNone
- | BlockState::StoneBrickWall_LowLowLowTrueTrueNone
- | BlockState::StoneBrickWall_LowLowLowTrueFalseNone
- | BlockState::StoneBrickWall_LowLowTallTrueTrueNone
- | BlockState::StoneBrickWall_LowLowTallTrueFalseNone
- | BlockState::StoneBrickWall_LowTallLowTrueTrueNone
- | BlockState::StoneBrickWall_LowTallLowTrueFalseNone
- | BlockState::StoneBrickWall_LowTallTallTrueTrueNone
- | BlockState::StoneBrickWall_LowTallTallTrueFalseNone
- | BlockState::StoneBrickWall_TallLowLowTrueTrueNone
- | BlockState::StoneBrickWall_TallLowLowTrueFalseNone
- | BlockState::StoneBrickWall_TallLowTallTrueTrueNone
- | BlockState::StoneBrickWall_TallLowTallTrueFalseNone
- | BlockState::StoneBrickWall_TallTallLowTrueTrueNone
- | BlockState::StoneBrickWall_TallTallLowTrueFalseNone
- | BlockState::StoneBrickWall_TallTallTallTrueTrueNone
- | BlockState::StoneBrickWall_TallTallTallTrueFalseNone
- | BlockState::MudBrickWall_LowLowLowTrueTrueNone
- | BlockState::MudBrickWall_LowLowLowTrueFalseNone
- | BlockState::MudBrickWall_LowLowTallTrueTrueNone
- | BlockState::MudBrickWall_LowLowTallTrueFalseNone
- | BlockState::MudBrickWall_LowTallLowTrueTrueNone
- | BlockState::MudBrickWall_LowTallLowTrueFalseNone
- | BlockState::MudBrickWall_LowTallTallTrueTrueNone
- | BlockState::MudBrickWall_LowTallTallTrueFalseNone
- | BlockState::MudBrickWall_TallLowLowTrueTrueNone
- | BlockState::MudBrickWall_TallLowLowTrueFalseNone
- | BlockState::MudBrickWall_TallLowTallTrueTrueNone
- | BlockState::MudBrickWall_TallLowTallTrueFalseNone
- | BlockState::MudBrickWall_TallTallLowTrueTrueNone
- | BlockState::MudBrickWall_TallTallLowTrueFalseNone
- | BlockState::MudBrickWall_TallTallTallTrueTrueNone
- | BlockState::MudBrickWall_TallTallTallTrueFalseNone
- | BlockState::NetherBrickWall_LowLowLowTrueTrueNone
- | BlockState::NetherBrickWall_LowLowLowTrueFalseNone
- | BlockState::NetherBrickWall_LowLowTallTrueTrueNone
- | BlockState::NetherBrickWall_LowLowTallTrueFalseNone
- | BlockState::NetherBrickWall_LowTallLowTrueTrueNone
- | BlockState::NetherBrickWall_LowTallLowTrueFalseNone
- | BlockState::NetherBrickWall_LowTallTallTrueTrueNone
- | BlockState::NetherBrickWall_LowTallTallTrueFalseNone
- | BlockState::NetherBrickWall_TallLowLowTrueTrueNone
- | BlockState::NetherBrickWall_TallLowLowTrueFalseNone
- | BlockState::NetherBrickWall_TallLowTallTrueTrueNone
- | BlockState::NetherBrickWall_TallLowTallTrueFalseNone
- | BlockState::NetherBrickWall_TallTallLowTrueTrueNone
- | BlockState::NetherBrickWall_TallTallLowTrueFalseNone
- | BlockState::NetherBrickWall_TallTallTallTrueTrueNone
- | BlockState::NetherBrickWall_TallTallTallTrueFalseNone
- | BlockState::AndesiteWall_LowLowLowTrueTrueNone
- | BlockState::AndesiteWall_LowLowLowTrueFalseNone
- | BlockState::AndesiteWall_LowLowTallTrueTrueNone
- | BlockState::AndesiteWall_LowLowTallTrueFalseNone
- | BlockState::AndesiteWall_LowTallLowTrueTrueNone
- | BlockState::AndesiteWall_LowTallLowTrueFalseNone
- | BlockState::AndesiteWall_LowTallTallTrueTrueNone
- | BlockState::AndesiteWall_LowTallTallTrueFalseNone
- | BlockState::AndesiteWall_TallLowLowTrueTrueNone
- | BlockState::AndesiteWall_TallLowLowTrueFalseNone
- | BlockState::AndesiteWall_TallLowTallTrueTrueNone
- | BlockState::AndesiteWall_TallLowTallTrueFalseNone
- | BlockState::AndesiteWall_TallTallLowTrueTrueNone
- | BlockState::AndesiteWall_TallTallLowTrueFalseNone
- | BlockState::AndesiteWall_TallTallTallTrueTrueNone
- | BlockState::AndesiteWall_TallTallTallTrueFalseNone
- | BlockState::RedNetherBrickWall_LowLowLowTrueTrueNone
- | BlockState::RedNetherBrickWall_LowLowLowTrueFalseNone
- | BlockState::RedNetherBrickWall_LowLowTallTrueTrueNone
- | BlockState::RedNetherBrickWall_LowLowTallTrueFalseNone
- | BlockState::RedNetherBrickWall_LowTallLowTrueTrueNone
- | BlockState::RedNetherBrickWall_LowTallLowTrueFalseNone
- | BlockState::RedNetherBrickWall_LowTallTallTrueTrueNone
- | BlockState::RedNetherBrickWall_LowTallTallTrueFalseNone
- | BlockState::RedNetherBrickWall_TallLowLowTrueTrueNone
- | BlockState::RedNetherBrickWall_TallLowLowTrueFalseNone
- | BlockState::RedNetherBrickWall_TallLowTallTrueTrueNone
- | BlockState::RedNetherBrickWall_TallLowTallTrueFalseNone
- | BlockState::RedNetherBrickWall_TallTallLowTrueTrueNone
- | BlockState::RedNetherBrickWall_TallTallLowTrueFalseNone
- | BlockState::RedNetherBrickWall_TallTallTallTrueTrueNone
- | BlockState::RedNetherBrickWall_TallTallTallTrueFalseNone
- | BlockState::SandstoneWall_LowLowLowTrueTrueNone
- | BlockState::SandstoneWall_LowLowLowTrueFalseNone
- | BlockState::SandstoneWall_LowLowTallTrueTrueNone
- | BlockState::SandstoneWall_LowLowTallTrueFalseNone
- | BlockState::SandstoneWall_LowTallLowTrueTrueNone
- | BlockState::SandstoneWall_LowTallLowTrueFalseNone
- | BlockState::SandstoneWall_LowTallTallTrueTrueNone
- | BlockState::SandstoneWall_LowTallTallTrueFalseNone
- | BlockState::SandstoneWall_TallLowLowTrueTrueNone
- | BlockState::SandstoneWall_TallLowLowTrueFalseNone
- | BlockState::SandstoneWall_TallLowTallTrueTrueNone
- | BlockState::SandstoneWall_TallLowTallTrueFalseNone
- | BlockState::SandstoneWall_TallTallLowTrueTrueNone
- | BlockState::SandstoneWall_TallTallLowTrueFalseNone
- | BlockState::SandstoneWall_TallTallTallTrueTrueNone
- | BlockState::SandstoneWall_TallTallTallTrueFalseNone
- | BlockState::EndStoneBrickWall_LowLowLowTrueTrueNone
- | BlockState::EndStoneBrickWall_LowLowLowTrueFalseNone
- | BlockState::EndStoneBrickWall_LowLowTallTrueTrueNone
- | BlockState::EndStoneBrickWall_LowLowTallTrueFalseNone
- | BlockState::EndStoneBrickWall_LowTallLowTrueTrueNone
- | BlockState::EndStoneBrickWall_LowTallLowTrueFalseNone
- | BlockState::EndStoneBrickWall_LowTallTallTrueTrueNone
- | BlockState::EndStoneBrickWall_LowTallTallTrueFalseNone
- | BlockState::EndStoneBrickWall_TallLowLowTrueTrueNone
- | BlockState::EndStoneBrickWall_TallLowLowTrueFalseNone
- | BlockState::EndStoneBrickWall_TallLowTallTrueTrueNone
- | BlockState::EndStoneBrickWall_TallLowTallTrueFalseNone
- | BlockState::EndStoneBrickWall_TallTallLowTrueTrueNone
- | BlockState::EndStoneBrickWall_TallTallLowTrueFalseNone
- | BlockState::EndStoneBrickWall_TallTallTallTrueTrueNone
- | BlockState::EndStoneBrickWall_TallTallTallTrueFalseNone
- | BlockState::DioriteWall_LowLowLowTrueTrueNone
- | BlockState::DioriteWall_LowLowLowTrueFalseNone
- | BlockState::DioriteWall_LowLowTallTrueTrueNone
- | BlockState::DioriteWall_LowLowTallTrueFalseNone
- | BlockState::DioriteWall_LowTallLowTrueTrueNone
- | BlockState::DioriteWall_LowTallLowTrueFalseNone
- | BlockState::DioriteWall_LowTallTallTrueTrueNone
- | BlockState::DioriteWall_LowTallTallTrueFalseNone
- | BlockState::DioriteWall_TallLowLowTrueTrueNone
- | BlockState::DioriteWall_TallLowLowTrueFalseNone
- | BlockState::DioriteWall_TallLowTallTrueTrueNone
- | BlockState::DioriteWall_TallLowTallTrueFalseNone
- | BlockState::DioriteWall_TallTallLowTrueTrueNone
- | BlockState::DioriteWall_TallTallLowTrueFalseNone
- | BlockState::DioriteWall_TallTallTallTrueTrueNone
- | BlockState::DioriteWall_TallTallTallTrueFalseNone
- | BlockState::BlackstoneWall_LowLowLowTrueTrueNone
- | BlockState::BlackstoneWall_LowLowLowTrueFalseNone
- | BlockState::BlackstoneWall_LowLowTallTrueTrueNone
- | BlockState::BlackstoneWall_LowLowTallTrueFalseNone
- | BlockState::BlackstoneWall_LowTallLowTrueTrueNone
- | BlockState::BlackstoneWall_LowTallLowTrueFalseNone
- | BlockState::BlackstoneWall_LowTallTallTrueTrueNone
- | BlockState::BlackstoneWall_LowTallTallTrueFalseNone
- | BlockState::BlackstoneWall_TallLowLowTrueTrueNone
- | BlockState::BlackstoneWall_TallLowLowTrueFalseNone
- | BlockState::BlackstoneWall_TallLowTallTrueTrueNone
- | BlockState::BlackstoneWall_TallLowTallTrueFalseNone
- | BlockState::BlackstoneWall_TallTallLowTrueTrueNone
- | BlockState::BlackstoneWall_TallTallLowTrueFalseNone
- | BlockState::BlackstoneWall_TallTallTallTrueTrueNone
- | BlockState::BlackstoneWall_TallTallTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowTrueFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallTrueTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowLowLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowLowLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowLowTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowLowTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowTallLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowTallLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_LowTallTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_LowTallTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallLowLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallLowLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallLowTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallLowTallTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallTallLowTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallTallLowTrueFalseNone
- | BlockState::PolishedBlackstoneWall_TallTallTallTrueTrueNone
- | BlockState::PolishedBlackstoneWall_TallTallTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowLowLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowLowLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowLowTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowLowTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowTallLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowTallLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_LowTallTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_LowTallTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallLowLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallLowLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallLowTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallLowTallTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallTallLowTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallTallLowTrueFalseNone
- | BlockState::CobbledDeepslateWall_TallTallTallTrueTrueNone
- | BlockState::CobbledDeepslateWall_TallTallTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowLowLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowLowLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowLowTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowLowTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowTallLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowTallLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_LowTallTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_LowTallTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallLowLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallLowLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallLowTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallLowTallTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallTallLowTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallTallLowTrueFalseNone
- | BlockState::PolishedDeepslateWall_TallTallTallTrueTrueNone
- | BlockState::PolishedDeepslateWall_TallTallTallTrueFalseNone
- | BlockState::DeepslateTileWall_LowLowLowTrueTrueNone
- | BlockState::DeepslateTileWall_LowLowLowTrueFalseNone
- | BlockState::DeepslateTileWall_LowLowTallTrueTrueNone
- | BlockState::DeepslateTileWall_LowLowTallTrueFalseNone
- | BlockState::DeepslateTileWall_LowTallLowTrueTrueNone
- | BlockState::DeepslateTileWall_LowTallLowTrueFalseNone
- | BlockState::DeepslateTileWall_LowTallTallTrueTrueNone
- | BlockState::DeepslateTileWall_LowTallTallTrueFalseNone
- | BlockState::DeepslateTileWall_TallLowLowTrueTrueNone
- | BlockState::DeepslateTileWall_TallLowLowTrueFalseNone
- | BlockState::DeepslateTileWall_TallLowTallTrueTrueNone
- | BlockState::DeepslateTileWall_TallLowTallTrueFalseNone
- | BlockState::DeepslateTileWall_TallTallLowTrueTrueNone
- | BlockState::DeepslateTileWall_TallTallLowTrueFalseNone
- | BlockState::DeepslateTileWall_TallTallTallTrueTrueNone
- | BlockState::DeepslateTileWall_TallTallTallTrueFalseNone
- | BlockState::DeepslateBrickWall_LowLowLowTrueTrueNone
- | BlockState::DeepslateBrickWall_LowLowLowTrueFalseNone
- | BlockState::DeepslateBrickWall_LowLowTallTrueTrueNone
- | BlockState::DeepslateBrickWall_LowLowTallTrueFalseNone
- | BlockState::DeepslateBrickWall_LowTallLowTrueTrueNone
- | BlockState::DeepslateBrickWall_LowTallLowTrueFalseNone
- | BlockState::DeepslateBrickWall_LowTallTallTrueTrueNone
- | BlockState::DeepslateBrickWall_LowTallTallTrueFalseNone
- | BlockState::DeepslateBrickWall_TallLowLowTrueTrueNone
- | BlockState::DeepslateBrickWall_TallLowLowTrueFalseNone
- | BlockState::DeepslateBrickWall_TallLowTallTrueTrueNone
- | BlockState::DeepslateBrickWall_TallLowTallTrueFalseNone
- | BlockState::DeepslateBrickWall_TallTallLowTrueTrueNone
- | BlockState::DeepslateBrickWall_TallTallLowTrueFalseNone
- | BlockState::DeepslateBrickWall_TallTallTallTrueTrueNone
- | BlockState::DeepslateBrickWall_TallTallTallTrueFalseNone => &SHAPE166,
- BlockState::CobblestoneWall_LowLowLowTrueTrueLow
- | BlockState::CobblestoneWall_LowLowLowTrueTrueTall
- | BlockState::CobblestoneWall_LowLowLowTrueFalseLow
- | BlockState::CobblestoneWall_LowLowLowTrueFalseTall
- | BlockState::CobblestoneWall_LowLowTallTrueTrueLow
- | BlockState::CobblestoneWall_LowLowTallTrueTrueTall
- | BlockState::CobblestoneWall_LowLowTallTrueFalseLow
- | BlockState::CobblestoneWall_LowLowTallTrueFalseTall
- | BlockState::CobblestoneWall_LowTallLowTrueTrueLow
- | BlockState::CobblestoneWall_LowTallLowTrueTrueTall
- | BlockState::CobblestoneWall_LowTallLowTrueFalseLow
- | BlockState::CobblestoneWall_LowTallLowTrueFalseTall
- | BlockState::CobblestoneWall_LowTallTallTrueTrueLow
- | BlockState::CobblestoneWall_LowTallTallTrueTrueTall
- | BlockState::CobblestoneWall_LowTallTallTrueFalseLow
- | BlockState::CobblestoneWall_LowTallTallTrueFalseTall
- | BlockState::CobblestoneWall_TallLowLowTrueTrueLow
- | BlockState::CobblestoneWall_TallLowLowTrueTrueTall
- | BlockState::CobblestoneWall_TallLowLowTrueFalseLow
- | BlockState::CobblestoneWall_TallLowLowTrueFalseTall
- | BlockState::CobblestoneWall_TallLowTallTrueTrueLow
- | BlockState::CobblestoneWall_TallLowTallTrueTrueTall
- | BlockState::CobblestoneWall_TallLowTallTrueFalseLow
- | BlockState::CobblestoneWall_TallLowTallTrueFalseTall
- | BlockState::CobblestoneWall_TallTallLowTrueTrueLow
- | BlockState::CobblestoneWall_TallTallLowTrueTrueTall
- | BlockState::CobblestoneWall_TallTallLowTrueFalseLow
- | BlockState::CobblestoneWall_TallTallLowTrueFalseTall
- | BlockState::CobblestoneWall_TallTallTallTrueTrueLow
- | BlockState::CobblestoneWall_TallTallTallTrueTrueTall
- | BlockState::CobblestoneWall_TallTallTallTrueFalseLow
- | BlockState::CobblestoneWall_TallTallTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowLowLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowLowLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowLowLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowLowLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowLowTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowLowTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowLowTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowLowTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowTallLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowTallLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowTallLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowTallLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_LowTallTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_LowTallTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_LowTallTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_LowTallTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallLowLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallLowLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallLowLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallLowLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallLowTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallLowTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallLowTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallLowTallTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallTallLowTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallTallLowTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallTallLowTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallTallLowTrueFalseTall
- | BlockState::MossyCobblestoneWall_TallTallTallTrueTrueLow
- | BlockState::MossyCobblestoneWall_TallTallTallTrueTrueTall
- | BlockState::MossyCobblestoneWall_TallTallTallTrueFalseLow
- | BlockState::MossyCobblestoneWall_TallTallTallTrueFalseTall
- | BlockState::BrickWall_LowLowLowTrueTrueLow
- | BlockState::BrickWall_LowLowLowTrueTrueTall
- | BlockState::BrickWall_LowLowLowTrueFalseLow
- | BlockState::BrickWall_LowLowLowTrueFalseTall
- | BlockState::BrickWall_LowLowTallTrueTrueLow
- | BlockState::BrickWall_LowLowTallTrueTrueTall
- | BlockState::BrickWall_LowLowTallTrueFalseLow
- | BlockState::BrickWall_LowLowTallTrueFalseTall
- | BlockState::BrickWall_LowTallLowTrueTrueLow
- | BlockState::BrickWall_LowTallLowTrueTrueTall
- | BlockState::BrickWall_LowTallLowTrueFalseLow
- | BlockState::BrickWall_LowTallLowTrueFalseTall
- | BlockState::BrickWall_LowTallTallTrueTrueLow
- | BlockState::BrickWall_LowTallTallTrueTrueTall
- | BlockState::BrickWall_LowTallTallTrueFalseLow
- | BlockState::BrickWall_LowTallTallTrueFalseTall
- | BlockState::BrickWall_TallLowLowTrueTrueLow
- | BlockState::BrickWall_TallLowLowTrueTrueTall
- | BlockState::BrickWall_TallLowLowTrueFalseLow
- | BlockState::BrickWall_TallLowLowTrueFalseTall
- | BlockState::BrickWall_TallLowTallTrueTrueLow
- | BlockState::BrickWall_TallLowTallTrueTrueTall
- | BlockState::BrickWall_TallLowTallTrueFalseLow
- | BlockState::BrickWall_TallLowTallTrueFalseTall
- | BlockState::BrickWall_TallTallLowTrueTrueLow
- | BlockState::BrickWall_TallTallLowTrueTrueTall
- | BlockState::BrickWall_TallTallLowTrueFalseLow
- | BlockState::BrickWall_TallTallLowTrueFalseTall
- | BlockState::BrickWall_TallTallTallTrueTrueLow
- | BlockState::BrickWall_TallTallTallTrueTrueTall
- | BlockState::BrickWall_TallTallTallTrueFalseLow
- | BlockState::BrickWall_TallTallTallTrueFalseTall
- | BlockState::PrismarineWall_LowLowLowTrueTrueLow
- | BlockState::PrismarineWall_LowLowLowTrueTrueTall
- | BlockState::PrismarineWall_LowLowLowTrueFalseLow
- | BlockState::PrismarineWall_LowLowLowTrueFalseTall
- | BlockState::PrismarineWall_LowLowTallTrueTrueLow
- | BlockState::PrismarineWall_LowLowTallTrueTrueTall
- | BlockState::PrismarineWall_LowLowTallTrueFalseLow
- | BlockState::PrismarineWall_LowLowTallTrueFalseTall
- | BlockState::PrismarineWall_LowTallLowTrueTrueLow
- | BlockState::PrismarineWall_LowTallLowTrueTrueTall
- | BlockState::PrismarineWall_LowTallLowTrueFalseLow
- | BlockState::PrismarineWall_LowTallLowTrueFalseTall
- | BlockState::PrismarineWall_LowTallTallTrueTrueLow
- | BlockState::PrismarineWall_LowTallTallTrueTrueTall
- | BlockState::PrismarineWall_LowTallTallTrueFalseLow
- | BlockState::PrismarineWall_LowTallTallTrueFalseTall
- | BlockState::PrismarineWall_TallLowLowTrueTrueLow
- | BlockState::PrismarineWall_TallLowLowTrueTrueTall
- | BlockState::PrismarineWall_TallLowLowTrueFalseLow
- | BlockState::PrismarineWall_TallLowLowTrueFalseTall
- | BlockState::PrismarineWall_TallLowTallTrueTrueLow
- | BlockState::PrismarineWall_TallLowTallTrueTrueTall
- | BlockState::PrismarineWall_TallLowTallTrueFalseLow
- | BlockState::PrismarineWall_TallLowTallTrueFalseTall
- | BlockState::PrismarineWall_TallTallLowTrueTrueLow
- | BlockState::PrismarineWall_TallTallLowTrueTrueTall
- | BlockState::PrismarineWall_TallTallLowTrueFalseLow
- | BlockState::PrismarineWall_TallTallLowTrueFalseTall
- | BlockState::PrismarineWall_TallTallTallTrueTrueLow
- | BlockState::PrismarineWall_TallTallTallTrueTrueTall
- | BlockState::PrismarineWall_TallTallTallTrueFalseLow
- | BlockState::PrismarineWall_TallTallTallTrueFalseTall
- | BlockState::RedSandstoneWall_LowLowLowTrueTrueLow
- | BlockState::RedSandstoneWall_LowLowLowTrueTrueTall
- | BlockState::RedSandstoneWall_LowLowLowTrueFalseLow
- | BlockState::RedSandstoneWall_LowLowLowTrueFalseTall
- | BlockState::RedSandstoneWall_LowLowTallTrueTrueLow
- | BlockState::RedSandstoneWall_LowLowTallTrueTrueTall
- | BlockState::RedSandstoneWall_LowLowTallTrueFalseLow
- | BlockState::RedSandstoneWall_LowLowTallTrueFalseTall
- | BlockState::RedSandstoneWall_LowTallLowTrueTrueLow
- | BlockState::RedSandstoneWall_LowTallLowTrueTrueTall
- | BlockState::RedSandstoneWall_LowTallLowTrueFalseLow
- | BlockState::RedSandstoneWall_LowTallLowTrueFalseTall
- | BlockState::RedSandstoneWall_LowTallTallTrueTrueLow
- | BlockState::RedSandstoneWall_LowTallTallTrueTrueTall
- | BlockState::RedSandstoneWall_LowTallTallTrueFalseLow
- | BlockState::RedSandstoneWall_LowTallTallTrueFalseTall
- | BlockState::RedSandstoneWall_TallLowLowTrueTrueLow
- | BlockState::RedSandstoneWall_TallLowLowTrueTrueTall
- | BlockState::RedSandstoneWall_TallLowLowTrueFalseLow
- | BlockState::RedSandstoneWall_TallLowLowTrueFalseTall
- | BlockState::RedSandstoneWall_TallLowTallTrueTrueLow
- | BlockState::RedSandstoneWall_TallLowTallTrueTrueTall
- | BlockState::RedSandstoneWall_TallLowTallTrueFalseLow
- | BlockState::RedSandstoneWall_TallLowTallTrueFalseTall
- | BlockState::RedSandstoneWall_TallTallLowTrueTrueLow
- | BlockState::RedSandstoneWall_TallTallLowTrueTrueTall
- | BlockState::RedSandstoneWall_TallTallLowTrueFalseLow
- | BlockState::RedSandstoneWall_TallTallLowTrueFalseTall
- | BlockState::RedSandstoneWall_TallTallTallTrueTrueLow
- | BlockState::RedSandstoneWall_TallTallTallTrueTrueTall
- | BlockState::RedSandstoneWall_TallTallTallTrueFalseLow
- | BlockState::RedSandstoneWall_TallTallTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowLowLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowLowLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowLowLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowLowLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowLowTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowLowTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowLowTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowLowTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowTallLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowTallLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowTallLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowTallLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_LowTallTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_LowTallTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_LowTallTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_LowTallTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallLowLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallLowLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallLowLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallLowLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallLowTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallLowTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallLowTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallLowTallTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallTallLowTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallTallLowTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallTallLowTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallTallLowTrueFalseTall
- | BlockState::MossyStoneBrickWall_TallTallTallTrueTrueLow
- | BlockState::MossyStoneBrickWall_TallTallTallTrueTrueTall
- | BlockState::MossyStoneBrickWall_TallTallTallTrueFalseLow
- | BlockState::MossyStoneBrickWall_TallTallTallTrueFalseTall
- | BlockState::GraniteWall_LowLowLowTrueTrueLow
- | BlockState::GraniteWall_LowLowLowTrueTrueTall
- | BlockState::GraniteWall_LowLowLowTrueFalseLow
- | BlockState::GraniteWall_LowLowLowTrueFalseTall
- | BlockState::GraniteWall_LowLowTallTrueTrueLow
- | BlockState::GraniteWall_LowLowTallTrueTrueTall
- | BlockState::GraniteWall_LowLowTallTrueFalseLow
- | BlockState::GraniteWall_LowLowTallTrueFalseTall
- | BlockState::GraniteWall_LowTallLowTrueTrueLow
- | BlockState::GraniteWall_LowTallLowTrueTrueTall
- | BlockState::GraniteWall_LowTallLowTrueFalseLow
- | BlockState::GraniteWall_LowTallLowTrueFalseTall
- | BlockState::GraniteWall_LowTallTallTrueTrueLow
- | BlockState::GraniteWall_LowTallTallTrueTrueTall
- | BlockState::GraniteWall_LowTallTallTrueFalseLow
- | BlockState::GraniteWall_LowTallTallTrueFalseTall
- | BlockState::GraniteWall_TallLowLowTrueTrueLow
- | BlockState::GraniteWall_TallLowLowTrueTrueTall
- | BlockState::GraniteWall_TallLowLowTrueFalseLow
- | BlockState::GraniteWall_TallLowLowTrueFalseTall
- | BlockState::GraniteWall_TallLowTallTrueTrueLow
- | BlockState::GraniteWall_TallLowTallTrueTrueTall
- | BlockState::GraniteWall_TallLowTallTrueFalseLow
- | BlockState::GraniteWall_TallLowTallTrueFalseTall
- | BlockState::GraniteWall_TallTallLowTrueTrueLow
- | BlockState::GraniteWall_TallTallLowTrueTrueTall
- | BlockState::GraniteWall_TallTallLowTrueFalseLow
- | BlockState::GraniteWall_TallTallLowTrueFalseTall
- | BlockState::GraniteWall_TallTallTallTrueTrueLow
- | BlockState::GraniteWall_TallTallTallTrueTrueTall
- | BlockState::GraniteWall_TallTallTallTrueFalseLow
- | BlockState::GraniteWall_TallTallTallTrueFalseTall
- | BlockState::StoneBrickWall_LowLowLowTrueTrueLow
- | BlockState::StoneBrickWall_LowLowLowTrueTrueTall
- | BlockState::StoneBrickWall_LowLowLowTrueFalseLow
- | BlockState::StoneBrickWall_LowLowLowTrueFalseTall
- | BlockState::StoneBrickWall_LowLowTallTrueTrueLow
- | BlockState::StoneBrickWall_LowLowTallTrueTrueTall
- | BlockState::StoneBrickWall_LowLowTallTrueFalseLow
- | BlockState::StoneBrickWall_LowLowTallTrueFalseTall
- | BlockState::StoneBrickWall_LowTallLowTrueTrueLow
- | BlockState::StoneBrickWall_LowTallLowTrueTrueTall
- | BlockState::StoneBrickWall_LowTallLowTrueFalseLow
- | BlockState::StoneBrickWall_LowTallLowTrueFalseTall
- | BlockState::StoneBrickWall_LowTallTallTrueTrueLow
- | BlockState::StoneBrickWall_LowTallTallTrueTrueTall
- | BlockState::StoneBrickWall_LowTallTallTrueFalseLow
- | BlockState::StoneBrickWall_LowTallTallTrueFalseTall
- | BlockState::StoneBrickWall_TallLowLowTrueTrueLow
- | BlockState::StoneBrickWall_TallLowLowTrueTrueTall
- | BlockState::StoneBrickWall_TallLowLowTrueFalseLow
- | BlockState::StoneBrickWall_TallLowLowTrueFalseTall
- | BlockState::StoneBrickWall_TallLowTallTrueTrueLow
- | BlockState::StoneBrickWall_TallLowTallTrueTrueTall
- | BlockState::StoneBrickWall_TallLowTallTrueFalseLow
- | BlockState::StoneBrickWall_TallLowTallTrueFalseTall
- | BlockState::StoneBrickWall_TallTallLowTrueTrueLow
- | BlockState::StoneBrickWall_TallTallLowTrueTrueTall
- | BlockState::StoneBrickWall_TallTallLowTrueFalseLow
- | BlockState::StoneBrickWall_TallTallLowTrueFalseTall
- | BlockState::StoneBrickWall_TallTallTallTrueTrueLow
- | BlockState::StoneBrickWall_TallTallTallTrueTrueTall
- | BlockState::StoneBrickWall_TallTallTallTrueFalseLow
- | BlockState::StoneBrickWall_TallTallTallTrueFalseTall
- | BlockState::MudBrickWall_LowLowLowTrueTrueLow
- | BlockState::MudBrickWall_LowLowLowTrueTrueTall
- | BlockState::MudBrickWall_LowLowLowTrueFalseLow
- | BlockState::MudBrickWall_LowLowLowTrueFalseTall
- | BlockState::MudBrickWall_LowLowTallTrueTrueLow
- | BlockState::MudBrickWall_LowLowTallTrueTrueTall
- | BlockState::MudBrickWall_LowLowTallTrueFalseLow
- | BlockState::MudBrickWall_LowLowTallTrueFalseTall
- | BlockState::MudBrickWall_LowTallLowTrueTrueLow
- | BlockState::MudBrickWall_LowTallLowTrueTrueTall
- | BlockState::MudBrickWall_LowTallLowTrueFalseLow
- | BlockState::MudBrickWall_LowTallLowTrueFalseTall
- | BlockState::MudBrickWall_LowTallTallTrueTrueLow
- | BlockState::MudBrickWall_LowTallTallTrueTrueTall
- | BlockState::MudBrickWall_LowTallTallTrueFalseLow
- | BlockState::MudBrickWall_LowTallTallTrueFalseTall
- | BlockState::MudBrickWall_TallLowLowTrueTrueLow
- | BlockState::MudBrickWall_TallLowLowTrueTrueTall
- | BlockState::MudBrickWall_TallLowLowTrueFalseLow
- | BlockState::MudBrickWall_TallLowLowTrueFalseTall
- | BlockState::MudBrickWall_TallLowTallTrueTrueLow
- | BlockState::MudBrickWall_TallLowTallTrueTrueTall
- | BlockState::MudBrickWall_TallLowTallTrueFalseLow
- | BlockState::MudBrickWall_TallLowTallTrueFalseTall
- | BlockState::MudBrickWall_TallTallLowTrueTrueLow
- | BlockState::MudBrickWall_TallTallLowTrueTrueTall
- | BlockState::MudBrickWall_TallTallLowTrueFalseLow
- | BlockState::MudBrickWall_TallTallLowTrueFalseTall
- | BlockState::MudBrickWall_TallTallTallTrueTrueLow
- | BlockState::MudBrickWall_TallTallTallTrueTrueTall
- | BlockState::MudBrickWall_TallTallTallTrueFalseLow
- | BlockState::MudBrickWall_TallTallTallTrueFalseTall
- | BlockState::NetherBrickWall_LowLowLowTrueTrueLow
- | BlockState::NetherBrickWall_LowLowLowTrueTrueTall
- | BlockState::NetherBrickWall_LowLowLowTrueFalseLow
- | BlockState::NetherBrickWall_LowLowLowTrueFalseTall
- | BlockState::NetherBrickWall_LowLowTallTrueTrueLow
- | BlockState::NetherBrickWall_LowLowTallTrueTrueTall
- | BlockState::NetherBrickWall_LowLowTallTrueFalseLow
- | BlockState::NetherBrickWall_LowLowTallTrueFalseTall
- | BlockState::NetherBrickWall_LowTallLowTrueTrueLow
- | BlockState::NetherBrickWall_LowTallLowTrueTrueTall
- | BlockState::NetherBrickWall_LowTallLowTrueFalseLow
- | BlockState::NetherBrickWall_LowTallLowTrueFalseTall
- | BlockState::NetherBrickWall_LowTallTallTrueTrueLow
- | BlockState::NetherBrickWall_LowTallTallTrueTrueTall
- | BlockState::NetherBrickWall_LowTallTallTrueFalseLow
- | BlockState::NetherBrickWall_LowTallTallTrueFalseTall
- | BlockState::NetherBrickWall_TallLowLowTrueTrueLow
- | BlockState::NetherBrickWall_TallLowLowTrueTrueTall
- | BlockState::NetherBrickWall_TallLowLowTrueFalseLow
- | BlockState::NetherBrickWall_TallLowLowTrueFalseTall
- | BlockState::NetherBrickWall_TallLowTallTrueTrueLow
- | BlockState::NetherBrickWall_TallLowTallTrueTrueTall
- | BlockState::NetherBrickWall_TallLowTallTrueFalseLow
- | BlockState::NetherBrickWall_TallLowTallTrueFalseTall
- | BlockState::NetherBrickWall_TallTallLowTrueTrueLow
- | BlockState::NetherBrickWall_TallTallLowTrueTrueTall
- | BlockState::NetherBrickWall_TallTallLowTrueFalseLow
- | BlockState::NetherBrickWall_TallTallLowTrueFalseTall
- | BlockState::NetherBrickWall_TallTallTallTrueTrueLow
- | BlockState::NetherBrickWall_TallTallTallTrueTrueTall
- | BlockState::NetherBrickWall_TallTallTallTrueFalseLow
- | BlockState::NetherBrickWall_TallTallTallTrueFalseTall
- | BlockState::AndesiteWall_LowLowLowTrueTrueLow
- | BlockState::AndesiteWall_LowLowLowTrueTrueTall
- | BlockState::AndesiteWall_LowLowLowTrueFalseLow
- | BlockState::AndesiteWall_LowLowLowTrueFalseTall
- | BlockState::AndesiteWall_LowLowTallTrueTrueLow
- | BlockState::AndesiteWall_LowLowTallTrueTrueTall
- | BlockState::AndesiteWall_LowLowTallTrueFalseLow
- | BlockState::AndesiteWall_LowLowTallTrueFalseTall
- | BlockState::AndesiteWall_LowTallLowTrueTrueLow
- | BlockState::AndesiteWall_LowTallLowTrueTrueTall
- | BlockState::AndesiteWall_LowTallLowTrueFalseLow
- | BlockState::AndesiteWall_LowTallLowTrueFalseTall
- | BlockState::AndesiteWall_LowTallTallTrueTrueLow
- | BlockState::AndesiteWall_LowTallTallTrueTrueTall
- | BlockState::AndesiteWall_LowTallTallTrueFalseLow
- | BlockState::AndesiteWall_LowTallTallTrueFalseTall
- | BlockState::AndesiteWall_TallLowLowTrueTrueLow
- | BlockState::AndesiteWall_TallLowLowTrueTrueTall
- | BlockState::AndesiteWall_TallLowLowTrueFalseLow
- | BlockState::AndesiteWall_TallLowLowTrueFalseTall
- | BlockState::AndesiteWall_TallLowTallTrueTrueLow
- | BlockState::AndesiteWall_TallLowTallTrueTrueTall
- | BlockState::AndesiteWall_TallLowTallTrueFalseLow
- | BlockState::AndesiteWall_TallLowTallTrueFalseTall
- | BlockState::AndesiteWall_TallTallLowTrueTrueLow
- | BlockState::AndesiteWall_TallTallLowTrueTrueTall
- | BlockState::AndesiteWall_TallTallLowTrueFalseLow
- | BlockState::AndesiteWall_TallTallLowTrueFalseTall
- | BlockState::AndesiteWall_TallTallTallTrueTrueLow
- | BlockState::AndesiteWall_TallTallTallTrueTrueTall
- | BlockState::AndesiteWall_TallTallTallTrueFalseLow
- | BlockState::AndesiteWall_TallTallTallTrueFalseTall
- | BlockState::RedNetherBrickWall_LowLowLowTrueTrueLow
- | BlockState::RedNetherBrickWall_LowLowLowTrueTrueTall
- | BlockState::RedNetherBrickWall_LowLowLowTrueFalseLow
- | BlockState::RedNetherBrickWall_LowLowLowTrueFalseTall
- | BlockState::RedNetherBrickWall_LowLowTallTrueTrueLow
- | BlockState::RedNetherBrickWall_LowLowTallTrueTrueTall
- | BlockState::RedNetherBrickWall_LowLowTallTrueFalseLow
- | BlockState::RedNetherBrickWall_LowLowTallTrueFalseTall
- | BlockState::RedNetherBrickWall_LowTallLowTrueTrueLow
- | BlockState::RedNetherBrickWall_LowTallLowTrueTrueTall
- | BlockState::RedNetherBrickWall_LowTallLowTrueFalseLow
- | BlockState::RedNetherBrickWall_LowTallLowTrueFalseTall
- | BlockState::RedNetherBrickWall_LowTallTallTrueTrueLow
- | BlockState::RedNetherBrickWall_LowTallTallTrueTrueTall
- | BlockState::RedNetherBrickWall_LowTallTallTrueFalseLow
- | BlockState::RedNetherBrickWall_LowTallTallTrueFalseTall
- | BlockState::RedNetherBrickWall_TallLowLowTrueTrueLow
- | BlockState::RedNetherBrickWall_TallLowLowTrueTrueTall
- | BlockState::RedNetherBrickWall_TallLowLowTrueFalseLow
- | BlockState::RedNetherBrickWall_TallLowLowTrueFalseTall
- | BlockState::RedNetherBrickWall_TallLowTallTrueTrueLow
- | BlockState::RedNetherBrickWall_TallLowTallTrueTrueTall
- | BlockState::RedNetherBrickWall_TallLowTallTrueFalseLow
- | BlockState::RedNetherBrickWall_TallLowTallTrueFalseTall
- | BlockState::RedNetherBrickWall_TallTallLowTrueTrueLow
- | BlockState::RedNetherBrickWall_TallTallLowTrueTrueTall
- | BlockState::RedNetherBrickWall_TallTallLowTrueFalseLow
- | BlockState::RedNetherBrickWall_TallTallLowTrueFalseTall
- | BlockState::RedNetherBrickWall_TallTallTallTrueTrueLow
- | BlockState::RedNetherBrickWall_TallTallTallTrueTrueTall
- | BlockState::RedNetherBrickWall_TallTallTallTrueFalseLow
- | BlockState::RedNetherBrickWall_TallTallTallTrueFalseTall
- | BlockState::SandstoneWall_LowLowLowTrueTrueLow
- | BlockState::SandstoneWall_LowLowLowTrueTrueTall
- | BlockState::SandstoneWall_LowLowLowTrueFalseLow
- | BlockState::SandstoneWall_LowLowLowTrueFalseTall
- | BlockState::SandstoneWall_LowLowTallTrueTrueLow
- | BlockState::SandstoneWall_LowLowTallTrueTrueTall
- | BlockState::SandstoneWall_LowLowTallTrueFalseLow
- | BlockState::SandstoneWall_LowLowTallTrueFalseTall
- | BlockState::SandstoneWall_LowTallLowTrueTrueLow
- | BlockState::SandstoneWall_LowTallLowTrueTrueTall
- | BlockState::SandstoneWall_LowTallLowTrueFalseLow
- | BlockState::SandstoneWall_LowTallLowTrueFalseTall
- | BlockState::SandstoneWall_LowTallTallTrueTrueLow
- | BlockState::SandstoneWall_LowTallTallTrueTrueTall
- | BlockState::SandstoneWall_LowTallTallTrueFalseLow
- | BlockState::SandstoneWall_LowTallTallTrueFalseTall
- | BlockState::SandstoneWall_TallLowLowTrueTrueLow
- | BlockState::SandstoneWall_TallLowLowTrueTrueTall
- | BlockState::SandstoneWall_TallLowLowTrueFalseLow
- | BlockState::SandstoneWall_TallLowLowTrueFalseTall
- | BlockState::SandstoneWall_TallLowTallTrueTrueLow
- | BlockState::SandstoneWall_TallLowTallTrueTrueTall
- | BlockState::SandstoneWall_TallLowTallTrueFalseLow
- | BlockState::SandstoneWall_TallLowTallTrueFalseTall
- | BlockState::SandstoneWall_TallTallLowTrueTrueLow
- | BlockState::SandstoneWall_TallTallLowTrueTrueTall
- | BlockState::SandstoneWall_TallTallLowTrueFalseLow
- | BlockState::SandstoneWall_TallTallLowTrueFalseTall
- | BlockState::SandstoneWall_TallTallTallTrueTrueLow
- | BlockState::SandstoneWall_TallTallTallTrueTrueTall
- | BlockState::SandstoneWall_TallTallTallTrueFalseLow
- | BlockState::SandstoneWall_TallTallTallTrueFalseTall
- | BlockState::EndStoneBrickWall_LowLowLowTrueTrueLow
- | BlockState::EndStoneBrickWall_LowLowLowTrueTrueTall
- | BlockState::EndStoneBrickWall_LowLowLowTrueFalseLow
- | BlockState::EndStoneBrickWall_LowLowLowTrueFalseTall
- | BlockState::EndStoneBrickWall_LowLowTallTrueTrueLow
- | BlockState::EndStoneBrickWall_LowLowTallTrueTrueTall
- | BlockState::EndStoneBrickWall_LowLowTallTrueFalseLow
- | BlockState::EndStoneBrickWall_LowLowTallTrueFalseTall
- | BlockState::EndStoneBrickWall_LowTallLowTrueTrueLow
- | BlockState::EndStoneBrickWall_LowTallLowTrueTrueTall
- | BlockState::EndStoneBrickWall_LowTallLowTrueFalseLow
- | BlockState::EndStoneBrickWall_LowTallLowTrueFalseTall
- | BlockState::EndStoneBrickWall_LowTallTallTrueTrueLow
- | BlockState::EndStoneBrickWall_LowTallTallTrueTrueTall
- | BlockState::EndStoneBrickWall_LowTallTallTrueFalseLow
- | BlockState::EndStoneBrickWall_LowTallTallTrueFalseTall
- | BlockState::EndStoneBrickWall_TallLowLowTrueTrueLow
- | BlockState::EndStoneBrickWall_TallLowLowTrueTrueTall
- | BlockState::EndStoneBrickWall_TallLowLowTrueFalseLow
- | BlockState::EndStoneBrickWall_TallLowLowTrueFalseTall
- | BlockState::EndStoneBrickWall_TallLowTallTrueTrueLow
- | BlockState::EndStoneBrickWall_TallLowTallTrueTrueTall
- | BlockState::EndStoneBrickWall_TallLowTallTrueFalseLow
- | BlockState::EndStoneBrickWall_TallLowTallTrueFalseTall
- | BlockState::EndStoneBrickWall_TallTallLowTrueTrueLow
- | BlockState::EndStoneBrickWall_TallTallLowTrueTrueTall
- | BlockState::EndStoneBrickWall_TallTallLowTrueFalseLow
- | BlockState::EndStoneBrickWall_TallTallLowTrueFalseTall
- | BlockState::EndStoneBrickWall_TallTallTallTrueTrueLow
- | BlockState::EndStoneBrickWall_TallTallTallTrueTrueTall
- | BlockState::EndStoneBrickWall_TallTallTallTrueFalseLow
- | BlockState::EndStoneBrickWall_TallTallTallTrueFalseTall
- | BlockState::DioriteWall_LowLowLowTrueTrueLow
- | BlockState::DioriteWall_LowLowLowTrueTrueTall
- | BlockState::DioriteWall_LowLowLowTrueFalseLow
- | BlockState::DioriteWall_LowLowLowTrueFalseTall
- | BlockState::DioriteWall_LowLowTallTrueTrueLow
- | BlockState::DioriteWall_LowLowTallTrueTrueTall
- | BlockState::DioriteWall_LowLowTallTrueFalseLow
- | BlockState::DioriteWall_LowLowTallTrueFalseTall
- | BlockState::DioriteWall_LowTallLowTrueTrueLow
- | BlockState::DioriteWall_LowTallLowTrueTrueTall
- | BlockState::DioriteWall_LowTallLowTrueFalseLow
- | BlockState::DioriteWall_LowTallLowTrueFalseTall
- | BlockState::DioriteWall_LowTallTallTrueTrueLow
- | BlockState::DioriteWall_LowTallTallTrueTrueTall
- | BlockState::DioriteWall_LowTallTallTrueFalseLow
- | BlockState::DioriteWall_LowTallTallTrueFalseTall
- | BlockState::DioriteWall_TallLowLowTrueTrueLow
- | BlockState::DioriteWall_TallLowLowTrueTrueTall
- | BlockState::DioriteWall_TallLowLowTrueFalseLow
- | BlockState::DioriteWall_TallLowLowTrueFalseTall
- | BlockState::DioriteWall_TallLowTallTrueTrueLow
- | BlockState::DioriteWall_TallLowTallTrueTrueTall
- | BlockState::DioriteWall_TallLowTallTrueFalseLow
- | BlockState::DioriteWall_TallLowTallTrueFalseTall
- | BlockState::DioriteWall_TallTallLowTrueTrueLow
- | BlockState::DioriteWall_TallTallLowTrueTrueTall
- | BlockState::DioriteWall_TallTallLowTrueFalseLow
- | BlockState::DioriteWall_TallTallLowTrueFalseTall
- | BlockState::DioriteWall_TallTallTallTrueTrueLow
- | BlockState::DioriteWall_TallTallTallTrueTrueTall
- | BlockState::DioriteWall_TallTallTallTrueFalseLow
- | BlockState::DioriteWall_TallTallTallTrueFalseTall
- | BlockState::BlackstoneWall_LowLowLowTrueTrueLow
- | BlockState::BlackstoneWall_LowLowLowTrueTrueTall
- | BlockState::BlackstoneWall_LowLowLowTrueFalseLow
- | BlockState::BlackstoneWall_LowLowLowTrueFalseTall
- | BlockState::BlackstoneWall_LowLowTallTrueTrueLow
- | BlockState::BlackstoneWall_LowLowTallTrueTrueTall
- | BlockState::BlackstoneWall_LowLowTallTrueFalseLow
- | BlockState::BlackstoneWall_LowLowTallTrueFalseTall
- | BlockState::BlackstoneWall_LowTallLowTrueTrueLow
- | BlockState::BlackstoneWall_LowTallLowTrueTrueTall
- | BlockState::BlackstoneWall_LowTallLowTrueFalseLow
- | BlockState::BlackstoneWall_LowTallLowTrueFalseTall
- | BlockState::BlackstoneWall_LowTallTallTrueTrueLow
- | BlockState::BlackstoneWall_LowTallTallTrueTrueTall
- | BlockState::BlackstoneWall_LowTallTallTrueFalseLow
- | BlockState::BlackstoneWall_LowTallTallTrueFalseTall
- | BlockState::BlackstoneWall_TallLowLowTrueTrueLow
- | BlockState::BlackstoneWall_TallLowLowTrueTrueTall
- | BlockState::BlackstoneWall_TallLowLowTrueFalseLow
- | BlockState::BlackstoneWall_TallLowLowTrueFalseTall
- | BlockState::BlackstoneWall_TallLowTallTrueTrueLow
- | BlockState::BlackstoneWall_TallLowTallTrueTrueTall
- | BlockState::BlackstoneWall_TallLowTallTrueFalseLow
- | BlockState::BlackstoneWall_TallLowTallTrueFalseTall
- | BlockState::BlackstoneWall_TallTallLowTrueTrueLow
- | BlockState::BlackstoneWall_TallTallLowTrueTrueTall
- | BlockState::BlackstoneWall_TallTallLowTrueFalseLow
- | BlockState::BlackstoneWall_TallTallLowTrueFalseTall
- | BlockState::BlackstoneWall_TallTallTallTrueTrueLow
- | BlockState::BlackstoneWall_TallTallTallTrueTrueTall
- | BlockState::BlackstoneWall_TallTallTallTrueFalseLow
- | BlockState::BlackstoneWall_TallTallTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowTrueFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallTrueTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallTrueTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallTrueFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowLowLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowLowLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowLowLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowLowLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowLowTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowLowTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowLowTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowLowTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowTallLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowTallLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowTallLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowTallLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_LowTallTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_LowTallTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_LowTallTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_LowTallTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallLowLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallLowLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallLowLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallLowLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallLowTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallLowTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallLowTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallLowTallTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallTallLowTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallTallLowTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallTallLowTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallTallLowTrueFalseTall
- | BlockState::PolishedBlackstoneWall_TallTallTallTrueTrueLow
- | BlockState::PolishedBlackstoneWall_TallTallTallTrueTrueTall
- | BlockState::PolishedBlackstoneWall_TallTallTallTrueFalseLow
- | BlockState::PolishedBlackstoneWall_TallTallTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowLowLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowLowLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowLowLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowLowLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowLowTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowLowTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowLowTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowLowTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowTallLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowTallLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowTallLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowTallLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_LowTallTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_LowTallTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_LowTallTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_LowTallTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallLowLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallLowLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallLowLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallLowLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallLowTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallLowTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallLowTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallLowTallTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallTallLowTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallTallLowTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallTallLowTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallTallLowTrueFalseTall
- | BlockState::CobbledDeepslateWall_TallTallTallTrueTrueLow
- | BlockState::CobbledDeepslateWall_TallTallTallTrueTrueTall
- | BlockState::CobbledDeepslateWall_TallTallTallTrueFalseLow
- | BlockState::CobbledDeepslateWall_TallTallTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowLowLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowLowLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowLowLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowLowLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowLowTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowLowTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowLowTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowLowTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowTallLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowTallLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowTallLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowTallLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_LowTallTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_LowTallTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_LowTallTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_LowTallTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallLowLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallLowLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallLowLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallLowLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallLowTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallLowTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallLowTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallLowTallTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallTallLowTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallTallLowTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallTallLowTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallTallLowTrueFalseTall
- | BlockState::PolishedDeepslateWall_TallTallTallTrueTrueLow
- | BlockState::PolishedDeepslateWall_TallTallTallTrueTrueTall
- | BlockState::PolishedDeepslateWall_TallTallTallTrueFalseLow
- | BlockState::PolishedDeepslateWall_TallTallTallTrueFalseTall
- | BlockState::DeepslateTileWall_LowLowLowTrueTrueLow
- | BlockState::DeepslateTileWall_LowLowLowTrueTrueTall
- | BlockState::DeepslateTileWall_LowLowLowTrueFalseLow
- | BlockState::DeepslateTileWall_LowLowLowTrueFalseTall
- | BlockState::DeepslateTileWall_LowLowTallTrueTrueLow
- | BlockState::DeepslateTileWall_LowLowTallTrueTrueTall
- | BlockState::DeepslateTileWall_LowLowTallTrueFalseLow
- | BlockState::DeepslateTileWall_LowLowTallTrueFalseTall
- | BlockState::DeepslateTileWall_LowTallLowTrueTrueLow
- | BlockState::DeepslateTileWall_LowTallLowTrueTrueTall
- | BlockState::DeepslateTileWall_LowTallLowTrueFalseLow
- | BlockState::DeepslateTileWall_LowTallLowTrueFalseTall
- | BlockState::DeepslateTileWall_LowTallTallTrueTrueLow
- | BlockState::DeepslateTileWall_LowTallTallTrueTrueTall
- | BlockState::DeepslateTileWall_LowTallTallTrueFalseLow
- | BlockState::DeepslateTileWall_LowTallTallTrueFalseTall
- | BlockState::DeepslateTileWall_TallLowLowTrueTrueLow
- | BlockState::DeepslateTileWall_TallLowLowTrueTrueTall
- | BlockState::DeepslateTileWall_TallLowLowTrueFalseLow
- | BlockState::DeepslateTileWall_TallLowLowTrueFalseTall
- | BlockState::DeepslateTileWall_TallLowTallTrueTrueLow
- | BlockState::DeepslateTileWall_TallLowTallTrueTrueTall
- | BlockState::DeepslateTileWall_TallLowTallTrueFalseLow
- | BlockState::DeepslateTileWall_TallLowTallTrueFalseTall
- | BlockState::DeepslateTileWall_TallTallLowTrueTrueLow
- | BlockState::DeepslateTileWall_TallTallLowTrueTrueTall
- | BlockState::DeepslateTileWall_TallTallLowTrueFalseLow
- | BlockState::DeepslateTileWall_TallTallLowTrueFalseTall
- | BlockState::DeepslateTileWall_TallTallTallTrueTrueLow
- | BlockState::DeepslateTileWall_TallTallTallTrueTrueTall
- | BlockState::DeepslateTileWall_TallTallTallTrueFalseLow
- | BlockState::DeepslateTileWall_TallTallTallTrueFalseTall
- | BlockState::DeepslateBrickWall_LowLowLowTrueTrueLow
- | BlockState::DeepslateBrickWall_LowLowLowTrueTrueTall
- | BlockState::DeepslateBrickWall_LowLowLowTrueFalseLow
- | BlockState::DeepslateBrickWall_LowLowLowTrueFalseTall
- | BlockState::DeepslateBrickWall_LowLowTallTrueTrueLow
- | BlockState::DeepslateBrickWall_LowLowTallTrueTrueTall
- | BlockState::DeepslateBrickWall_LowLowTallTrueFalseLow
- | BlockState::DeepslateBrickWall_LowLowTallTrueFalseTall
- | BlockState::DeepslateBrickWall_LowTallLowTrueTrueLow
- | BlockState::DeepslateBrickWall_LowTallLowTrueTrueTall
- | BlockState::DeepslateBrickWall_LowTallLowTrueFalseLow
- | BlockState::DeepslateBrickWall_LowTallLowTrueFalseTall
- | BlockState::DeepslateBrickWall_LowTallTallTrueTrueLow
- | BlockState::DeepslateBrickWall_LowTallTallTrueTrueTall
- | BlockState::DeepslateBrickWall_LowTallTallTrueFalseLow
- | BlockState::DeepslateBrickWall_LowTallTallTrueFalseTall
- | BlockState::DeepslateBrickWall_TallLowLowTrueTrueLow
- | BlockState::DeepslateBrickWall_TallLowLowTrueTrueTall
- | BlockState::DeepslateBrickWall_TallLowLowTrueFalseLow
- | BlockState::DeepslateBrickWall_TallLowLowTrueFalseTall
- | BlockState::DeepslateBrickWall_TallLowTallTrueTrueLow
- | BlockState::DeepslateBrickWall_TallLowTallTrueTrueTall
- | BlockState::DeepslateBrickWall_TallLowTallTrueFalseLow
- | BlockState::DeepslateBrickWall_TallLowTallTrueFalseTall
- | BlockState::DeepslateBrickWall_TallTallLowTrueTrueLow
- | BlockState::DeepslateBrickWall_TallTallLowTrueTrueTall
- | BlockState::DeepslateBrickWall_TallTallLowTrueFalseLow
- | BlockState::DeepslateBrickWall_TallTallLowTrueFalseTall
- | BlockState::DeepslateBrickWall_TallTallTallTrueTrueLow
- | BlockState::DeepslateBrickWall_TallTallTallTrueTrueTall
- | BlockState::DeepslateBrickWall_TallTallTallTrueFalseLow
- | BlockState::DeepslateBrickWall_TallTallTallTrueFalseTall => &SHAPE167,
- BlockState::CobblestoneWall_LowLowLowFalseTrueNone
- | BlockState::CobblestoneWall_LowLowLowFalseFalseNone
- | BlockState::CobblestoneWall_LowLowTallFalseTrueNone
- | BlockState::CobblestoneWall_LowLowTallFalseFalseNone
- | BlockState::CobblestoneWall_LowTallLowFalseTrueNone
- | BlockState::CobblestoneWall_LowTallLowFalseFalseNone
- | BlockState::CobblestoneWall_LowTallTallFalseTrueNone
- | BlockState::CobblestoneWall_LowTallTallFalseFalseNone
- | BlockState::CobblestoneWall_TallLowLowFalseTrueNone
- | BlockState::CobblestoneWall_TallLowLowFalseFalseNone
- | BlockState::CobblestoneWall_TallLowTallFalseTrueNone
- | BlockState::CobblestoneWall_TallLowTallFalseFalseNone
- | BlockState::CobblestoneWall_TallTallLowFalseTrueNone
- | BlockState::CobblestoneWall_TallTallLowFalseFalseNone
- | BlockState::CobblestoneWall_TallTallTallFalseTrueNone
- | BlockState::CobblestoneWall_TallTallTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowLowLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowLowLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowLowTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowLowTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowTallLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowTallLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_LowTallTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_LowTallTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallLowLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallLowLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallLowTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallLowTallFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallTallLowFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallTallLowFalseFalseNone
- | BlockState::MossyCobblestoneWall_TallTallTallFalseTrueNone
- | BlockState::MossyCobblestoneWall_TallTallTallFalseFalseNone
- | BlockState::BrickWall_LowLowLowFalseTrueNone
- | BlockState::BrickWall_LowLowLowFalseFalseNone
- | BlockState::BrickWall_LowLowTallFalseTrueNone
- | BlockState::BrickWall_LowLowTallFalseFalseNone
- | BlockState::BrickWall_LowTallLowFalseTrueNone
- | BlockState::BrickWall_LowTallLowFalseFalseNone
- | BlockState::BrickWall_LowTallTallFalseTrueNone
- | BlockState::BrickWall_LowTallTallFalseFalseNone
- | BlockState::BrickWall_TallLowLowFalseTrueNone
- | BlockState::BrickWall_TallLowLowFalseFalseNone
- | BlockState::BrickWall_TallLowTallFalseTrueNone
- | BlockState::BrickWall_TallLowTallFalseFalseNone
- | BlockState::BrickWall_TallTallLowFalseTrueNone
- | BlockState::BrickWall_TallTallLowFalseFalseNone
- | BlockState::BrickWall_TallTallTallFalseTrueNone
- | BlockState::BrickWall_TallTallTallFalseFalseNone
- | BlockState::PrismarineWall_LowLowLowFalseTrueNone
- | BlockState::PrismarineWall_LowLowLowFalseFalseNone
- | BlockState::PrismarineWall_LowLowTallFalseTrueNone
- | BlockState::PrismarineWall_LowLowTallFalseFalseNone
- | BlockState::PrismarineWall_LowTallLowFalseTrueNone
- | BlockState::PrismarineWall_LowTallLowFalseFalseNone
- | BlockState::PrismarineWall_LowTallTallFalseTrueNone
- | BlockState::PrismarineWall_LowTallTallFalseFalseNone
- | BlockState::PrismarineWall_TallLowLowFalseTrueNone
- | BlockState::PrismarineWall_TallLowLowFalseFalseNone
- | BlockState::PrismarineWall_TallLowTallFalseTrueNone
- | BlockState::PrismarineWall_TallLowTallFalseFalseNone
- | BlockState::PrismarineWall_TallTallLowFalseTrueNone
- | BlockState::PrismarineWall_TallTallLowFalseFalseNone
- | BlockState::PrismarineWall_TallTallTallFalseTrueNone
- | BlockState::PrismarineWall_TallTallTallFalseFalseNone
- | BlockState::RedSandstoneWall_LowLowLowFalseTrueNone
- | BlockState::RedSandstoneWall_LowLowLowFalseFalseNone
- | BlockState::RedSandstoneWall_LowLowTallFalseTrueNone
- | BlockState::RedSandstoneWall_LowLowTallFalseFalseNone
- | BlockState::RedSandstoneWall_LowTallLowFalseTrueNone
- | BlockState::RedSandstoneWall_LowTallLowFalseFalseNone
- | BlockState::RedSandstoneWall_LowTallTallFalseTrueNone
- | BlockState::RedSandstoneWall_LowTallTallFalseFalseNone
- | BlockState::RedSandstoneWall_TallLowLowFalseTrueNone
- | BlockState::RedSandstoneWall_TallLowLowFalseFalseNone
- | BlockState::RedSandstoneWall_TallLowTallFalseTrueNone
- | BlockState::RedSandstoneWall_TallLowTallFalseFalseNone
- | BlockState::RedSandstoneWall_TallTallLowFalseTrueNone
- | BlockState::RedSandstoneWall_TallTallLowFalseFalseNone
- | BlockState::RedSandstoneWall_TallTallTallFalseTrueNone
- | BlockState::RedSandstoneWall_TallTallTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowLowLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowLowLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowLowTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowLowTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowTallLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowTallLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_LowTallTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_LowTallTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallLowLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallLowLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallLowTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallLowTallFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallTallLowFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallTallLowFalseFalseNone
- | BlockState::MossyStoneBrickWall_TallTallTallFalseTrueNone
- | BlockState::MossyStoneBrickWall_TallTallTallFalseFalseNone
- | BlockState::GraniteWall_LowLowLowFalseTrueNone
- | BlockState::GraniteWall_LowLowLowFalseFalseNone
- | BlockState::GraniteWall_LowLowTallFalseTrueNone
- | BlockState::GraniteWall_LowLowTallFalseFalseNone
- | BlockState::GraniteWall_LowTallLowFalseTrueNone
- | BlockState::GraniteWall_LowTallLowFalseFalseNone
- | BlockState::GraniteWall_LowTallTallFalseTrueNone
- | BlockState::GraniteWall_LowTallTallFalseFalseNone
- | BlockState::GraniteWall_TallLowLowFalseTrueNone
- | BlockState::GraniteWall_TallLowLowFalseFalseNone
- | BlockState::GraniteWall_TallLowTallFalseTrueNone
- | BlockState::GraniteWall_TallLowTallFalseFalseNone
- | BlockState::GraniteWall_TallTallLowFalseTrueNone
- | BlockState::GraniteWall_TallTallLowFalseFalseNone
- | BlockState::GraniteWall_TallTallTallFalseTrueNone
- | BlockState::GraniteWall_TallTallTallFalseFalseNone
- | BlockState::StoneBrickWall_LowLowLowFalseTrueNone
- | BlockState::StoneBrickWall_LowLowLowFalseFalseNone
- | BlockState::StoneBrickWall_LowLowTallFalseTrueNone
- | BlockState::StoneBrickWall_LowLowTallFalseFalseNone
- | BlockState::StoneBrickWall_LowTallLowFalseTrueNone
- | BlockState::StoneBrickWall_LowTallLowFalseFalseNone
- | BlockState::StoneBrickWall_LowTallTallFalseTrueNone
- | BlockState::StoneBrickWall_LowTallTallFalseFalseNone
- | BlockState::StoneBrickWall_TallLowLowFalseTrueNone
- | BlockState::StoneBrickWall_TallLowLowFalseFalseNone
- | BlockState::StoneBrickWall_TallLowTallFalseTrueNone
- | BlockState::StoneBrickWall_TallLowTallFalseFalseNone
- | BlockState::StoneBrickWall_TallTallLowFalseTrueNone
- | BlockState::StoneBrickWall_TallTallLowFalseFalseNone
- | BlockState::StoneBrickWall_TallTallTallFalseTrueNone
- | BlockState::StoneBrickWall_TallTallTallFalseFalseNone
- | BlockState::MudBrickWall_LowLowLowFalseTrueNone
- | BlockState::MudBrickWall_LowLowLowFalseFalseNone
- | BlockState::MudBrickWall_LowLowTallFalseTrueNone
- | BlockState::MudBrickWall_LowLowTallFalseFalseNone
- | BlockState::MudBrickWall_LowTallLowFalseTrueNone
- | BlockState::MudBrickWall_LowTallLowFalseFalseNone
- | BlockState::MudBrickWall_LowTallTallFalseTrueNone
- | BlockState::MudBrickWall_LowTallTallFalseFalseNone
- | BlockState::MudBrickWall_TallLowLowFalseTrueNone
- | BlockState::MudBrickWall_TallLowLowFalseFalseNone
- | BlockState::MudBrickWall_TallLowTallFalseTrueNone
- | BlockState::MudBrickWall_TallLowTallFalseFalseNone
- | BlockState::MudBrickWall_TallTallLowFalseTrueNone
- | BlockState::MudBrickWall_TallTallLowFalseFalseNone
- | BlockState::MudBrickWall_TallTallTallFalseTrueNone
- | BlockState::MudBrickWall_TallTallTallFalseFalseNone
- | BlockState::NetherBrickWall_LowLowLowFalseTrueNone
- | BlockState::NetherBrickWall_LowLowLowFalseFalseNone
- | BlockState::NetherBrickWall_LowLowTallFalseTrueNone
- | BlockState::NetherBrickWall_LowLowTallFalseFalseNone
- | BlockState::NetherBrickWall_LowTallLowFalseTrueNone
- | BlockState::NetherBrickWall_LowTallLowFalseFalseNone
- | BlockState::NetherBrickWall_LowTallTallFalseTrueNone
- | BlockState::NetherBrickWall_LowTallTallFalseFalseNone
- | BlockState::NetherBrickWall_TallLowLowFalseTrueNone
- | BlockState::NetherBrickWall_TallLowLowFalseFalseNone
- | BlockState::NetherBrickWall_TallLowTallFalseTrueNone
- | BlockState::NetherBrickWall_TallLowTallFalseFalseNone
- | BlockState::NetherBrickWall_TallTallLowFalseTrueNone
- | BlockState::NetherBrickWall_TallTallLowFalseFalseNone
- | BlockState::NetherBrickWall_TallTallTallFalseTrueNone
- | BlockState::NetherBrickWall_TallTallTallFalseFalseNone
- | BlockState::AndesiteWall_LowLowLowFalseTrueNone
- | BlockState::AndesiteWall_LowLowLowFalseFalseNone
- | BlockState::AndesiteWall_LowLowTallFalseTrueNone
- | BlockState::AndesiteWall_LowLowTallFalseFalseNone
- | BlockState::AndesiteWall_LowTallLowFalseTrueNone
- | BlockState::AndesiteWall_LowTallLowFalseFalseNone
- | BlockState::AndesiteWall_LowTallTallFalseTrueNone
- | BlockState::AndesiteWall_LowTallTallFalseFalseNone
- | BlockState::AndesiteWall_TallLowLowFalseTrueNone
- | BlockState::AndesiteWall_TallLowLowFalseFalseNone
- | BlockState::AndesiteWall_TallLowTallFalseTrueNone
- | BlockState::AndesiteWall_TallLowTallFalseFalseNone
- | BlockState::AndesiteWall_TallTallLowFalseTrueNone
- | BlockState::AndesiteWall_TallTallLowFalseFalseNone
- | BlockState::AndesiteWall_TallTallTallFalseTrueNone
- | BlockState::AndesiteWall_TallTallTallFalseFalseNone
- | BlockState::RedNetherBrickWall_LowLowLowFalseTrueNone
- | BlockState::RedNetherBrickWall_LowLowLowFalseFalseNone
- | BlockState::RedNetherBrickWall_LowLowTallFalseTrueNone
- | BlockState::RedNetherBrickWall_LowLowTallFalseFalseNone
- | BlockState::RedNetherBrickWall_LowTallLowFalseTrueNone
- | BlockState::RedNetherBrickWall_LowTallLowFalseFalseNone
- | BlockState::RedNetherBrickWall_LowTallTallFalseTrueNone
- | BlockState::RedNetherBrickWall_LowTallTallFalseFalseNone
- | BlockState::RedNetherBrickWall_TallLowLowFalseTrueNone
- | BlockState::RedNetherBrickWall_TallLowLowFalseFalseNone
- | BlockState::RedNetherBrickWall_TallLowTallFalseTrueNone
- | BlockState::RedNetherBrickWall_TallLowTallFalseFalseNone
- | BlockState::RedNetherBrickWall_TallTallLowFalseTrueNone
- | BlockState::RedNetherBrickWall_TallTallLowFalseFalseNone
- | BlockState::RedNetherBrickWall_TallTallTallFalseTrueNone
- | BlockState::RedNetherBrickWall_TallTallTallFalseFalseNone
- | BlockState::SandstoneWall_LowLowLowFalseTrueNone
- | BlockState::SandstoneWall_LowLowLowFalseFalseNone
- | BlockState::SandstoneWall_LowLowTallFalseTrueNone
- | BlockState::SandstoneWall_LowLowTallFalseFalseNone
- | BlockState::SandstoneWall_LowTallLowFalseTrueNone
- | BlockState::SandstoneWall_LowTallLowFalseFalseNone
- | BlockState::SandstoneWall_LowTallTallFalseTrueNone
- | BlockState::SandstoneWall_LowTallTallFalseFalseNone
- | BlockState::SandstoneWall_TallLowLowFalseTrueNone
- | BlockState::SandstoneWall_TallLowLowFalseFalseNone
- | BlockState::SandstoneWall_TallLowTallFalseTrueNone
- | BlockState::SandstoneWall_TallLowTallFalseFalseNone
- | BlockState::SandstoneWall_TallTallLowFalseTrueNone
- | BlockState::SandstoneWall_TallTallLowFalseFalseNone
- | BlockState::SandstoneWall_TallTallTallFalseTrueNone
- | BlockState::SandstoneWall_TallTallTallFalseFalseNone
- | BlockState::EndStoneBrickWall_LowLowLowFalseTrueNone
- | BlockState::EndStoneBrickWall_LowLowLowFalseFalseNone
- | BlockState::EndStoneBrickWall_LowLowTallFalseTrueNone
- | BlockState::EndStoneBrickWall_LowLowTallFalseFalseNone
- | BlockState::EndStoneBrickWall_LowTallLowFalseTrueNone
- | BlockState::EndStoneBrickWall_LowTallLowFalseFalseNone
- | BlockState::EndStoneBrickWall_LowTallTallFalseTrueNone
- | BlockState::EndStoneBrickWall_LowTallTallFalseFalseNone
- | BlockState::EndStoneBrickWall_TallLowLowFalseTrueNone
- | BlockState::EndStoneBrickWall_TallLowLowFalseFalseNone
- | BlockState::EndStoneBrickWall_TallLowTallFalseTrueNone
- | BlockState::EndStoneBrickWall_TallLowTallFalseFalseNone
- | BlockState::EndStoneBrickWall_TallTallLowFalseTrueNone
- | BlockState::EndStoneBrickWall_TallTallLowFalseFalseNone
- | BlockState::EndStoneBrickWall_TallTallTallFalseTrueNone
- | BlockState::EndStoneBrickWall_TallTallTallFalseFalseNone
- | BlockState::DioriteWall_LowLowLowFalseTrueNone
- | BlockState::DioriteWall_LowLowLowFalseFalseNone
- | BlockState::DioriteWall_LowLowTallFalseTrueNone
- | BlockState::DioriteWall_LowLowTallFalseFalseNone
- | BlockState::DioriteWall_LowTallLowFalseTrueNone
- | BlockState::DioriteWall_LowTallLowFalseFalseNone
- | BlockState::DioriteWall_LowTallTallFalseTrueNone
- | BlockState::DioriteWall_LowTallTallFalseFalseNone
- | BlockState::DioriteWall_TallLowLowFalseTrueNone
- | BlockState::DioriteWall_TallLowLowFalseFalseNone
- | BlockState::DioriteWall_TallLowTallFalseTrueNone
- | BlockState::DioriteWall_TallLowTallFalseFalseNone
- | BlockState::DioriteWall_TallTallLowFalseTrueNone
- | BlockState::DioriteWall_TallTallLowFalseFalseNone
- | BlockState::DioriteWall_TallTallTallFalseTrueNone
- | BlockState::DioriteWall_TallTallTallFalseFalseNone
- | BlockState::BlackstoneWall_LowLowLowFalseTrueNone
- | BlockState::BlackstoneWall_LowLowLowFalseFalseNone
- | BlockState::BlackstoneWall_LowLowTallFalseTrueNone
- | BlockState::BlackstoneWall_LowLowTallFalseFalseNone
- | BlockState::BlackstoneWall_LowTallLowFalseTrueNone
- | BlockState::BlackstoneWall_LowTallLowFalseFalseNone
- | BlockState::BlackstoneWall_LowTallTallFalseTrueNone
- | BlockState::BlackstoneWall_LowTallTallFalseFalseNone
- | BlockState::BlackstoneWall_TallLowLowFalseTrueNone
- | BlockState::BlackstoneWall_TallLowLowFalseFalseNone
- | BlockState::BlackstoneWall_TallLowTallFalseTrueNone
- | BlockState::BlackstoneWall_TallLowTallFalseFalseNone
- | BlockState::BlackstoneWall_TallTallLowFalseTrueNone
- | BlockState::BlackstoneWall_TallTallLowFalseFalseNone
- | BlockState::BlackstoneWall_TallTallTallFalseTrueNone
- | BlockState::BlackstoneWall_TallTallTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowFalseFalseNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallFalseTrueNone
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowLowLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowLowLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowLowTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowLowTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowTallLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowTallLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_LowTallTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_LowTallTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallLowLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallLowLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallLowTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallLowTallFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallTallLowFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallTallLowFalseFalseNone
- | BlockState::PolishedBlackstoneWall_TallTallTallFalseTrueNone
- | BlockState::PolishedBlackstoneWall_TallTallTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowLowLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowLowLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowLowTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowLowTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowTallLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowTallLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_LowTallTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_LowTallTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallLowLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallLowLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallLowTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallLowTallFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallTallLowFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallTallLowFalseFalseNone
- | BlockState::CobbledDeepslateWall_TallTallTallFalseTrueNone
- | BlockState::CobbledDeepslateWall_TallTallTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowLowLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowLowLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowLowTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowLowTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowTallLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowTallLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_LowTallTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_LowTallTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallLowLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallLowLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallLowTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallLowTallFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallTallLowFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallTallLowFalseFalseNone
- | BlockState::PolishedDeepslateWall_TallTallTallFalseTrueNone
- | BlockState::PolishedDeepslateWall_TallTallTallFalseFalseNone
- | BlockState::DeepslateTileWall_LowLowLowFalseTrueNone
- | BlockState::DeepslateTileWall_LowLowLowFalseFalseNone
- | BlockState::DeepslateTileWall_LowLowTallFalseTrueNone
- | BlockState::DeepslateTileWall_LowLowTallFalseFalseNone
- | BlockState::DeepslateTileWall_LowTallLowFalseTrueNone
- | BlockState::DeepslateTileWall_LowTallLowFalseFalseNone
- | BlockState::DeepslateTileWall_LowTallTallFalseTrueNone
- | BlockState::DeepslateTileWall_LowTallTallFalseFalseNone
- | BlockState::DeepslateTileWall_TallLowLowFalseTrueNone
- | BlockState::DeepslateTileWall_TallLowLowFalseFalseNone
- | BlockState::DeepslateTileWall_TallLowTallFalseTrueNone
- | BlockState::DeepslateTileWall_TallLowTallFalseFalseNone
- | BlockState::DeepslateTileWall_TallTallLowFalseTrueNone
- | BlockState::DeepslateTileWall_TallTallLowFalseFalseNone
- | BlockState::DeepslateTileWall_TallTallTallFalseTrueNone
- | BlockState::DeepslateTileWall_TallTallTallFalseFalseNone
- | BlockState::DeepslateBrickWall_LowLowLowFalseTrueNone
- | BlockState::DeepslateBrickWall_LowLowLowFalseFalseNone
- | BlockState::DeepslateBrickWall_LowLowTallFalseTrueNone
- | BlockState::DeepslateBrickWall_LowLowTallFalseFalseNone
- | BlockState::DeepslateBrickWall_LowTallLowFalseTrueNone
- | BlockState::DeepslateBrickWall_LowTallLowFalseFalseNone
- | BlockState::DeepslateBrickWall_LowTallTallFalseTrueNone
- | BlockState::DeepslateBrickWall_LowTallTallFalseFalseNone
- | BlockState::DeepslateBrickWall_TallLowLowFalseTrueNone
- | BlockState::DeepslateBrickWall_TallLowLowFalseFalseNone
- | BlockState::DeepslateBrickWall_TallLowTallFalseTrueNone
- | BlockState::DeepslateBrickWall_TallLowTallFalseFalseNone
- | BlockState::DeepslateBrickWall_TallTallLowFalseTrueNone
- | BlockState::DeepslateBrickWall_TallTallLowFalseFalseNone
- | BlockState::DeepslateBrickWall_TallTallTallFalseTrueNone
- | BlockState::DeepslateBrickWall_TallTallTallFalseFalseNone => &SHAPE168,
- BlockState::CobblestoneWall_LowLowLowFalseTrueLow
- | BlockState::CobblestoneWall_LowLowLowFalseTrueTall
- | BlockState::CobblestoneWall_LowLowLowFalseFalseLow
- | BlockState::CobblestoneWall_LowLowLowFalseFalseTall
- | BlockState::CobblestoneWall_LowLowTallFalseTrueLow
- | BlockState::CobblestoneWall_LowLowTallFalseTrueTall
- | BlockState::CobblestoneWall_LowLowTallFalseFalseLow
- | BlockState::CobblestoneWall_LowLowTallFalseFalseTall
- | BlockState::CobblestoneWall_LowTallLowFalseTrueLow
- | BlockState::CobblestoneWall_LowTallLowFalseTrueTall
- | BlockState::CobblestoneWall_LowTallLowFalseFalseLow
- | BlockState::CobblestoneWall_LowTallLowFalseFalseTall
- | BlockState::CobblestoneWall_LowTallTallFalseTrueLow
- | BlockState::CobblestoneWall_LowTallTallFalseTrueTall
- | BlockState::CobblestoneWall_LowTallTallFalseFalseLow
- | BlockState::CobblestoneWall_LowTallTallFalseFalseTall
- | BlockState::CobblestoneWall_TallLowLowFalseTrueLow
- | BlockState::CobblestoneWall_TallLowLowFalseTrueTall
- | BlockState::CobblestoneWall_TallLowLowFalseFalseLow
- | BlockState::CobblestoneWall_TallLowLowFalseFalseTall
- | BlockState::CobblestoneWall_TallLowTallFalseTrueLow
- | BlockState::CobblestoneWall_TallLowTallFalseTrueTall
- | BlockState::CobblestoneWall_TallLowTallFalseFalseLow
- | BlockState::CobblestoneWall_TallLowTallFalseFalseTall
- | BlockState::CobblestoneWall_TallTallLowFalseTrueLow
- | BlockState::CobblestoneWall_TallTallLowFalseTrueTall
- | BlockState::CobblestoneWall_TallTallLowFalseFalseLow
- | BlockState::CobblestoneWall_TallTallLowFalseFalseTall
- | BlockState::CobblestoneWall_TallTallTallFalseTrueLow
- | BlockState::CobblestoneWall_TallTallTallFalseTrueTall
- | BlockState::CobblestoneWall_TallTallTallFalseFalseLow
- | BlockState::CobblestoneWall_TallTallTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowLowLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowLowLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowLowLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowLowLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowLowTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowLowTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowLowTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowLowTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowTallLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowTallLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowTallLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowTallLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_LowTallTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_LowTallTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_LowTallTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_LowTallTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallLowLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallLowLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallLowLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallLowLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallLowTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallLowTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallLowTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallLowTallFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallTallLowFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallTallLowFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallTallLowFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallTallLowFalseFalseTall
- | BlockState::MossyCobblestoneWall_TallTallTallFalseTrueLow
- | BlockState::MossyCobblestoneWall_TallTallTallFalseTrueTall
- | BlockState::MossyCobblestoneWall_TallTallTallFalseFalseLow
- | BlockState::MossyCobblestoneWall_TallTallTallFalseFalseTall
- | BlockState::BrickWall_LowLowLowFalseTrueLow
- | BlockState::BrickWall_LowLowLowFalseTrueTall
- | BlockState::BrickWall_LowLowLowFalseFalseLow
- | BlockState::BrickWall_LowLowLowFalseFalseTall
- | BlockState::BrickWall_LowLowTallFalseTrueLow
- | BlockState::BrickWall_LowLowTallFalseTrueTall
- | BlockState::BrickWall_LowLowTallFalseFalseLow
- | BlockState::BrickWall_LowLowTallFalseFalseTall
- | BlockState::BrickWall_LowTallLowFalseTrueLow
- | BlockState::BrickWall_LowTallLowFalseTrueTall
- | BlockState::BrickWall_LowTallLowFalseFalseLow
- | BlockState::BrickWall_LowTallLowFalseFalseTall
- | BlockState::BrickWall_LowTallTallFalseTrueLow
- | BlockState::BrickWall_LowTallTallFalseTrueTall
- | BlockState::BrickWall_LowTallTallFalseFalseLow
- | BlockState::BrickWall_LowTallTallFalseFalseTall
- | BlockState::BrickWall_TallLowLowFalseTrueLow
- | BlockState::BrickWall_TallLowLowFalseTrueTall
- | BlockState::BrickWall_TallLowLowFalseFalseLow
- | BlockState::BrickWall_TallLowLowFalseFalseTall
- | BlockState::BrickWall_TallLowTallFalseTrueLow
- | BlockState::BrickWall_TallLowTallFalseTrueTall
- | BlockState::BrickWall_TallLowTallFalseFalseLow
- | BlockState::BrickWall_TallLowTallFalseFalseTall
- | BlockState::BrickWall_TallTallLowFalseTrueLow
- | BlockState::BrickWall_TallTallLowFalseTrueTall
- | BlockState::BrickWall_TallTallLowFalseFalseLow
- | BlockState::BrickWall_TallTallLowFalseFalseTall
- | BlockState::BrickWall_TallTallTallFalseTrueLow
- | BlockState::BrickWall_TallTallTallFalseTrueTall
- | BlockState::BrickWall_TallTallTallFalseFalseLow
- | BlockState::BrickWall_TallTallTallFalseFalseTall
- | BlockState::PrismarineWall_LowLowLowFalseTrueLow
- | BlockState::PrismarineWall_LowLowLowFalseTrueTall
- | BlockState::PrismarineWall_LowLowLowFalseFalseLow
- | BlockState::PrismarineWall_LowLowLowFalseFalseTall
- | BlockState::PrismarineWall_LowLowTallFalseTrueLow
- | BlockState::PrismarineWall_LowLowTallFalseTrueTall
- | BlockState::PrismarineWall_LowLowTallFalseFalseLow
- | BlockState::PrismarineWall_LowLowTallFalseFalseTall
- | BlockState::PrismarineWall_LowTallLowFalseTrueLow
- | BlockState::PrismarineWall_LowTallLowFalseTrueTall
- | BlockState::PrismarineWall_LowTallLowFalseFalseLow
- | BlockState::PrismarineWall_LowTallLowFalseFalseTall
- | BlockState::PrismarineWall_LowTallTallFalseTrueLow
- | BlockState::PrismarineWall_LowTallTallFalseTrueTall
- | BlockState::PrismarineWall_LowTallTallFalseFalseLow
- | BlockState::PrismarineWall_LowTallTallFalseFalseTall
- | BlockState::PrismarineWall_TallLowLowFalseTrueLow
- | BlockState::PrismarineWall_TallLowLowFalseTrueTall
- | BlockState::PrismarineWall_TallLowLowFalseFalseLow
- | BlockState::PrismarineWall_TallLowLowFalseFalseTall
- | BlockState::PrismarineWall_TallLowTallFalseTrueLow
- | BlockState::PrismarineWall_TallLowTallFalseTrueTall
- | BlockState::PrismarineWall_TallLowTallFalseFalseLow
- | BlockState::PrismarineWall_TallLowTallFalseFalseTall
- | BlockState::PrismarineWall_TallTallLowFalseTrueLow
- | BlockState::PrismarineWall_TallTallLowFalseTrueTall
- | BlockState::PrismarineWall_TallTallLowFalseFalseLow
- | BlockState::PrismarineWall_TallTallLowFalseFalseTall
- | BlockState::PrismarineWall_TallTallTallFalseTrueLow
- | BlockState::PrismarineWall_TallTallTallFalseTrueTall
- | BlockState::PrismarineWall_TallTallTallFalseFalseLow
- | BlockState::PrismarineWall_TallTallTallFalseFalseTall
- | BlockState::RedSandstoneWall_LowLowLowFalseTrueLow
- | BlockState::RedSandstoneWall_LowLowLowFalseTrueTall
- | BlockState::RedSandstoneWall_LowLowLowFalseFalseLow
- | BlockState::RedSandstoneWall_LowLowLowFalseFalseTall
- | BlockState::RedSandstoneWall_LowLowTallFalseTrueLow
- | BlockState::RedSandstoneWall_LowLowTallFalseTrueTall
- | BlockState::RedSandstoneWall_LowLowTallFalseFalseLow
- | BlockState::RedSandstoneWall_LowLowTallFalseFalseTall
- | BlockState::RedSandstoneWall_LowTallLowFalseTrueLow
- | BlockState::RedSandstoneWall_LowTallLowFalseTrueTall
- | BlockState::RedSandstoneWall_LowTallLowFalseFalseLow
- | BlockState::RedSandstoneWall_LowTallLowFalseFalseTall
- | BlockState::RedSandstoneWall_LowTallTallFalseTrueLow
- | BlockState::RedSandstoneWall_LowTallTallFalseTrueTall
- | BlockState::RedSandstoneWall_LowTallTallFalseFalseLow
- | BlockState::RedSandstoneWall_LowTallTallFalseFalseTall
- | BlockState::RedSandstoneWall_TallLowLowFalseTrueLow
- | BlockState::RedSandstoneWall_TallLowLowFalseTrueTall
- | BlockState::RedSandstoneWall_TallLowLowFalseFalseLow
- | BlockState::RedSandstoneWall_TallLowLowFalseFalseTall
- | BlockState::RedSandstoneWall_TallLowTallFalseTrueLow
- | BlockState::RedSandstoneWall_TallLowTallFalseTrueTall
- | BlockState::RedSandstoneWall_TallLowTallFalseFalseLow
- | BlockState::RedSandstoneWall_TallLowTallFalseFalseTall
- | BlockState::RedSandstoneWall_TallTallLowFalseTrueLow
- | BlockState::RedSandstoneWall_TallTallLowFalseTrueTall
- | BlockState::RedSandstoneWall_TallTallLowFalseFalseLow
- | BlockState::RedSandstoneWall_TallTallLowFalseFalseTall
- | BlockState::RedSandstoneWall_TallTallTallFalseTrueLow
- | BlockState::RedSandstoneWall_TallTallTallFalseTrueTall
- | BlockState::RedSandstoneWall_TallTallTallFalseFalseLow
- | BlockState::RedSandstoneWall_TallTallTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowLowLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowLowLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowLowLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowLowLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowLowTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowLowTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowLowTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowLowTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowTallLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowTallLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowTallLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowTallLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_LowTallTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_LowTallTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_LowTallTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_LowTallTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallLowLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallLowLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallLowLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallLowLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallLowTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallLowTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallLowTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallLowTallFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallTallLowFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallTallLowFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallTallLowFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallTallLowFalseFalseTall
- | BlockState::MossyStoneBrickWall_TallTallTallFalseTrueLow
- | BlockState::MossyStoneBrickWall_TallTallTallFalseTrueTall
- | BlockState::MossyStoneBrickWall_TallTallTallFalseFalseLow
- | BlockState::MossyStoneBrickWall_TallTallTallFalseFalseTall
- | BlockState::GraniteWall_LowLowLowFalseTrueLow
- | BlockState::GraniteWall_LowLowLowFalseTrueTall
- | BlockState::GraniteWall_LowLowLowFalseFalseLow
- | BlockState::GraniteWall_LowLowLowFalseFalseTall
- | BlockState::GraniteWall_LowLowTallFalseTrueLow
- | BlockState::GraniteWall_LowLowTallFalseTrueTall
- | BlockState::GraniteWall_LowLowTallFalseFalseLow
- | BlockState::GraniteWall_LowLowTallFalseFalseTall
- | BlockState::GraniteWall_LowTallLowFalseTrueLow
- | BlockState::GraniteWall_LowTallLowFalseTrueTall
- | BlockState::GraniteWall_LowTallLowFalseFalseLow
- | BlockState::GraniteWall_LowTallLowFalseFalseTall
- | BlockState::GraniteWall_LowTallTallFalseTrueLow
- | BlockState::GraniteWall_LowTallTallFalseTrueTall
- | BlockState::GraniteWall_LowTallTallFalseFalseLow
- | BlockState::GraniteWall_LowTallTallFalseFalseTall
- | BlockState::GraniteWall_TallLowLowFalseTrueLow
- | BlockState::GraniteWall_TallLowLowFalseTrueTall
- | BlockState::GraniteWall_TallLowLowFalseFalseLow
- | BlockState::GraniteWall_TallLowLowFalseFalseTall
- | BlockState::GraniteWall_TallLowTallFalseTrueLow
- | BlockState::GraniteWall_TallLowTallFalseTrueTall
- | BlockState::GraniteWall_TallLowTallFalseFalseLow
- | BlockState::GraniteWall_TallLowTallFalseFalseTall
- | BlockState::GraniteWall_TallTallLowFalseTrueLow
- | BlockState::GraniteWall_TallTallLowFalseTrueTall
- | BlockState::GraniteWall_TallTallLowFalseFalseLow
- | BlockState::GraniteWall_TallTallLowFalseFalseTall
- | BlockState::GraniteWall_TallTallTallFalseTrueLow
- | BlockState::GraniteWall_TallTallTallFalseTrueTall
- | BlockState::GraniteWall_TallTallTallFalseFalseLow
- | BlockState::GraniteWall_TallTallTallFalseFalseTall
- | BlockState::StoneBrickWall_LowLowLowFalseTrueLow
- | BlockState::StoneBrickWall_LowLowLowFalseTrueTall
- | BlockState::StoneBrickWall_LowLowLowFalseFalseLow
- | BlockState::StoneBrickWall_LowLowLowFalseFalseTall
- | BlockState::StoneBrickWall_LowLowTallFalseTrueLow
- | BlockState::StoneBrickWall_LowLowTallFalseTrueTall
- | BlockState::StoneBrickWall_LowLowTallFalseFalseLow
- | BlockState::StoneBrickWall_LowLowTallFalseFalseTall
- | BlockState::StoneBrickWall_LowTallLowFalseTrueLow
- | BlockState::StoneBrickWall_LowTallLowFalseTrueTall
- | BlockState::StoneBrickWall_LowTallLowFalseFalseLow
- | BlockState::StoneBrickWall_LowTallLowFalseFalseTall
- | BlockState::StoneBrickWall_LowTallTallFalseTrueLow
- | BlockState::StoneBrickWall_LowTallTallFalseTrueTall
- | BlockState::StoneBrickWall_LowTallTallFalseFalseLow
- | BlockState::StoneBrickWall_LowTallTallFalseFalseTall
- | BlockState::StoneBrickWall_TallLowLowFalseTrueLow
- | BlockState::StoneBrickWall_TallLowLowFalseTrueTall
- | BlockState::StoneBrickWall_TallLowLowFalseFalseLow
- | BlockState::StoneBrickWall_TallLowLowFalseFalseTall
- | BlockState::StoneBrickWall_TallLowTallFalseTrueLow
- | BlockState::StoneBrickWall_TallLowTallFalseTrueTall
- | BlockState::StoneBrickWall_TallLowTallFalseFalseLow
- | BlockState::StoneBrickWall_TallLowTallFalseFalseTall
- | BlockState::StoneBrickWall_TallTallLowFalseTrueLow
- | BlockState::StoneBrickWall_TallTallLowFalseTrueTall
- | BlockState::StoneBrickWall_TallTallLowFalseFalseLow
- | BlockState::StoneBrickWall_TallTallLowFalseFalseTall
- | BlockState::StoneBrickWall_TallTallTallFalseTrueLow
- | BlockState::StoneBrickWall_TallTallTallFalseTrueTall
- | BlockState::StoneBrickWall_TallTallTallFalseFalseLow
- | BlockState::StoneBrickWall_TallTallTallFalseFalseTall
- | BlockState::MudBrickWall_LowLowLowFalseTrueLow
- | BlockState::MudBrickWall_LowLowLowFalseTrueTall
- | BlockState::MudBrickWall_LowLowLowFalseFalseLow
- | BlockState::MudBrickWall_LowLowLowFalseFalseTall
- | BlockState::MudBrickWall_LowLowTallFalseTrueLow
- | BlockState::MudBrickWall_LowLowTallFalseTrueTall
- | BlockState::MudBrickWall_LowLowTallFalseFalseLow
- | BlockState::MudBrickWall_LowLowTallFalseFalseTall
- | BlockState::MudBrickWall_LowTallLowFalseTrueLow
- | BlockState::MudBrickWall_LowTallLowFalseTrueTall
- | BlockState::MudBrickWall_LowTallLowFalseFalseLow
- | BlockState::MudBrickWall_LowTallLowFalseFalseTall
- | BlockState::MudBrickWall_LowTallTallFalseTrueLow
- | BlockState::MudBrickWall_LowTallTallFalseTrueTall
- | BlockState::MudBrickWall_LowTallTallFalseFalseLow
- | BlockState::MudBrickWall_LowTallTallFalseFalseTall
- | BlockState::MudBrickWall_TallLowLowFalseTrueLow
- | BlockState::MudBrickWall_TallLowLowFalseTrueTall
- | BlockState::MudBrickWall_TallLowLowFalseFalseLow
- | BlockState::MudBrickWall_TallLowLowFalseFalseTall
- | BlockState::MudBrickWall_TallLowTallFalseTrueLow
- | BlockState::MudBrickWall_TallLowTallFalseTrueTall
- | BlockState::MudBrickWall_TallLowTallFalseFalseLow
- | BlockState::MudBrickWall_TallLowTallFalseFalseTall
- | BlockState::MudBrickWall_TallTallLowFalseTrueLow
- | BlockState::MudBrickWall_TallTallLowFalseTrueTall
- | BlockState::MudBrickWall_TallTallLowFalseFalseLow
- | BlockState::MudBrickWall_TallTallLowFalseFalseTall
- | BlockState::MudBrickWall_TallTallTallFalseTrueLow
- | BlockState::MudBrickWall_TallTallTallFalseTrueTall
- | BlockState::MudBrickWall_TallTallTallFalseFalseLow
- | BlockState::MudBrickWall_TallTallTallFalseFalseTall
- | BlockState::NetherBrickWall_LowLowLowFalseTrueLow
- | BlockState::NetherBrickWall_LowLowLowFalseTrueTall
- | BlockState::NetherBrickWall_LowLowLowFalseFalseLow
- | BlockState::NetherBrickWall_LowLowLowFalseFalseTall
- | BlockState::NetherBrickWall_LowLowTallFalseTrueLow
- | BlockState::NetherBrickWall_LowLowTallFalseTrueTall
- | BlockState::NetherBrickWall_LowLowTallFalseFalseLow
- | BlockState::NetherBrickWall_LowLowTallFalseFalseTall
- | BlockState::NetherBrickWall_LowTallLowFalseTrueLow
- | BlockState::NetherBrickWall_LowTallLowFalseTrueTall
- | BlockState::NetherBrickWall_LowTallLowFalseFalseLow
- | BlockState::NetherBrickWall_LowTallLowFalseFalseTall
- | BlockState::NetherBrickWall_LowTallTallFalseTrueLow
- | BlockState::NetherBrickWall_LowTallTallFalseTrueTall
- | BlockState::NetherBrickWall_LowTallTallFalseFalseLow
- | BlockState::NetherBrickWall_LowTallTallFalseFalseTall
- | BlockState::NetherBrickWall_TallLowLowFalseTrueLow
- | BlockState::NetherBrickWall_TallLowLowFalseTrueTall
- | BlockState::NetherBrickWall_TallLowLowFalseFalseLow
- | BlockState::NetherBrickWall_TallLowLowFalseFalseTall
- | BlockState::NetherBrickWall_TallLowTallFalseTrueLow
- | BlockState::NetherBrickWall_TallLowTallFalseTrueTall
- | BlockState::NetherBrickWall_TallLowTallFalseFalseLow
- | BlockState::NetherBrickWall_TallLowTallFalseFalseTall
- | BlockState::NetherBrickWall_TallTallLowFalseTrueLow
- | BlockState::NetherBrickWall_TallTallLowFalseTrueTall
- | BlockState::NetherBrickWall_TallTallLowFalseFalseLow
- | BlockState::NetherBrickWall_TallTallLowFalseFalseTall
- | BlockState::NetherBrickWall_TallTallTallFalseTrueLow
- | BlockState::NetherBrickWall_TallTallTallFalseTrueTall
- | BlockState::NetherBrickWall_TallTallTallFalseFalseLow
- | BlockState::NetherBrickWall_TallTallTallFalseFalseTall
- | BlockState::AndesiteWall_LowLowLowFalseTrueLow
- | BlockState::AndesiteWall_LowLowLowFalseTrueTall
- | BlockState::AndesiteWall_LowLowLowFalseFalseLow
- | BlockState::AndesiteWall_LowLowLowFalseFalseTall
- | BlockState::AndesiteWall_LowLowTallFalseTrueLow
- | BlockState::AndesiteWall_LowLowTallFalseTrueTall
- | BlockState::AndesiteWall_LowLowTallFalseFalseLow
- | BlockState::AndesiteWall_LowLowTallFalseFalseTall
- | BlockState::AndesiteWall_LowTallLowFalseTrueLow
- | BlockState::AndesiteWall_LowTallLowFalseTrueTall
- | BlockState::AndesiteWall_LowTallLowFalseFalseLow
- | BlockState::AndesiteWall_LowTallLowFalseFalseTall
- | BlockState::AndesiteWall_LowTallTallFalseTrueLow
- | BlockState::AndesiteWall_LowTallTallFalseTrueTall
- | BlockState::AndesiteWall_LowTallTallFalseFalseLow
- | BlockState::AndesiteWall_LowTallTallFalseFalseTall
- | BlockState::AndesiteWall_TallLowLowFalseTrueLow
- | BlockState::AndesiteWall_TallLowLowFalseTrueTall
- | BlockState::AndesiteWall_TallLowLowFalseFalseLow
- | BlockState::AndesiteWall_TallLowLowFalseFalseTall
- | BlockState::AndesiteWall_TallLowTallFalseTrueLow
- | BlockState::AndesiteWall_TallLowTallFalseTrueTall
- | BlockState::AndesiteWall_TallLowTallFalseFalseLow
- | BlockState::AndesiteWall_TallLowTallFalseFalseTall
- | BlockState::AndesiteWall_TallTallLowFalseTrueLow
- | BlockState::AndesiteWall_TallTallLowFalseTrueTall
- | BlockState::AndesiteWall_TallTallLowFalseFalseLow
- | BlockState::AndesiteWall_TallTallLowFalseFalseTall
- | BlockState::AndesiteWall_TallTallTallFalseTrueLow
- | BlockState::AndesiteWall_TallTallTallFalseTrueTall
- | BlockState::AndesiteWall_TallTallTallFalseFalseLow
- | BlockState::AndesiteWall_TallTallTallFalseFalseTall
- | BlockState::RedNetherBrickWall_LowLowLowFalseTrueLow
- | BlockState::RedNetherBrickWall_LowLowLowFalseTrueTall
- | BlockState::RedNetherBrickWall_LowLowLowFalseFalseLow
- | BlockState::RedNetherBrickWall_LowLowLowFalseFalseTall
- | BlockState::RedNetherBrickWall_LowLowTallFalseTrueLow
- | BlockState::RedNetherBrickWall_LowLowTallFalseTrueTall
- | BlockState::RedNetherBrickWall_LowLowTallFalseFalseLow
- | BlockState::RedNetherBrickWall_LowLowTallFalseFalseTall
- | BlockState::RedNetherBrickWall_LowTallLowFalseTrueLow
- | BlockState::RedNetherBrickWall_LowTallLowFalseTrueTall
- | BlockState::RedNetherBrickWall_LowTallLowFalseFalseLow
- | BlockState::RedNetherBrickWall_LowTallLowFalseFalseTall
- | BlockState::RedNetherBrickWall_LowTallTallFalseTrueLow
- | BlockState::RedNetherBrickWall_LowTallTallFalseTrueTall
- | BlockState::RedNetherBrickWall_LowTallTallFalseFalseLow
- | BlockState::RedNetherBrickWall_LowTallTallFalseFalseTall
- | BlockState::RedNetherBrickWall_TallLowLowFalseTrueLow
- | BlockState::RedNetherBrickWall_TallLowLowFalseTrueTall
- | BlockState::RedNetherBrickWall_TallLowLowFalseFalseLow
- | BlockState::RedNetherBrickWall_TallLowLowFalseFalseTall
- | BlockState::RedNetherBrickWall_TallLowTallFalseTrueLow
- | BlockState::RedNetherBrickWall_TallLowTallFalseTrueTall
- | BlockState::RedNetherBrickWall_TallLowTallFalseFalseLow
- | BlockState::RedNetherBrickWall_TallLowTallFalseFalseTall
- | BlockState::RedNetherBrickWall_TallTallLowFalseTrueLow
- | BlockState::RedNetherBrickWall_TallTallLowFalseTrueTall
- | BlockState::RedNetherBrickWall_TallTallLowFalseFalseLow
- | BlockState::RedNetherBrickWall_TallTallLowFalseFalseTall
- | BlockState::RedNetherBrickWall_TallTallTallFalseTrueLow
- | BlockState::RedNetherBrickWall_TallTallTallFalseTrueTall
- | BlockState::RedNetherBrickWall_TallTallTallFalseFalseLow
- | BlockState::RedNetherBrickWall_TallTallTallFalseFalseTall
- | BlockState::SandstoneWall_LowLowLowFalseTrueLow
- | BlockState::SandstoneWall_LowLowLowFalseTrueTall
- | BlockState::SandstoneWall_LowLowLowFalseFalseLow
- | BlockState::SandstoneWall_LowLowLowFalseFalseTall
- | BlockState::SandstoneWall_LowLowTallFalseTrueLow
- | BlockState::SandstoneWall_LowLowTallFalseTrueTall
- | BlockState::SandstoneWall_LowLowTallFalseFalseLow
- | BlockState::SandstoneWall_LowLowTallFalseFalseTall
- | BlockState::SandstoneWall_LowTallLowFalseTrueLow
- | BlockState::SandstoneWall_LowTallLowFalseTrueTall
- | BlockState::SandstoneWall_LowTallLowFalseFalseLow
- | BlockState::SandstoneWall_LowTallLowFalseFalseTall
- | BlockState::SandstoneWall_LowTallTallFalseTrueLow
- | BlockState::SandstoneWall_LowTallTallFalseTrueTall
- | BlockState::SandstoneWall_LowTallTallFalseFalseLow
- | BlockState::SandstoneWall_LowTallTallFalseFalseTall
- | BlockState::SandstoneWall_TallLowLowFalseTrueLow
- | BlockState::SandstoneWall_TallLowLowFalseTrueTall
- | BlockState::SandstoneWall_TallLowLowFalseFalseLow
- | BlockState::SandstoneWall_TallLowLowFalseFalseTall
- | BlockState::SandstoneWall_TallLowTallFalseTrueLow
- | BlockState::SandstoneWall_TallLowTallFalseTrueTall
- | BlockState::SandstoneWall_TallLowTallFalseFalseLow
- | BlockState::SandstoneWall_TallLowTallFalseFalseTall
- | BlockState::SandstoneWall_TallTallLowFalseTrueLow
- | BlockState::SandstoneWall_TallTallLowFalseTrueTall
- | BlockState::SandstoneWall_TallTallLowFalseFalseLow
- | BlockState::SandstoneWall_TallTallLowFalseFalseTall
- | BlockState::SandstoneWall_TallTallTallFalseTrueLow
- | BlockState::SandstoneWall_TallTallTallFalseTrueTall
- | BlockState::SandstoneWall_TallTallTallFalseFalseLow
- | BlockState::SandstoneWall_TallTallTallFalseFalseTall
- | BlockState::EndStoneBrickWall_LowLowLowFalseTrueLow
- | BlockState::EndStoneBrickWall_LowLowLowFalseTrueTall
- | BlockState::EndStoneBrickWall_LowLowLowFalseFalseLow
- | BlockState::EndStoneBrickWall_LowLowLowFalseFalseTall
- | BlockState::EndStoneBrickWall_LowLowTallFalseTrueLow
- | BlockState::EndStoneBrickWall_LowLowTallFalseTrueTall
- | BlockState::EndStoneBrickWall_LowLowTallFalseFalseLow
- | BlockState::EndStoneBrickWall_LowLowTallFalseFalseTall
- | BlockState::EndStoneBrickWall_LowTallLowFalseTrueLow
- | BlockState::EndStoneBrickWall_LowTallLowFalseTrueTall
- | BlockState::EndStoneBrickWall_LowTallLowFalseFalseLow
- | BlockState::EndStoneBrickWall_LowTallLowFalseFalseTall
- | BlockState::EndStoneBrickWall_LowTallTallFalseTrueLow
- | BlockState::EndStoneBrickWall_LowTallTallFalseTrueTall
- | BlockState::EndStoneBrickWall_LowTallTallFalseFalseLow
- | BlockState::EndStoneBrickWall_LowTallTallFalseFalseTall
- | BlockState::EndStoneBrickWall_TallLowLowFalseTrueLow
- | BlockState::EndStoneBrickWall_TallLowLowFalseTrueTall
- | BlockState::EndStoneBrickWall_TallLowLowFalseFalseLow
- | BlockState::EndStoneBrickWall_TallLowLowFalseFalseTall
- | BlockState::EndStoneBrickWall_TallLowTallFalseTrueLow
- | BlockState::EndStoneBrickWall_TallLowTallFalseTrueTall
- | BlockState::EndStoneBrickWall_TallLowTallFalseFalseLow
- | BlockState::EndStoneBrickWall_TallLowTallFalseFalseTall
- | BlockState::EndStoneBrickWall_TallTallLowFalseTrueLow
- | BlockState::EndStoneBrickWall_TallTallLowFalseTrueTall
- | BlockState::EndStoneBrickWall_TallTallLowFalseFalseLow
- | BlockState::EndStoneBrickWall_TallTallLowFalseFalseTall
- | BlockState::EndStoneBrickWall_TallTallTallFalseTrueLow
- | BlockState::EndStoneBrickWall_TallTallTallFalseTrueTall
- | BlockState::EndStoneBrickWall_TallTallTallFalseFalseLow
- | BlockState::EndStoneBrickWall_TallTallTallFalseFalseTall
- | BlockState::DioriteWall_LowLowLowFalseTrueLow
- | BlockState::DioriteWall_LowLowLowFalseTrueTall
- | BlockState::DioriteWall_LowLowLowFalseFalseLow
- | BlockState::DioriteWall_LowLowLowFalseFalseTall
- | BlockState::DioriteWall_LowLowTallFalseTrueLow
- | BlockState::DioriteWall_LowLowTallFalseTrueTall
- | BlockState::DioriteWall_LowLowTallFalseFalseLow
- | BlockState::DioriteWall_LowLowTallFalseFalseTall
- | BlockState::DioriteWall_LowTallLowFalseTrueLow
- | BlockState::DioriteWall_LowTallLowFalseTrueTall
- | BlockState::DioriteWall_LowTallLowFalseFalseLow
- | BlockState::DioriteWall_LowTallLowFalseFalseTall
- | BlockState::DioriteWall_LowTallTallFalseTrueLow
- | BlockState::DioriteWall_LowTallTallFalseTrueTall
- | BlockState::DioriteWall_LowTallTallFalseFalseLow
- | BlockState::DioriteWall_LowTallTallFalseFalseTall
- | BlockState::DioriteWall_TallLowLowFalseTrueLow
- | BlockState::DioriteWall_TallLowLowFalseTrueTall
- | BlockState::DioriteWall_TallLowLowFalseFalseLow
- | BlockState::DioriteWall_TallLowLowFalseFalseTall
- | BlockState::DioriteWall_TallLowTallFalseTrueLow
- | BlockState::DioriteWall_TallLowTallFalseTrueTall
- | BlockState::DioriteWall_TallLowTallFalseFalseLow
- | BlockState::DioriteWall_TallLowTallFalseFalseTall
- | BlockState::DioriteWall_TallTallLowFalseTrueLow
- | BlockState::DioriteWall_TallTallLowFalseTrueTall
- | BlockState::DioriteWall_TallTallLowFalseFalseLow
- | BlockState::DioriteWall_TallTallLowFalseFalseTall
- | BlockState::DioriteWall_TallTallTallFalseTrueLow
- | BlockState::DioriteWall_TallTallTallFalseTrueTall
- | BlockState::DioriteWall_TallTallTallFalseFalseLow
- | BlockState::DioriteWall_TallTallTallFalseFalseTall
- | BlockState::BlackstoneWall_LowLowLowFalseTrueLow
- | BlockState::BlackstoneWall_LowLowLowFalseTrueTall
- | BlockState::BlackstoneWall_LowLowLowFalseFalseLow
- | BlockState::BlackstoneWall_LowLowLowFalseFalseTall
- | BlockState::BlackstoneWall_LowLowTallFalseTrueLow
- | BlockState::BlackstoneWall_LowLowTallFalseTrueTall
- | BlockState::BlackstoneWall_LowLowTallFalseFalseLow
- | BlockState::BlackstoneWall_LowLowTallFalseFalseTall
- | BlockState::BlackstoneWall_LowTallLowFalseTrueLow
- | BlockState::BlackstoneWall_LowTallLowFalseTrueTall
- | BlockState::BlackstoneWall_LowTallLowFalseFalseLow
- | BlockState::BlackstoneWall_LowTallLowFalseFalseTall
- | BlockState::BlackstoneWall_LowTallTallFalseTrueLow
- | BlockState::BlackstoneWall_LowTallTallFalseTrueTall
- | BlockState::BlackstoneWall_LowTallTallFalseFalseLow
- | BlockState::BlackstoneWall_LowTallTallFalseFalseTall
- | BlockState::BlackstoneWall_TallLowLowFalseTrueLow
- | BlockState::BlackstoneWall_TallLowLowFalseTrueTall
- | BlockState::BlackstoneWall_TallLowLowFalseFalseLow
- | BlockState::BlackstoneWall_TallLowLowFalseFalseTall
- | BlockState::BlackstoneWall_TallLowTallFalseTrueLow
- | BlockState::BlackstoneWall_TallLowTallFalseTrueTall
- | BlockState::BlackstoneWall_TallLowTallFalseFalseLow
- | BlockState::BlackstoneWall_TallLowTallFalseFalseTall
- | BlockState::BlackstoneWall_TallTallLowFalseTrueLow
- | BlockState::BlackstoneWall_TallTallLowFalseTrueTall
- | BlockState::BlackstoneWall_TallTallLowFalseFalseLow
- | BlockState::BlackstoneWall_TallTallLowFalseFalseTall
- | BlockState::BlackstoneWall_TallTallTallFalseTrueLow
- | BlockState::BlackstoneWall_TallTallTallFalseTrueTall
- | BlockState::BlackstoneWall_TallTallTallFalseFalseLow
- | BlockState::BlackstoneWall_TallTallTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowLowTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_LowTallTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallLowTallFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallLowFalseFalseTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallFalseTrueLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallFalseTrueTall
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallFalseFalseLow
- | BlockState::PolishedBlackstoneBrickWall_TallTallTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowLowLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowLowLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowLowLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowLowLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowLowTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowLowTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowLowTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowLowTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowTallLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowTallLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowTallLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowTallLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_LowTallTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_LowTallTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_LowTallTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_LowTallTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallLowLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallLowLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallLowLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallLowLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallLowTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallLowTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallLowTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallLowTallFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallTallLowFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallTallLowFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallTallLowFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallTallLowFalseFalseTall
- | BlockState::PolishedBlackstoneWall_TallTallTallFalseTrueLow
- | BlockState::PolishedBlackstoneWall_TallTallTallFalseTrueTall
- | BlockState::PolishedBlackstoneWall_TallTallTallFalseFalseLow
- | BlockState::PolishedBlackstoneWall_TallTallTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowLowLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowLowLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowLowLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowLowLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowLowTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowLowTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowLowTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowLowTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowTallLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowTallLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowTallLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowTallLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_LowTallTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_LowTallTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_LowTallTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_LowTallTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallLowLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallLowLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallLowLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallLowLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallLowTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallLowTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallLowTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallLowTallFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallTallLowFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallTallLowFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallTallLowFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallTallLowFalseFalseTall
- | BlockState::CobbledDeepslateWall_TallTallTallFalseTrueLow
- | BlockState::CobbledDeepslateWall_TallTallTallFalseTrueTall
- | BlockState::CobbledDeepslateWall_TallTallTallFalseFalseLow
- | BlockState::CobbledDeepslateWall_TallTallTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowLowLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowLowLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowLowLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowLowLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowLowTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowLowTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowLowTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowLowTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowTallLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowTallLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowTallLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowTallLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_LowTallTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_LowTallTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_LowTallTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_LowTallTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallLowLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallLowLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallLowLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallLowLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallLowTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallLowTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallLowTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallLowTallFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallTallLowFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallTallLowFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallTallLowFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallTallLowFalseFalseTall
- | BlockState::PolishedDeepslateWall_TallTallTallFalseTrueLow
- | BlockState::PolishedDeepslateWall_TallTallTallFalseTrueTall
- | BlockState::PolishedDeepslateWall_TallTallTallFalseFalseLow
- | BlockState::PolishedDeepslateWall_TallTallTallFalseFalseTall
- | BlockState::DeepslateTileWall_LowLowLowFalseTrueLow
- | BlockState::DeepslateTileWall_LowLowLowFalseTrueTall
- | BlockState::DeepslateTileWall_LowLowLowFalseFalseLow
- | BlockState::DeepslateTileWall_LowLowLowFalseFalseTall
- | BlockState::DeepslateTileWall_LowLowTallFalseTrueLow
- | BlockState::DeepslateTileWall_LowLowTallFalseTrueTall
- | BlockState::DeepslateTileWall_LowLowTallFalseFalseLow
- | BlockState::DeepslateTileWall_LowLowTallFalseFalseTall
- | BlockState::DeepslateTileWall_LowTallLowFalseTrueLow
- | BlockState::DeepslateTileWall_LowTallLowFalseTrueTall
- | BlockState::DeepslateTileWall_LowTallLowFalseFalseLow
- | BlockState::DeepslateTileWall_LowTallLowFalseFalseTall
- | BlockState::DeepslateTileWall_LowTallTallFalseTrueLow
- | BlockState::DeepslateTileWall_LowTallTallFalseTrueTall
- | BlockState::DeepslateTileWall_LowTallTallFalseFalseLow
- | BlockState::DeepslateTileWall_LowTallTallFalseFalseTall
- | BlockState::DeepslateTileWall_TallLowLowFalseTrueLow
- | BlockState::DeepslateTileWall_TallLowLowFalseTrueTall
- | BlockState::DeepslateTileWall_TallLowLowFalseFalseLow
- | BlockState::DeepslateTileWall_TallLowLowFalseFalseTall
- | BlockState::DeepslateTileWall_TallLowTallFalseTrueLow
- | BlockState::DeepslateTileWall_TallLowTallFalseTrueTall
- | BlockState::DeepslateTileWall_TallLowTallFalseFalseLow
- | BlockState::DeepslateTileWall_TallLowTallFalseFalseTall
- | BlockState::DeepslateTileWall_TallTallLowFalseTrueLow
- | BlockState::DeepslateTileWall_TallTallLowFalseTrueTall
- | BlockState::DeepslateTileWall_TallTallLowFalseFalseLow
- | BlockState::DeepslateTileWall_TallTallLowFalseFalseTall
- | BlockState::DeepslateTileWall_TallTallTallFalseTrueLow
- | BlockState::DeepslateTileWall_TallTallTallFalseTrueTall
- | BlockState::DeepslateTileWall_TallTallTallFalseFalseLow
- | BlockState::DeepslateTileWall_TallTallTallFalseFalseTall
- | BlockState::DeepslateBrickWall_LowLowLowFalseTrueLow
- | BlockState::DeepslateBrickWall_LowLowLowFalseTrueTall
- | BlockState::DeepslateBrickWall_LowLowLowFalseFalseLow
- | BlockState::DeepslateBrickWall_LowLowLowFalseFalseTall
- | BlockState::DeepslateBrickWall_LowLowTallFalseTrueLow
- | BlockState::DeepslateBrickWall_LowLowTallFalseTrueTall
- | BlockState::DeepslateBrickWall_LowLowTallFalseFalseLow
- | BlockState::DeepslateBrickWall_LowLowTallFalseFalseTall
- | BlockState::DeepslateBrickWall_LowTallLowFalseTrueLow
- | BlockState::DeepslateBrickWall_LowTallLowFalseTrueTall
- | BlockState::DeepslateBrickWall_LowTallLowFalseFalseLow
- | BlockState::DeepslateBrickWall_LowTallLowFalseFalseTall
- | BlockState::DeepslateBrickWall_LowTallTallFalseTrueLow
- | BlockState::DeepslateBrickWall_LowTallTallFalseTrueTall
- | BlockState::DeepslateBrickWall_LowTallTallFalseFalseLow
- | BlockState::DeepslateBrickWall_LowTallTallFalseFalseTall
- | BlockState::DeepslateBrickWall_TallLowLowFalseTrueLow
- | BlockState::DeepslateBrickWall_TallLowLowFalseTrueTall
- | BlockState::DeepslateBrickWall_TallLowLowFalseFalseLow
- | BlockState::DeepslateBrickWall_TallLowLowFalseFalseTall
- | BlockState::DeepslateBrickWall_TallLowTallFalseTrueLow
- | BlockState::DeepslateBrickWall_TallLowTallFalseTrueTall
- | BlockState::DeepslateBrickWall_TallLowTallFalseFalseLow
- | BlockState::DeepslateBrickWall_TallLowTallFalseFalseTall
- | BlockState::DeepslateBrickWall_TallTallLowFalseTrueLow
- | BlockState::DeepslateBrickWall_TallTallLowFalseTrueTall
- | BlockState::DeepslateBrickWall_TallTallLowFalseFalseLow
- | BlockState::DeepslateBrickWall_TallTallLowFalseFalseTall
- | BlockState::DeepslateBrickWall_TallTallTallFalseTrueLow
- | BlockState::DeepslateBrickWall_TallTallTallFalseTrueTall
- | BlockState::DeepslateBrickWall_TallTallTallFalseFalseLow
- | BlockState::DeepslateBrickWall_TallTallTallFalseFalseTall => &SHAPE169,
- BlockState::FlowerPot
- | BlockState::PottedOakSapling
- | BlockState::PottedSpruceSapling
- | BlockState::PottedBirchSapling
- | BlockState::PottedJungleSapling
- | BlockState::PottedAcaciaSapling
- | BlockState::PottedDarkOakSapling
- | BlockState::PottedMangrovePropagule
- | BlockState::PottedFern
- | BlockState::PottedDandelion
- | BlockState::PottedPoppy
- | BlockState::PottedBlueOrchid
- | BlockState::PottedAllium
- | BlockState::PottedAzureBluet
- | BlockState::PottedRedTulip
- | BlockState::PottedOrangeTulip
- | BlockState::PottedWhiteTulip
- | BlockState::PottedPinkTulip
- | BlockState::PottedOxeyeDaisy
- | BlockState::PottedCornflower
- | BlockState::PottedLilyOfTheValley
- | BlockState::PottedWitherRose
- | BlockState::PottedRedMushroom
- | BlockState::PottedBrownMushroom
- | BlockState::PottedDeadBush
- | BlockState::PottedCactus
- | BlockState::PottedBamboo
- | BlockState::PottedCrimsonFungus
- | BlockState::PottedWarpedFungus
- | BlockState::PottedCrimsonRoots
- | BlockState::PottedWarpedRoots
- | BlockState::PottedAzaleaBush
- | BlockState::PottedFloweringAzaleaBush => &SHAPE31,
- BlockState::SkeletonSkull__0
- | BlockState::SkeletonSkull__1
- | BlockState::SkeletonSkull__2
- | BlockState::SkeletonSkull__3
- | BlockState::SkeletonSkull__4
- | BlockState::SkeletonSkull__5
- | BlockState::SkeletonSkull__6
- | BlockState::SkeletonSkull__7
- | BlockState::SkeletonSkull__8
- | BlockState::SkeletonSkull__9
- | BlockState::SkeletonSkull__10
- | BlockState::SkeletonSkull__11
- | BlockState::SkeletonSkull__12
- | BlockState::SkeletonSkull__13
- | BlockState::SkeletonSkull__14
- | BlockState::SkeletonSkull__15
- | BlockState::WitherSkeletonSkull__0
- | BlockState::WitherSkeletonSkull__1
- | BlockState::WitherSkeletonSkull__2
- | BlockState::WitherSkeletonSkull__3
- | BlockState::WitherSkeletonSkull__4
- | BlockState::WitherSkeletonSkull__5
- | BlockState::WitherSkeletonSkull__6
- | BlockState::WitherSkeletonSkull__7
- | BlockState::WitherSkeletonSkull__8
- | BlockState::WitherSkeletonSkull__9
- | BlockState::WitherSkeletonSkull__10
- | BlockState::WitherSkeletonSkull__11
- | BlockState::WitherSkeletonSkull__12
- | BlockState::WitherSkeletonSkull__13
- | BlockState::WitherSkeletonSkull__14
- | BlockState::WitherSkeletonSkull__15
- | BlockState::ZombieHead__0
- | BlockState::ZombieHead__1
- | BlockState::ZombieHead__2
- | BlockState::ZombieHead__3
- | BlockState::ZombieHead__4
- | BlockState::ZombieHead__5
- | BlockState::ZombieHead__6
- | BlockState::ZombieHead__7
- | BlockState::ZombieHead__8
- | BlockState::ZombieHead__9
- | BlockState::ZombieHead__10
- | BlockState::ZombieHead__11
- | BlockState::ZombieHead__12
- | BlockState::ZombieHead__13
- | BlockState::ZombieHead__14
- | BlockState::ZombieHead__15
- | BlockState::PlayerHead__0
- | BlockState::PlayerHead__1
- | BlockState::PlayerHead__2
- | BlockState::PlayerHead__3
- | BlockState::PlayerHead__4
- | BlockState::PlayerHead__5
- | BlockState::PlayerHead__6
- | BlockState::PlayerHead__7
- | BlockState::PlayerHead__8
- | BlockState::PlayerHead__9
- | BlockState::PlayerHead__10
- | BlockState::PlayerHead__11
- | BlockState::PlayerHead__12
- | BlockState::PlayerHead__13
- | BlockState::PlayerHead__14
- | BlockState::PlayerHead__15
- | BlockState::CreeperHead__0
- | BlockState::CreeperHead__1
- | BlockState::CreeperHead__2
- | BlockState::CreeperHead__3
- | BlockState::CreeperHead__4
- | BlockState::CreeperHead__5
- | BlockState::CreeperHead__6
- | BlockState::CreeperHead__7
- | BlockState::CreeperHead__8
- | BlockState::CreeperHead__9
- | BlockState::CreeperHead__10
- | BlockState::CreeperHead__11
- | BlockState::CreeperHead__12
- | BlockState::CreeperHead__13
- | BlockState::CreeperHead__14
- | BlockState::CreeperHead__15
- | BlockState::DragonHead__0
- | BlockState::DragonHead__1
- | BlockState::DragonHead__2
- | BlockState::DragonHead__3
- | BlockState::DragonHead__4
- | BlockState::DragonHead__5
- | BlockState::DragonHead__6
- | BlockState::DragonHead__7
- | BlockState::DragonHead__8
- | BlockState::DragonHead__9
- | BlockState::DragonHead__10
- | BlockState::DragonHead__11
- | BlockState::DragonHead__12
- | BlockState::DragonHead__13
- | BlockState::DragonHead__14
- | BlockState::DragonHead__15 => &SHAPE172,
- BlockState::SkeletonWallSkull_North
- | BlockState::WitherSkeletonWallSkull_North
- | BlockState::ZombieWallHead_North
- | BlockState::PlayerWallHead_North
- | BlockState::CreeperWallHead_North
- | BlockState::DragonWallHead_North => &SHAPE173,
- BlockState::SkeletonWallSkull_South
- | BlockState::WitherSkeletonWallSkull_South
- | BlockState::ZombieWallHead_South
- | BlockState::PlayerWallHead_South
- | BlockState::CreeperWallHead_South
- | BlockState::DragonWallHead_South => &SHAPE174,
- BlockState::SkeletonWallSkull_West
- | BlockState::WitherSkeletonWallSkull_West
- | BlockState::ZombieWallHead_West
- | BlockState::PlayerWallHead_West
- | BlockState::CreeperWallHead_West
- | BlockState::DragonWallHead_West => &SHAPE175,
- BlockState::SkeletonWallSkull_East
- | BlockState::WitherSkeletonWallSkull_East
- | BlockState::ZombieWallHead_East
- | BlockState::PlayerWallHead_East
- | BlockState::CreeperWallHead_East
- | BlockState::DragonWallHead_East => &SHAPE176,
- BlockState::PiglinHead__0
- | BlockState::PiglinHead__1
- | BlockState::PiglinHead__2
- | BlockState::PiglinHead__3
- | BlockState::PiglinHead__4
- | BlockState::PiglinHead__5
- | BlockState::PiglinHead__6
- | BlockState::PiglinHead__7
- | BlockState::PiglinHead__8
- | BlockState::PiglinHead__9
- | BlockState::PiglinHead__10
- | BlockState::PiglinHead__11
- | BlockState::PiglinHead__12
- | BlockState::PiglinHead__13
- | BlockState::PiglinHead__14
- | BlockState::PiglinHead__15 => &SHAPE177,
- BlockState::PiglinWallHead_North => &SHAPE178,
- BlockState::PiglinWallHead_South => &SHAPE179,
- BlockState::PiglinWallHead_West => &SHAPE180,
- BlockState::PiglinWallHead_East => &SHAPE181,
- BlockState::Anvil_North
- | BlockState::Anvil_South
- | BlockState::ChippedAnvil_North
- | BlockState::ChippedAnvil_South
- | BlockState::DamagedAnvil_North
- | BlockState::DamagedAnvil_South => &SHAPE182,
- BlockState::Anvil_West
- | BlockState::Anvil_East
- | BlockState::ChippedAnvil_West
- | BlockState::ChippedAnvil_East
- | BlockState::DamagedAnvil_West
- | BlockState::DamagedAnvil_East => &SHAPE183,
- BlockState::Hopper_TrueDown | BlockState::Hopper_FalseDown => &SHAPE184,
- BlockState::Hopper_TrueNorth | BlockState::Hopper_FalseNorth => &SHAPE185,
- BlockState::Hopper_TrueSouth | BlockState::Hopper_FalseSouth => &SHAPE186,
- BlockState::Hopper_TrueWest | BlockState::Hopper_FalseWest => &SHAPE187,
- BlockState::Hopper_TrueEast | BlockState::Hopper_FalseEast => &SHAPE188,
- BlockState::PrismarineSlab_TopTrue
- | BlockState::PrismarineSlab_TopFalse
- | BlockState::PrismarineBrickSlab_TopTrue
- | BlockState::PrismarineBrickSlab_TopFalse
- | BlockState::DarkPrismarineSlab_TopTrue
- | BlockState::DarkPrismarineSlab_TopFalse
- | BlockState::OakSlab_TopTrue
- | BlockState::OakSlab_TopFalse
- | BlockState::SpruceSlab_TopTrue
- | BlockState::SpruceSlab_TopFalse
- | BlockState::BirchSlab_TopTrue
- | BlockState::BirchSlab_TopFalse
- | BlockState::JungleSlab_TopTrue
- | BlockState::JungleSlab_TopFalse
- | BlockState::AcaciaSlab_TopTrue
- | BlockState::AcaciaSlab_TopFalse
- | BlockState::DarkOakSlab_TopTrue
- | BlockState::DarkOakSlab_TopFalse
- | BlockState::MangroveSlab_TopTrue
- | BlockState::MangroveSlab_TopFalse
- | BlockState::BambooSlab_TopTrue
- | BlockState::BambooSlab_TopFalse
- | BlockState::BambooMosaicSlab_TopTrue
- | BlockState::BambooMosaicSlab_TopFalse
- | BlockState::StoneSlab_TopTrue
- | BlockState::StoneSlab_TopFalse
- | BlockState::SmoothStoneSlab_TopTrue
- | BlockState::SmoothStoneSlab_TopFalse
- | BlockState::SandstoneSlab_TopTrue
- | BlockState::SandstoneSlab_TopFalse
- | BlockState::CutSandstoneSlab_TopTrue
- | BlockState::CutSandstoneSlab_TopFalse
- | BlockState::PetrifiedOakSlab_TopTrue
- | BlockState::PetrifiedOakSlab_TopFalse
- | BlockState::CobblestoneSlab_TopTrue
- | BlockState::CobblestoneSlab_TopFalse
- | BlockState::BrickSlab_TopTrue
- | BlockState::BrickSlab_TopFalse
- | BlockState::StoneBrickSlab_TopTrue
- | BlockState::StoneBrickSlab_TopFalse
- | BlockState::MudBrickSlab_TopTrue
- | BlockState::MudBrickSlab_TopFalse
- | BlockState::NetherBrickSlab_TopTrue
- | BlockState::NetherBrickSlab_TopFalse
- | BlockState::QuartzSlab_TopTrue
- | BlockState::QuartzSlab_TopFalse
- | BlockState::RedSandstoneSlab_TopTrue
- | BlockState::RedSandstoneSlab_TopFalse
- | BlockState::CutRedSandstoneSlab_TopTrue
- | BlockState::CutRedSandstoneSlab_TopFalse
- | BlockState::PurpurSlab_TopTrue
- | BlockState::PurpurSlab_TopFalse
- | BlockState::PolishedGraniteSlab_TopTrue
- | BlockState::PolishedGraniteSlab_TopFalse
- | BlockState::SmoothRedSandstoneSlab_TopTrue
- | BlockState::SmoothRedSandstoneSlab_TopFalse
- | BlockState::MossyStoneBrickSlab_TopTrue
- | BlockState::MossyStoneBrickSlab_TopFalse
- | BlockState::PolishedDioriteSlab_TopTrue
- | BlockState::PolishedDioriteSlab_TopFalse
- | BlockState::MossyCobblestoneSlab_TopTrue
- | BlockState::MossyCobblestoneSlab_TopFalse
- | BlockState::EndStoneBrickSlab_TopTrue
- | BlockState::EndStoneBrickSlab_TopFalse
- | BlockState::SmoothSandstoneSlab_TopTrue
- | BlockState::SmoothSandstoneSlab_TopFalse
- | BlockState::SmoothQuartzSlab_TopTrue
- | BlockState::SmoothQuartzSlab_TopFalse
- | BlockState::GraniteSlab_TopTrue
- | BlockState::GraniteSlab_TopFalse
- | BlockState::AndesiteSlab_TopTrue
- | BlockState::AndesiteSlab_TopFalse
- | BlockState::RedNetherBrickSlab_TopTrue
- | BlockState::RedNetherBrickSlab_TopFalse
- | BlockState::PolishedAndesiteSlab_TopTrue
- | BlockState::PolishedAndesiteSlab_TopFalse
- | BlockState::DioriteSlab_TopTrue
- | BlockState::DioriteSlab_TopFalse
- | BlockState::CrimsonSlab_TopTrue
- | BlockState::CrimsonSlab_TopFalse
- | BlockState::WarpedSlab_TopTrue
- | BlockState::WarpedSlab_TopFalse
- | BlockState::BlackstoneSlab_TopTrue
- | BlockState::BlackstoneSlab_TopFalse
- | BlockState::PolishedBlackstoneBrickSlab_TopTrue
- | BlockState::PolishedBlackstoneBrickSlab_TopFalse
- | BlockState::PolishedBlackstoneSlab_TopTrue
- | BlockState::PolishedBlackstoneSlab_TopFalse
- | BlockState::OxidizedCutCopperSlab_TopTrue
- | BlockState::OxidizedCutCopperSlab_TopFalse
- | BlockState::WeatheredCutCopperSlab_TopTrue
- | BlockState::WeatheredCutCopperSlab_TopFalse
- | BlockState::ExposedCutCopperSlab_TopTrue
- | BlockState::ExposedCutCopperSlab_TopFalse
- | BlockState::CutCopperSlab_TopTrue
- | BlockState::CutCopperSlab_TopFalse
- | BlockState::WaxedOxidizedCutCopperSlab_TopTrue
- | BlockState::WaxedOxidizedCutCopperSlab_TopFalse
- | BlockState::WaxedWeatheredCutCopperSlab_TopTrue
- | BlockState::WaxedWeatheredCutCopperSlab_TopFalse
- | BlockState::WaxedExposedCutCopperSlab_TopTrue
- | BlockState::WaxedExposedCutCopperSlab_TopFalse
- | BlockState::WaxedCutCopperSlab_TopTrue
- | BlockState::WaxedCutCopperSlab_TopFalse
- | BlockState::CobbledDeepslateSlab_TopTrue
- | BlockState::CobbledDeepslateSlab_TopFalse
- | BlockState::PolishedDeepslateSlab_TopTrue
- | BlockState::PolishedDeepslateSlab_TopFalse
- | BlockState::DeepslateTileSlab_TopTrue
- | BlockState::DeepslateTileSlab_TopFalse
- | BlockState::DeepslateBrickSlab_TopTrue
- | BlockState::DeepslateBrickSlab_TopFalse => &SHAPE34,
- BlockState::WhiteCarpet
- | BlockState::OrangeCarpet
- | BlockState::MagentaCarpet
- | BlockState::LightBlueCarpet
- | BlockState::YellowCarpet
- | BlockState::LimeCarpet
- | BlockState::PinkCarpet
- | BlockState::GrayCarpet
- | BlockState::LightGrayCarpet
- | BlockState::CyanCarpet
- | BlockState::PurpleCarpet
- | BlockState::BlueCarpet
- | BlockState::BrownCarpet
- | BlockState::GreenCarpet
- | BlockState::RedCarpet
- | BlockState::BlackCarpet
- | BlockState::MossCarpet => &SHAPE32,
- BlockState::EndRod_North
- | BlockState::EndRod_South
- | BlockState::LightningRod_NorthTrueTrue
- | BlockState::LightningRod_NorthTrueFalse
- | BlockState::LightningRod_NorthFalseTrue
- | BlockState::LightningRod_NorthFalseFalse
- | BlockState::LightningRod_SouthTrueTrue
- | BlockState::LightningRod_SouthTrueFalse
- | BlockState::LightningRod_SouthFalseTrue
- | BlockState::LightningRod_SouthFalseFalse => &SHAPE16,
- BlockState::EndRod_East
- | BlockState::EndRod_West
- | BlockState::LightningRod_EastTrueTrue
- | BlockState::LightningRod_EastTrueFalse
- | BlockState::LightningRod_EastFalseTrue
- | BlockState::LightningRod_EastFalseFalse
- | BlockState::LightningRod_WestTrueTrue
- | BlockState::LightningRod_WestTrueFalse
- | BlockState::LightningRod_WestFalseTrue
- | BlockState::LightningRod_WestFalseFalse => &SHAPE19,
- BlockState::EndRod_Up
- | BlockState::EndRod_Down
- | BlockState::LightningRod_UpTrueTrue
- | BlockState::LightningRod_UpTrueFalse
- | BlockState::LightningRod_UpFalseTrue
- | BlockState::LightningRod_UpFalseFalse
- | BlockState::LightningRod_DownTrueTrue
- | BlockState::LightningRod_DownTrueFalse
- | BlockState::LightningRod_DownFalseTrue
- | BlockState::LightningRod_DownFalseFalse => &SHAPE26,
- BlockState::ChorusPlant_TrueTrueTrueTrueTrueTrue => &SHAPE189,
- BlockState::ChorusPlant_TrueTrueTrueTrueTrueFalse => &SHAPE190,
- BlockState::ChorusPlant_TrueTrueTrueTrueFalseTrue => &SHAPE191,
- BlockState::ChorusPlant_TrueTrueTrueTrueFalseFalse => &SHAPE192,
- BlockState::ChorusPlant_TrueTrueTrueFalseTrueTrue => &SHAPE193,
- BlockState::ChorusPlant_TrueTrueTrueFalseTrueFalse => &SHAPE194,
- BlockState::ChorusPlant_TrueTrueTrueFalseFalseTrue => &SHAPE195,
- BlockState::ChorusPlant_TrueTrueTrueFalseFalseFalse => &SHAPE196,
- BlockState::ChorusPlant_TrueTrueFalseTrueTrueTrue => &SHAPE197,
- BlockState::ChorusPlant_TrueTrueFalseTrueTrueFalse => &SHAPE198,
- BlockState::ChorusPlant_TrueTrueFalseTrueFalseTrue => &SHAPE199,
- BlockState::ChorusPlant_TrueTrueFalseTrueFalseFalse => &SHAPE200,
- BlockState::ChorusPlant_TrueTrueFalseFalseTrueTrue => &SHAPE201,
- BlockState::ChorusPlant_TrueTrueFalseFalseTrueFalse => &SHAPE202,
- BlockState::ChorusPlant_TrueTrueFalseFalseFalseTrue => &SHAPE203,
- BlockState::ChorusPlant_TrueTrueFalseFalseFalseFalse => &SHAPE204,
- BlockState::ChorusPlant_TrueFalseTrueTrueTrueTrue => &SHAPE205,
- BlockState::ChorusPlant_TrueFalseTrueTrueTrueFalse => &SHAPE206,
- BlockState::ChorusPlant_TrueFalseTrueTrueFalseTrue => &SHAPE207,
- BlockState::ChorusPlant_TrueFalseTrueTrueFalseFalse => &SHAPE208,
- BlockState::ChorusPlant_TrueFalseTrueFalseTrueTrue => &SHAPE209,
- BlockState::ChorusPlant_TrueFalseTrueFalseTrueFalse => &SHAPE210,
- BlockState::ChorusPlant_TrueFalseTrueFalseFalseTrue => &SHAPE211,
- BlockState::ChorusPlant_TrueFalseTrueFalseFalseFalse => &SHAPE212,
- BlockState::ChorusPlant_TrueFalseFalseTrueTrueTrue => &SHAPE213,
- BlockState::ChorusPlant_TrueFalseFalseTrueTrueFalse => &SHAPE214,
- BlockState::ChorusPlant_TrueFalseFalseTrueFalseTrue => &SHAPE215,
- BlockState::ChorusPlant_TrueFalseFalseTrueFalseFalse => &SHAPE216,
- BlockState::ChorusPlant_TrueFalseFalseFalseTrueTrue => &SHAPE217,
- BlockState::ChorusPlant_TrueFalseFalseFalseTrueFalse
- | BlockState::PointedDripstone_MiddleUpTrue
- | BlockState::PointedDripstone_MiddleUpFalse
- | BlockState::PointedDripstone_MiddleDownTrue
- | BlockState::PointedDripstone_MiddleDownFalse => &SHAPE73,
- BlockState::ChorusPlant_TrueFalseFalseFalseFalseTrue => &SHAPE218,
- BlockState::ChorusPlant_TrueFalseFalseFalseFalseFalse => &SHAPE219,
- BlockState::ChorusPlant_FalseTrueTrueTrueTrueTrue => &SHAPE220,
- BlockState::ChorusPlant_FalseTrueTrueTrueTrueFalse => &SHAPE221,
- BlockState::ChorusPlant_FalseTrueTrueTrueFalseTrue => &SHAPE222,
- BlockState::ChorusPlant_FalseTrueTrueTrueFalseFalse => &SHAPE223,
- BlockState::ChorusPlant_FalseTrueTrueFalseTrueTrue => &SHAPE224,
- BlockState::ChorusPlant_FalseTrueTrueFalseTrueFalse => &SHAPE225,
- BlockState::ChorusPlant_FalseTrueTrueFalseFalseTrue => &SHAPE226,
- BlockState::ChorusPlant_FalseTrueTrueFalseFalseFalse => &SHAPE227,
- BlockState::ChorusPlant_FalseTrueFalseTrueTrueTrue => &SHAPE228,
- BlockState::ChorusPlant_FalseTrueFalseTrueTrueFalse => &SHAPE229,
- BlockState::ChorusPlant_FalseTrueFalseTrueFalseTrue => &SHAPE230,
- BlockState::ChorusPlant_FalseTrueFalseTrueFalseFalse => &SHAPE231,
- BlockState::ChorusPlant_FalseTrueFalseFalseTrueTrue => &SHAPE232,
- BlockState::ChorusPlant_FalseTrueFalseFalseTrueFalse => &SHAPE233,
- BlockState::ChorusPlant_FalseTrueFalseFalseFalseTrue => &SHAPE234,
- BlockState::ChorusPlant_FalseTrueFalseFalseFalseFalse => &SHAPE235,
- BlockState::ChorusPlant_FalseFalseTrueTrueTrueTrue => &SHAPE236,
- BlockState::ChorusPlant_FalseFalseTrueTrueTrueFalse => &SHAPE237,
- BlockState::ChorusPlant_FalseFalseTrueTrueFalseTrue => &SHAPE238,
- BlockState::ChorusPlant_FalseFalseTrueTrueFalseFalse => &SHAPE239,
- BlockState::ChorusPlant_FalseFalseTrueFalseTrueTrue => &SHAPE240,
- BlockState::ChorusPlant_FalseFalseTrueFalseTrueFalse => &SHAPE241,
- BlockState::ChorusPlant_FalseFalseTrueFalseFalseTrue => &SHAPE242,
- BlockState::ChorusPlant_FalseFalseTrueFalseFalseFalse => &SHAPE243,
- BlockState::ChorusPlant_FalseFalseFalseTrueTrueTrue => &SHAPE244,
- BlockState::ChorusPlant_FalseFalseFalseTrueTrueFalse => &SHAPE245,
- BlockState::ChorusPlant_FalseFalseFalseTrueFalseTrue => &SHAPE246,
- BlockState::ChorusPlant_FalseFalseFalseTrueFalseFalse => &SHAPE247,
- BlockState::ChorusPlant_FalseFalseFalseFalseTrueTrue => &SHAPE248,
- BlockState::ChorusPlant_FalseFalseFalseFalseTrueFalse => &SHAPE249,
- BlockState::ChorusPlant_FalseFalseFalseFalseFalseTrue => &SHAPE250,
- BlockState::ChorusPlant_FalseFalseFalseFalseFalseFalse => &SHAPE251,
- BlockState::TurtleEgg__1_0
- | BlockState::TurtleEgg__1_1
- | BlockState::TurtleEgg__1_2 => &SHAPE253,
- BlockState::TurtleEgg__2_0
- | BlockState::TurtleEgg__2_1
- | BlockState::TurtleEgg__2_2
- | BlockState::TurtleEgg__3_0
- | BlockState::TurtleEgg__3_1
- | BlockState::TurtleEgg__3_2
- | BlockState::TurtleEgg__4_0
- | BlockState::TurtleEgg__4_1
- | BlockState::TurtleEgg__4_2 => &SHAPE254,
- BlockState::SeaPickle__1True | BlockState::SeaPickle__1False => &SHAPE255,
- BlockState::SeaPickle__2True | BlockState::SeaPickle__2False => &SHAPE256,
- BlockState::SeaPickle__3True | BlockState::SeaPickle__3False => &SHAPE257,
- BlockState::SeaPickle__4True | BlockState::SeaPickle__4False => &SHAPE258,
- BlockState::Conduit_True | BlockState::Conduit_False => &SHAPE252,
- BlockState::Scaffolding_True_0True
- | BlockState::Scaffolding_True_0False
- | BlockState::Scaffolding_True_1True
- | BlockState::Scaffolding_True_1False
- | BlockState::Scaffolding_True_2True
- | BlockState::Scaffolding_True_2False
- | BlockState::Scaffolding_True_3True
- | BlockState::Scaffolding_True_3False
- | BlockState::Scaffolding_True_4True
- | BlockState::Scaffolding_True_4False
- | BlockState::Scaffolding_True_5True
- | BlockState::Scaffolding_True_5False
- | BlockState::Scaffolding_True_6True
- | BlockState::Scaffolding_True_6False
- | BlockState::Scaffolding_True_7True
- | BlockState::Scaffolding_True_7False
- | BlockState::Scaffolding_False_0True
- | BlockState::Scaffolding_False_0False
- | BlockState::Scaffolding_False_1True
- | BlockState::Scaffolding_False_1False
- | BlockState::Scaffolding_False_2True
- | BlockState::Scaffolding_False_2False
- | BlockState::Scaffolding_False_3True
- | BlockState::Scaffolding_False_3False
- | BlockState::Scaffolding_False_4True
- | BlockState::Scaffolding_False_4False
- | BlockState::Scaffolding_False_5True
- | BlockState::Scaffolding_False_5False
- | BlockState::Scaffolding_False_6True
- | BlockState::Scaffolding_False_6False
- | BlockState::Scaffolding_False_7True
- | BlockState::Scaffolding_False_7False => &SHAPE260,
- BlockState::Grindstone_FloorNorth | BlockState::Grindstone_FloorSouth => &SHAPE261,
- BlockState::Grindstone_FloorWest | BlockState::Grindstone_FloorEast => &SHAPE262,
- BlockState::Grindstone_WallNorth => &SHAPE263,
- BlockState::Grindstone_WallSouth => &SHAPE264,
- BlockState::Grindstone_WallWest => &SHAPE265,
- BlockState::Grindstone_WallEast => &SHAPE266,
- BlockState::Grindstone_CeilingNorth | BlockState::Grindstone_CeilingSouth => &SHAPE267,
- BlockState::Grindstone_CeilingWest | BlockState::Grindstone_CeilingEast => &SHAPE268,
- BlockState::Lectern_NorthTrueTrue
- | BlockState::Lectern_NorthTrueFalse
- | BlockState::Lectern_NorthFalseTrue
- | BlockState::Lectern_NorthFalseFalse
- | BlockState::Lectern_SouthTrueTrue
- | BlockState::Lectern_SouthTrueFalse
- | BlockState::Lectern_SouthFalseTrue
- | BlockState::Lectern_SouthFalseFalse
- | BlockState::Lectern_WestTrueTrue
- | BlockState::Lectern_WestTrueFalse
- | BlockState::Lectern_WestFalseTrue
- | BlockState::Lectern_WestFalseFalse
- | BlockState::Lectern_EastTrueTrue
- | BlockState::Lectern_EastTrueFalse
- | BlockState::Lectern_EastFalseTrue
- | BlockState::Lectern_EastFalseFalse => &SHAPE269,
- BlockState::Stonecutter_North
- | BlockState::Stonecutter_South
- | BlockState::Stonecutter_West
- | BlockState::Stonecutter_East => &SHAPE171,
- BlockState::Bell_FloorNorthTrue
- | BlockState::Bell_FloorNorthFalse
- | BlockState::Bell_FloorSouthTrue
- | BlockState::Bell_FloorSouthFalse => &SHAPE270,
- BlockState::Bell_FloorWestTrue
- | BlockState::Bell_FloorWestFalse
- | BlockState::Bell_FloorEastTrue
- | BlockState::Bell_FloorEastFalse => &SHAPE271,
- BlockState::Bell_CeilingNorthTrue
- | BlockState::Bell_CeilingNorthFalse
- | BlockState::Bell_CeilingSouthTrue
- | BlockState::Bell_CeilingSouthFalse
- | BlockState::Bell_CeilingWestTrue
- | BlockState::Bell_CeilingWestFalse
- | BlockState::Bell_CeilingEastTrue
- | BlockState::Bell_CeilingEastFalse => &SHAPE272,
- BlockState::Bell_SingleWallNorthTrue | BlockState::Bell_SingleWallNorthFalse => {
- &SHAPE273
+ 6532 | 6534 | 6570 | 6572 | 8996 | 8998 | 9028 | 9030 | 9060 | 9062 | 9092 | 9094
+ | 9124 | 9126 | 9156 | 9158 | 9188 | 9190 | 9220 | 9222 | 9252 | 9254 | 9284 | 9286
+ | 9316 | 9318 | 9348 | 9350 | 9380 | 9382 | 9412 | 9414 | 9444 | 9446 | 9476 | 9478 => {
+ &SHAPE113
}
- BlockState::Bell_SingleWallSouthTrue | BlockState::Bell_SingleWallSouthFalse => {
- &SHAPE274
+ 6533 | 6535 | 6571 | 6573 | 8997 | 8999 | 9029 | 9031 | 9061 | 9063 | 9093 | 9095
+ | 9125 | 9127 | 9157 | 9159 | 9189 | 9191 | 9221 | 9223 | 9253 | 9255 | 9285 | 9287
+ | 9317 | 9319 | 9349 | 9351 | 9381 | 9383 | 9413 | 9415 | 9445 | 9447 | 9477 | 9479 => {
+ &SHAPE114
}
- BlockState::Bell_SingleWallWestTrue | BlockState::Bell_SingleWallWestFalse => &SHAPE275,
- BlockState::Bell_SingleWallEastTrue | BlockState::Bell_SingleWallEastFalse => &SHAPE276,
- BlockState::Bell_DoubleWallNorthTrue
- | BlockState::Bell_DoubleWallNorthFalse
- | BlockState::Bell_DoubleWallSouthTrue
- | BlockState::Bell_DoubleWallSouthFalse => &SHAPE277,
- BlockState::Bell_DoubleWallWestTrue
- | BlockState::Bell_DoubleWallWestFalse
- | BlockState::Bell_DoubleWallEastTrue
- | BlockState::Bell_DoubleWallEastFalse => &SHAPE278,
- BlockState::Lantern_TrueTrue
- | BlockState::Lantern_TrueFalse
- | BlockState::SoulLantern_TrueTrue
- | BlockState::SoulLantern_TrueFalse => &SHAPE279,
- BlockState::Lantern_FalseTrue
- | BlockState::Lantern_FalseFalse
- | BlockState::SoulLantern_FalseTrue
- | BlockState::SoulLantern_FalseFalse => &SHAPE280,
- BlockState::Campfire_NorthTrueTrueTrue
- | BlockState::Campfire_NorthTrueTrueFalse
- | BlockState::Campfire_NorthTrueFalseTrue
- | BlockState::Campfire_NorthTrueFalseFalse
- | BlockState::Campfire_NorthFalseTrueTrue
- | BlockState::Campfire_NorthFalseTrueFalse
- | BlockState::Campfire_NorthFalseFalseTrue
- | BlockState::Campfire_NorthFalseFalseFalse
- | BlockState::Campfire_SouthTrueTrueTrue
- | BlockState::Campfire_SouthTrueTrueFalse
- | BlockState::Campfire_SouthTrueFalseTrue
- | BlockState::Campfire_SouthTrueFalseFalse
- | BlockState::Campfire_SouthFalseTrueTrue
- | BlockState::Campfire_SouthFalseTrueFalse
- | BlockState::Campfire_SouthFalseFalseTrue
- | BlockState::Campfire_SouthFalseFalseFalse
- | BlockState::Campfire_WestTrueTrueTrue
- | BlockState::Campfire_WestTrueTrueFalse
- | BlockState::Campfire_WestTrueFalseTrue
- | BlockState::Campfire_WestTrueFalseFalse
- | BlockState::Campfire_WestFalseTrueTrue
- | BlockState::Campfire_WestFalseTrueFalse
- | BlockState::Campfire_WestFalseFalseTrue
- | BlockState::Campfire_WestFalseFalseFalse
- | BlockState::Campfire_EastTrueTrueTrue
- | BlockState::Campfire_EastTrueTrueFalse
- | BlockState::Campfire_EastTrueFalseTrue
- | BlockState::Campfire_EastTrueFalseFalse
- | BlockState::Campfire_EastFalseTrueTrue
- | BlockState::Campfire_EastFalseTrueFalse
- | BlockState::Campfire_EastFalseFalseTrue
- | BlockState::Campfire_EastFalseFalseFalse
- | BlockState::SoulCampfire_NorthTrueTrueTrue
- | BlockState::SoulCampfire_NorthTrueTrueFalse
- | BlockState::SoulCampfire_NorthTrueFalseTrue
- | BlockState::SoulCampfire_NorthTrueFalseFalse
- | BlockState::SoulCampfire_NorthFalseTrueTrue
- | BlockState::SoulCampfire_NorthFalseTrueFalse
- | BlockState::SoulCampfire_NorthFalseFalseTrue
- | BlockState::SoulCampfire_NorthFalseFalseFalse
- | BlockState::SoulCampfire_SouthTrueTrueTrue
- | BlockState::SoulCampfire_SouthTrueTrueFalse
- | BlockState::SoulCampfire_SouthTrueFalseTrue
- | BlockState::SoulCampfire_SouthTrueFalseFalse
- | BlockState::SoulCampfire_SouthFalseTrueTrue
- | BlockState::SoulCampfire_SouthFalseTrueFalse
- | BlockState::SoulCampfire_SouthFalseFalseTrue
- | BlockState::SoulCampfire_SouthFalseFalseFalse
- | BlockState::SoulCampfire_WestTrueTrueTrue
- | BlockState::SoulCampfire_WestTrueTrueFalse
- | BlockState::SoulCampfire_WestTrueFalseTrue
- | BlockState::SoulCampfire_WestTrueFalseFalse
- | BlockState::SoulCampfire_WestFalseTrueTrue
- | BlockState::SoulCampfire_WestFalseTrueFalse
- | BlockState::SoulCampfire_WestFalseFalseTrue
- | BlockState::SoulCampfire_WestFalseFalseFalse
- | BlockState::SoulCampfire_EastTrueTrueTrue
- | BlockState::SoulCampfire_EastTrueTrueFalse
- | BlockState::SoulCampfire_EastTrueFalseTrue
- | BlockState::SoulCampfire_EastTrueFalseFalse
- | BlockState::SoulCampfire_EastFalseTrueTrue
- | BlockState::SoulCampfire_EastFalseTrueFalse
- | BlockState::SoulCampfire_EastFalseFalseTrue
- | BlockState::SoulCampfire_EastFalseFalseFalse => &SHAPE170,
- BlockState::Composter__0
- | BlockState::Composter__1
- | BlockState::Composter__2
- | BlockState::Composter__3
- | BlockState::Composter__4
- | BlockState::Composter__5
- | BlockState::Composter__6
- | BlockState::Composter__7
- | BlockState::Composter__8 => &SHAPE281,
- BlockState::Candle__1TrueTrue
- | BlockState::Candle__1TrueFalse
- | BlockState::Candle__1FalseTrue
- | BlockState::Candle__1FalseFalse
- | BlockState::WhiteCandle__1TrueTrue
- | BlockState::WhiteCandle__1TrueFalse
- | BlockState::WhiteCandle__1FalseTrue
- | BlockState::WhiteCandle__1FalseFalse
- | BlockState::OrangeCandle__1TrueTrue
- | BlockState::OrangeCandle__1TrueFalse
- | BlockState::OrangeCandle__1FalseTrue
- | BlockState::OrangeCandle__1FalseFalse
- | BlockState::MagentaCandle__1TrueTrue
- | BlockState::MagentaCandle__1TrueFalse
- | BlockState::MagentaCandle__1FalseTrue
- | BlockState::MagentaCandle__1FalseFalse
- | BlockState::LightBlueCandle__1TrueTrue
- | BlockState::LightBlueCandle__1TrueFalse
- | BlockState::LightBlueCandle__1FalseTrue
- | BlockState::LightBlueCandle__1FalseFalse
- | BlockState::YellowCandle__1TrueTrue
- | BlockState::YellowCandle__1TrueFalse
- | BlockState::YellowCandle__1FalseTrue
- | BlockState::YellowCandle__1FalseFalse
- | BlockState::LimeCandle__1TrueTrue
- | BlockState::LimeCandle__1TrueFalse
- | BlockState::LimeCandle__1FalseTrue
- | BlockState::LimeCandle__1FalseFalse
- | BlockState::PinkCandle__1TrueTrue
- | BlockState::PinkCandle__1TrueFalse
- | BlockState::PinkCandle__1FalseTrue
- | BlockState::PinkCandle__1FalseFalse
- | BlockState::GrayCandle__1TrueTrue
- | BlockState::GrayCandle__1TrueFalse
- | BlockState::GrayCandle__1FalseTrue
- | BlockState::GrayCandle__1FalseFalse
- | BlockState::LightGrayCandle__1TrueTrue
- | BlockState::LightGrayCandle__1TrueFalse
- | BlockState::LightGrayCandle__1FalseTrue
- | BlockState::LightGrayCandle__1FalseFalse
- | BlockState::CyanCandle__1TrueTrue
- | BlockState::CyanCandle__1TrueFalse
- | BlockState::CyanCandle__1FalseTrue
- | BlockState::CyanCandle__1FalseFalse
- | BlockState::PurpleCandle__1TrueTrue
- | BlockState::PurpleCandle__1TrueFalse
- | BlockState::PurpleCandle__1FalseTrue
- | BlockState::PurpleCandle__1FalseFalse
- | BlockState::BlueCandle__1TrueTrue
- | BlockState::BlueCandle__1TrueFalse
- | BlockState::BlueCandle__1FalseTrue
- | BlockState::BlueCandle__1FalseFalse
- | BlockState::BrownCandle__1TrueTrue
- | BlockState::BrownCandle__1TrueFalse
- | BlockState::BrownCandle__1FalseTrue
- | BlockState::BrownCandle__1FalseFalse
- | BlockState::GreenCandle__1TrueTrue
- | BlockState::GreenCandle__1TrueFalse
- | BlockState::GreenCandle__1FalseTrue
- | BlockState::GreenCandle__1FalseFalse
- | BlockState::RedCandle__1TrueTrue
- | BlockState::RedCandle__1TrueFalse
- | BlockState::RedCandle__1FalseTrue
- | BlockState::RedCandle__1FalseFalse
- | BlockState::BlackCandle__1TrueTrue
- | BlockState::BlackCandle__1TrueFalse
- | BlockState::BlackCandle__1FalseTrue
- | BlockState::BlackCandle__1FalseFalse => &SHAPE121,
- BlockState::Candle__2TrueTrue
- | BlockState::Candle__2TrueFalse
- | BlockState::Candle__2FalseTrue
- | BlockState::Candle__2FalseFalse
- | BlockState::WhiteCandle__2TrueTrue
- | BlockState::WhiteCandle__2TrueFalse
- | BlockState::WhiteCandle__2FalseTrue
- | BlockState::WhiteCandle__2FalseFalse
- | BlockState::OrangeCandle__2TrueTrue
- | BlockState::OrangeCandle__2TrueFalse
- | BlockState::OrangeCandle__2FalseTrue
- | BlockState::OrangeCandle__2FalseFalse
- | BlockState::MagentaCandle__2TrueTrue
- | BlockState::MagentaCandle__2TrueFalse
- | BlockState::MagentaCandle__2FalseTrue
- | BlockState::MagentaCandle__2FalseFalse
- | BlockState::LightBlueCandle__2TrueTrue
- | BlockState::LightBlueCandle__2TrueFalse
- | BlockState::LightBlueCandle__2FalseTrue
- | BlockState::LightBlueCandle__2FalseFalse
- | BlockState::YellowCandle__2TrueTrue
- | BlockState::YellowCandle__2TrueFalse
- | BlockState::YellowCandle__2FalseTrue
- | BlockState::YellowCandle__2FalseFalse
- | BlockState::LimeCandle__2TrueTrue
- | BlockState::LimeCandle__2TrueFalse
- | BlockState::LimeCandle__2FalseTrue
- | BlockState::LimeCandle__2FalseFalse
- | BlockState::PinkCandle__2TrueTrue
- | BlockState::PinkCandle__2TrueFalse
- | BlockState::PinkCandle__2FalseTrue
- | BlockState::PinkCandle__2FalseFalse
- | BlockState::GrayCandle__2TrueTrue
- | BlockState::GrayCandle__2TrueFalse
- | BlockState::GrayCandle__2FalseTrue
- | BlockState::GrayCandle__2FalseFalse
- | BlockState::LightGrayCandle__2TrueTrue
- | BlockState::LightGrayCandle__2TrueFalse
- | BlockState::LightGrayCandle__2FalseTrue
- | BlockState::LightGrayCandle__2FalseFalse
- | BlockState::CyanCandle__2TrueTrue
- | BlockState::CyanCandle__2TrueFalse
- | BlockState::CyanCandle__2FalseTrue
- | BlockState::CyanCandle__2FalseFalse
- | BlockState::PurpleCandle__2TrueTrue
- | BlockState::PurpleCandle__2TrueFalse
- | BlockState::PurpleCandle__2FalseTrue
- | BlockState::PurpleCandle__2FalseFalse
- | BlockState::BlueCandle__2TrueTrue
- | BlockState::BlueCandle__2TrueFalse
- | BlockState::BlueCandle__2FalseTrue
- | BlockState::BlueCandle__2FalseFalse
- | BlockState::BrownCandle__2TrueTrue
- | BlockState::BrownCandle__2TrueFalse
- | BlockState::BrownCandle__2FalseTrue
- | BlockState::BrownCandle__2FalseFalse
- | BlockState::GreenCandle__2TrueTrue
- | BlockState::GreenCandle__2TrueFalse
- | BlockState::GreenCandle__2FalseTrue
- | BlockState::GreenCandle__2FalseFalse
- | BlockState::RedCandle__2TrueTrue
- | BlockState::RedCandle__2TrueFalse
- | BlockState::RedCandle__2FalseTrue
- | BlockState::RedCandle__2FalseFalse
- | BlockState::BlackCandle__2TrueTrue
- | BlockState::BlackCandle__2TrueFalse
- | BlockState::BlackCandle__2FalseTrue
- | BlockState::BlackCandle__2FalseFalse => &SHAPE282,
- BlockState::Candle__3TrueTrue
- | BlockState::Candle__3TrueFalse
- | BlockState::Candle__3FalseTrue
- | BlockState::Candle__3FalseFalse
- | BlockState::WhiteCandle__3TrueTrue
- | BlockState::WhiteCandle__3TrueFalse
- | BlockState::WhiteCandle__3FalseTrue
- | BlockState::WhiteCandle__3FalseFalse
- | BlockState::OrangeCandle__3TrueTrue
- | BlockState::OrangeCandle__3TrueFalse
- | BlockState::OrangeCandle__3FalseTrue
- | BlockState::OrangeCandle__3FalseFalse
- | BlockState::MagentaCandle__3TrueTrue
- | BlockState::MagentaCandle__3TrueFalse
- | BlockState::MagentaCandle__3FalseTrue
- | BlockState::MagentaCandle__3FalseFalse
- | BlockState::LightBlueCandle__3TrueTrue
- | BlockState::LightBlueCandle__3TrueFalse
- | BlockState::LightBlueCandle__3FalseTrue
- | BlockState::LightBlueCandle__3FalseFalse
- | BlockState::YellowCandle__3TrueTrue
- | BlockState::YellowCandle__3TrueFalse
- | BlockState::YellowCandle__3FalseTrue
- | BlockState::YellowCandle__3FalseFalse
- | BlockState::LimeCandle__3TrueTrue
- | BlockState::LimeCandle__3TrueFalse
- | BlockState::LimeCandle__3FalseTrue
- | BlockState::LimeCandle__3FalseFalse
- | BlockState::PinkCandle__3TrueTrue
- | BlockState::PinkCandle__3TrueFalse
- | BlockState::PinkCandle__3FalseTrue
- | BlockState::PinkCandle__3FalseFalse
- | BlockState::GrayCandle__3TrueTrue
- | BlockState::GrayCandle__3TrueFalse
- | BlockState::GrayCandle__3FalseTrue
- | BlockState::GrayCandle__3FalseFalse
- | BlockState::LightGrayCandle__3TrueTrue
- | BlockState::LightGrayCandle__3TrueFalse
- | BlockState::LightGrayCandle__3FalseTrue
- | BlockState::LightGrayCandle__3FalseFalse
- | BlockState::CyanCandle__3TrueTrue
- | BlockState::CyanCandle__3TrueFalse
- | BlockState::CyanCandle__3FalseTrue
- | BlockState::CyanCandle__3FalseFalse
- | BlockState::PurpleCandle__3TrueTrue
- | BlockState::PurpleCandle__3TrueFalse
- | BlockState::PurpleCandle__3FalseTrue
- | BlockState::PurpleCandle__3FalseFalse
- | BlockState::BlueCandle__3TrueTrue
- | BlockState::BlueCandle__3TrueFalse
- | BlockState::BlueCandle__3FalseTrue
- | BlockState::BlueCandle__3FalseFalse
- | BlockState::BrownCandle__3TrueTrue
- | BlockState::BrownCandle__3TrueFalse
- | BlockState::BrownCandle__3FalseTrue
- | BlockState::BrownCandle__3FalseFalse
- | BlockState::GreenCandle__3TrueTrue
- | BlockState::GreenCandle__3TrueFalse
- | BlockState::GreenCandle__3FalseTrue
- | BlockState::GreenCandle__3FalseFalse
- | BlockState::RedCandle__3TrueTrue
- | BlockState::RedCandle__3TrueFalse
- | BlockState::RedCandle__3FalseTrue
- | BlockState::RedCandle__3FalseFalse
- | BlockState::BlackCandle__3TrueTrue
- | BlockState::BlackCandle__3TrueFalse
- | BlockState::BlackCandle__3FalseTrue
- | BlockState::BlackCandle__3FalseFalse => &SHAPE283,
- BlockState::Candle__4TrueTrue
- | BlockState::Candle__4TrueFalse
- | BlockState::Candle__4FalseTrue
- | BlockState::Candle__4FalseFalse
- | BlockState::WhiteCandle__4TrueTrue
- | BlockState::WhiteCandle__4TrueFalse
- | BlockState::WhiteCandle__4FalseTrue
- | BlockState::WhiteCandle__4FalseFalse
- | BlockState::OrangeCandle__4TrueTrue
- | BlockState::OrangeCandle__4TrueFalse
- | BlockState::OrangeCandle__4FalseTrue
- | BlockState::OrangeCandle__4FalseFalse
- | BlockState::MagentaCandle__4TrueTrue
- | BlockState::MagentaCandle__4TrueFalse
- | BlockState::MagentaCandle__4FalseTrue
- | BlockState::MagentaCandle__4FalseFalse
- | BlockState::LightBlueCandle__4TrueTrue
- | BlockState::LightBlueCandle__4TrueFalse
- | BlockState::LightBlueCandle__4FalseTrue
- | BlockState::LightBlueCandle__4FalseFalse
- | BlockState::YellowCandle__4TrueTrue
- | BlockState::YellowCandle__4TrueFalse
- | BlockState::YellowCandle__4FalseTrue
- | BlockState::YellowCandle__4FalseFalse
- | BlockState::LimeCandle__4TrueTrue
- | BlockState::LimeCandle__4TrueFalse
- | BlockState::LimeCandle__4FalseTrue
- | BlockState::LimeCandle__4FalseFalse
- | BlockState::PinkCandle__4TrueTrue
- | BlockState::PinkCandle__4TrueFalse
- | BlockState::PinkCandle__4FalseTrue
- | BlockState::PinkCandle__4FalseFalse
- | BlockState::GrayCandle__4TrueTrue
- | BlockState::GrayCandle__4TrueFalse
- | BlockState::GrayCandle__4FalseTrue
- | BlockState::GrayCandle__4FalseFalse
- | BlockState::LightGrayCandle__4TrueTrue
- | BlockState::LightGrayCandle__4TrueFalse
- | BlockState::LightGrayCandle__4FalseTrue
- | BlockState::LightGrayCandle__4FalseFalse
- | BlockState::CyanCandle__4TrueTrue
- | BlockState::CyanCandle__4TrueFalse
- | BlockState::CyanCandle__4FalseTrue
- | BlockState::CyanCandle__4FalseFalse
- | BlockState::PurpleCandle__4TrueTrue
- | BlockState::PurpleCandle__4TrueFalse
- | BlockState::PurpleCandle__4FalseTrue
- | BlockState::PurpleCandle__4FalseFalse
- | BlockState::BlueCandle__4TrueTrue
- | BlockState::BlueCandle__4TrueFalse
- | BlockState::BlueCandle__4FalseTrue
- | BlockState::BlueCandle__4FalseFalse
- | BlockState::BrownCandle__4TrueTrue
- | BlockState::BrownCandle__4TrueFalse
- | BlockState::BrownCandle__4FalseTrue
- | BlockState::BrownCandle__4FalseFalse
- | BlockState::GreenCandle__4TrueTrue
- | BlockState::GreenCandle__4TrueFalse
- | BlockState::GreenCandle__4FalseTrue
- | BlockState::GreenCandle__4FalseFalse
- | BlockState::RedCandle__4TrueTrue
- | BlockState::RedCandle__4TrueFalse
- | BlockState::RedCandle__4FalseTrue
- | BlockState::RedCandle__4FalseFalse
- | BlockState::BlackCandle__4TrueTrue
- | BlockState::BlackCandle__4TrueFalse
- | BlockState::BlackCandle__4FalseTrue
- | BlockState::BlackCandle__4FalseFalse => &SHAPE284,
- BlockState::CandleCake_True
- | BlockState::CandleCake_False
- | BlockState::WhiteCandleCake_True
- | BlockState::WhiteCandleCake_False
- | BlockState::OrangeCandleCake_True
- | BlockState::OrangeCandleCake_False
- | BlockState::MagentaCandleCake_True
- | BlockState::MagentaCandleCake_False
- | BlockState::LightBlueCandleCake_True
- | BlockState::LightBlueCandleCake_False
- | BlockState::YellowCandleCake_True
- | BlockState::YellowCandleCake_False
- | BlockState::LimeCandleCake_True
- | BlockState::LimeCandleCake_False
- | BlockState::PinkCandleCake_True
- | BlockState::PinkCandleCake_False
- | BlockState::GrayCandleCake_True
- | BlockState::GrayCandleCake_False
- | BlockState::LightGrayCandleCake_True
- | BlockState::LightGrayCandleCake_False
- | BlockState::CyanCandleCake_True
- | BlockState::CyanCandleCake_False
- | BlockState::PurpleCandleCake_True
- | BlockState::PurpleCandleCake_False
- | BlockState::BlueCandleCake_True
- | BlockState::BlueCandleCake_False
- | BlockState::BrownCandleCake_True
- | BlockState::BrownCandleCake_False
- | BlockState::GreenCandleCake_True
- | BlockState::GreenCandleCake_False
- | BlockState::RedCandleCake_True
- | BlockState::RedCandleCake_False
- | BlockState::BlackCandleCake_True
- | BlockState::BlackCandleCake_False => &SHAPE285,
- BlockState::AmethystCluster_NorthTrue | BlockState::AmethystCluster_NorthFalse => {
- &SHAPE286
+ 6536 | 6538 | 6574 | 6576 | 9000 | 9002 | 9032 | 9034 | 9064 | 9066 | 9096 | 9098
+ | 9128 | 9130 | 9160 | 9162 | 9192 | 9194 | 9224 | 9226 | 9256 | 9258 | 9288 | 9290
+ | 9320 | 9322 | 9352 | 9354 | 9384 | 9386 | 9416 | 9418 | 9448 | 9450 | 9480 | 9482 => {
+ &SHAPE115
}
- BlockState::AmethystCluster_EastTrue | BlockState::AmethystCluster_EastFalse => {
- &SHAPE287
+ 6537 | 6539 | 6575 | 6577 | 9001 | 9003 | 9033 | 9035 | 9065 | 9067 | 9097 | 9099
+ | 9129 | 9131 | 9161 | 9163 | 9193 | 9195 | 9225 | 9227 | 9257 | 9259 | 9289 | 9291
+ | 9321 | 9323 | 9353 | 9355 | 9385 | 9387 | 9417 | 9419 | 9449 | 9451 | 9481 | 9483 => {
+ &SHAPE116
}
- BlockState::AmethystCluster_SouthTrue | BlockState::AmethystCluster_SouthFalse => {
- &SHAPE288
+ 6540 | 6542 | 6578 | 6580 | 9004 | 9006 | 9036 | 9038 | 9068 | 9070 | 9100 | 9102
+ | 9132 | 9134 | 9164 | 9166 | 9196 | 9198 | 9228 | 9230 | 9260 | 9262 | 9292 | 9294
+ | 9324 | 9326 | 9356 | 9358 | 9388 | 9390 | 9420 | 9422 | 9452 | 9454 | 9484 | 9486 => {
+ &SHAPE117
}
- BlockState::AmethystCluster_WestTrue | BlockState::AmethystCluster_WestFalse => {
- &SHAPE289
+ 6541 | 6543 | 6579 | 6581 | 9005 | 9007 | 9037 | 9039 | 9069 | 9071 | 9101 | 9103
+ | 9133 | 9135 | 9165 | 9167 | 9197 | 9199 | 9229 | 9231 | 9261 | 9263 | 9293 | 9295
+ | 9325 | 9327 | 9357 | 9359 | 9389 | 9391 | 9421 | 9423 | 9453 | 9455 | 9485 | 9487 => {
+ &SHAPE2
}
- BlockState::AmethystCluster_UpTrue | BlockState::AmethystCluster_UpFalse => &SHAPE290,
- BlockState::AmethystCluster_DownTrue | BlockState::AmethystCluster_DownFalse => {
- &SHAPE291
+ 6544..=6545 => &SHAPE118,
+ 6546..=6547 | 12317..=12328 => &SHAPE119,
+ 6548..=6549 => &SHAPE120,
+ 7041 => &SHAPE122,
+ 7160..=7167 => &SHAPE123,
+ 7168..=7175 => &SHAPE124,
+ 7177..=7180 => &SHAPE125,
+ 7181..=7184 => &SHAPE126,
+ 7186 => &SHAPE59,
+ 7189 => &SHAPE127,
+ 7190 => &SHAPE128,
+ 7191 => &SHAPE129,
+ 7192 => &SHAPE130,
+ 7193 => &SHAPE131,
+ 7194 => &SHAPE132,
+ 7195 => &SHAPE133,
+ 7196 => &SHAPE134,
+ 7197 => &SHAPE135,
+ 7198 => &SHAPE136,
+ 7199 => &SHAPE137,
+ 7200 => &SHAPE138,
+ 7689 | 7692 | 8013 | 8016 | 13532 | 13535 | 13856 | 13859 | 14180 | 14183 | 14504
+ | 14507 | 14828 | 14831 | 15152 | 15155 | 15476 | 15479 | 15800 | 15803 | 16124
+ | 16127 | 16448 | 16451 | 16772 | 16775 | 17096 | 17099 | 17420 | 17423 | 18913
+ | 18916 | 19333 | 19336 | 19770 | 19773 | 21652 | 21655 | 22063 | 22066 | 22474
+ | 22477 | 22885 | 22888 => &SHAPE139,
+ 7690..=7691
+ | 7693..=7694
+ | 8014..=8015
+ | 8017..=8018
+ | 13533..=13534
+ | 13536..=13537
+ | 13857..=13858
+ | 13860..=13861
+ | 14181..=14182
+ | 14184..=14185
+ | 14505..=14506
+ | 14508..=14509
+ | 14829..=14830
+ | 14832..=14833
+ | 15153..=15154
+ | 15156..=15157
+ | 15477..=15478
+ | 15480..=15481
+ | 15801..=15802
+ | 15804..=15805
+ | 16125..=16126
+ | 16128..=16129
+ | 16449..=16450
+ | 16452..=16453
+ | 16773..=16774
+ | 16776..=16777
+ | 17097..=17098
+ | 17100..=17101
+ | 17421..=17422
+ | 17424..=17425
+ | 18914..=18915
+ | 18917..=18918
+ | 19334..=19335
+ | 19337..=19338
+ | 19771..=19772
+ | 19774..=19775
+ | 21653..=21654
+ | 21656..=21657
+ | 22064..=22065
+ | 22067..=22068
+ | 22475..=22476
+ | 22478..=22479
+ | 22886..=22887
+ | 22889..=22890 => &SHAPE140,
+ 7696..=7697
+ | 7699..=7700
+ | 8020..=8021
+ | 8023..=8024
+ | 13539..=13540
+ | 13542..=13543
+ | 13863..=13864
+ | 13866..=13867
+ | 14187..=14188
+ | 14190..=14191
+ | 14511..=14512
+ | 14514..=14515
+ | 14835..=14836
+ | 14838..=14839
+ | 15159..=15160
+ | 15162..=15163
+ | 15483..=15484
+ | 15486..=15487
+ | 15807..=15808
+ | 15810..=15811
+ | 16131..=16132
+ | 16134..=16135
+ | 16455..=16456
+ | 16458..=16459
+ | 16779..=16780
+ | 16782..=16783
+ | 17103..=17104
+ | 17106..=17107
+ | 17427..=17428
+ | 17430..=17431
+ | 18920..=18921
+ | 18923..=18924
+ | 19340..=19341
+ | 19343..=19344
+ | 19777..=19778
+ | 19780..=19781
+ | 21659..=21660
+ | 21662..=21663
+ | 22070..=22071
+ | 22073..=22074
+ | 22481..=22482
+ | 22484..=22485
+ | 22892..=22893
+ | 22895..=22896 => &SHAPE141,
+ 7701 | 7704 | 7713 | 7716 | 8025 | 8028 | 8037 | 8040 | 13544 | 13547 | 13556
+ | 13559 | 13868 | 13871 | 13880 | 13883 | 14192 | 14195 | 14204 | 14207 | 14516
+ | 14519 | 14528 | 14531 | 14840 | 14843 | 14852 | 14855 | 15164 | 15167 | 15176
+ | 15179 | 15488 | 15491 | 15500 | 15503 | 15812 | 15815 | 15824 | 15827 | 16136
+ | 16139 | 16148 | 16151 | 16460 | 16463 | 16472 | 16475 | 16784 | 16787 | 16796
+ | 16799 | 17108 | 17111 | 17120 | 17123 | 17432 | 17435 | 17444 | 17447 | 18925
+ | 18928 | 18937 | 18940 | 19345 | 19348 | 19357 | 19360 | 19782 | 19785 | 19794
+ | 19797 | 21664 | 21667 | 21676 | 21679 | 22075 | 22078 | 22087 | 22090 | 22486
+ | 22489 | 22498 | 22501 | 22897 | 22900 | 22909 | 22912 => &SHAPE142,
+ 7702..=7703
+ | 7705..=7706
+ | 7714..=7715
+ | 7717..=7718
+ | 8026..=8027
+ | 8029..=8030
+ | 8038..=8039
+ | 8041..=8042
+ | 13545..=13546
+ | 13548..=13549
+ | 13557..=13558
+ | 13560..=13561
+ | 13869..=13870
+ | 13872..=13873
+ | 13881..=13882
+ | 13884..=13885
+ | 14193..=14194
+ | 14196..=14197
+ | 14205..=14206
+ | 14208..=14209
+ | 14517..=14518
+ | 14520..=14521
+ | 14529..=14530
+ | 14532..=14533
+ | 14841..=14842
+ | 14844..=14845
+ | 14853..=14854
+ | 14856..=14857
+ | 15165..=15166
+ | 15168..=15169
+ | 15177..=15178
+ | 15180..=15181
+ | 15489..=15490
+ | 15492..=15493
+ | 15501..=15502
+ | 15504..=15505
+ | 15813..=15814
+ | 15816..=15817
+ | 15825..=15826
+ | 15828..=15829
+ | 16137..=16138
+ | 16140..=16141
+ | 16149..=16150
+ | 16152..=16153
+ | 16461..=16462
+ | 16464..=16465
+ | 16473..=16474
+ | 16476..=16477
+ | 16785..=16786
+ | 16788..=16789
+ | 16797..=16798
+ | 16800..=16801
+ | 17109..=17110
+ | 17112..=17113
+ | 17121..=17122
+ | 17124..=17125
+ | 17433..=17434
+ | 17436..=17437
+ | 17445..=17446
+ | 17448..=17449
+ | 18926..=18927
+ | 18929..=18930
+ | 18938..=18939
+ | 18941..=18942
+ | 19346..=19347
+ | 19349..=19350
+ | 19358..=19359
+ | 19361..=19362
+ | 19783..=19784
+ | 19786..=19787
+ | 19795..=19796
+ | 19798..=19799
+ | 21665..=21666
+ | 21668..=21669
+ | 21677..=21678
+ | 21680..=21681
+ | 22076..=22077
+ | 22079..=22080
+ | 22088..=22089
+ | 22091..=22092
+ | 22487..=22488
+ | 22490..=22491
+ | 22499..=22500
+ | 22502..=22503
+ | 22898..=22899
+ | 22901..=22902
+ | 22910..=22911
+ | 22913..=22914 => &SHAPE143,
+ 7707 | 7710 | 7719 | 7722 | 8031 | 8034 | 8043 | 8046 | 13550 | 13553 | 13562
+ | 13565 | 13874 | 13877 | 13886 | 13889 | 14198 | 14201 | 14210 | 14213 | 14522
+ | 14525 | 14534 | 14537 | 14846 | 14849 | 14858 | 14861 | 15170 | 15173 | 15182
+ | 15185 | 15494 | 15497 | 15506 | 15509 | 15818 | 15821 | 15830 | 15833 | 16142
+ | 16145 | 16154 | 16157 | 16466 | 16469 | 16478 | 16481 | 16790 | 16793 | 16802
+ | 16805 | 17114 | 17117 | 17126 | 17129 | 17438 | 17441 | 17450 | 17453 | 18931
+ | 18934 | 18943 | 18946 | 19351 | 19354 | 19363 | 19366 | 19788 | 19791 | 19800
+ | 19803 | 21670 | 21673 | 21682 | 21685 | 22081 | 22084 | 22093 | 22096 | 22492
+ | 22495 | 22504 | 22507 | 22903 | 22906 | 22915 | 22918 => &SHAPE144,
+ 7708..=7709
+ | 7711..=7712
+ | 7720..=7721
+ | 7723..=7724
+ | 8032..=8033
+ | 8035..=8036
+ | 8044..=8045
+ | 8047..=8048
+ | 13551..=13552
+ | 13554..=13555
+ | 13563..=13564
+ | 13566..=13567
+ | 13875..=13876
+ | 13878..=13879
+ | 13887..=13888
+ | 13890..=13891
+ | 14199..=14200
+ | 14202..=14203
+ | 14211..=14212
+ | 14214..=14215
+ | 14523..=14524
+ | 14526..=14527
+ | 14535..=14536
+ | 14538..=14539
+ | 14847..=14848
+ | 14850..=14851
+ | 14859..=14860
+ | 14862..=14863
+ | 15171..=15172
+ | 15174..=15175
+ | 15183..=15184
+ | 15186..=15187
+ | 15495..=15496
+ | 15498..=15499
+ | 15507..=15508
+ | 15510..=15511
+ | 15819..=15820
+ | 15822..=15823
+ | 15831..=15832
+ | 15834..=15835
+ | 16143..=16144
+ | 16146..=16147
+ | 16155..=16156
+ | 16158..=16159
+ | 16467..=16468
+ | 16470..=16471
+ | 16479..=16480
+ | 16482..=16483
+ | 16791..=16792
+ | 16794..=16795
+ | 16803..=16804
+ | 16806..=16807
+ | 17115..=17116
+ | 17118..=17119
+ | 17127..=17128
+ | 17130..=17131
+ | 17439..=17440
+ | 17442..=17443
+ | 17451..=17452
+ | 17454..=17455
+ | 18932..=18933
+ | 18935..=18936
+ | 18944..=18945
+ | 18947..=18948
+ | 19352..=19353
+ | 19355..=19356
+ | 19364..=19365
+ | 19367..=19368
+ | 19789..=19790
+ | 19792..=19793
+ | 19801..=19802
+ | 19804..=19805
+ | 21671..=21672
+ | 21674..=21675
+ | 21683..=21684
+ | 21686..=21687
+ | 22082..=22083
+ | 22085..=22086
+ | 22094..=22095
+ | 22097..=22098
+ | 22493..=22494
+ | 22496..=22497
+ | 22505..=22506
+ | 22508..=22509
+ | 22904..=22905
+ | 22907..=22908
+ | 22916..=22917
+ | 22919..=22920 => &SHAPE145,
+ 7725 | 7728 | 7761 | 7764 | 8049 | 8052 | 8085 | 8088 | 13568 | 13571 | 13604
+ | 13607 | 13892 | 13895 | 13928 | 13931 | 14216 | 14219 | 14252 | 14255 | 14540
+ | 14543 | 14576 | 14579 | 14864 | 14867 | 14900 | 14903 | 15188 | 15191 | 15224
+ | 15227 | 15512 | 15515 | 15548 | 15551 | 15836 | 15839 | 15872 | 15875 | 16160
+ | 16163 | 16196 | 16199 | 16484 | 16487 | 16520 | 16523 | 16808 | 16811 | 16844
+ | 16847 | 17132 | 17135 | 17168 | 17171 | 17456 | 17459 | 17492 | 17495 | 18949
+ | 18952 | 18985 | 18988 | 19369 | 19372 | 19405 | 19408 | 19806 | 19809 | 19842
+ | 19845 | 21688 | 21691 | 21724 | 21727 | 22099 | 22102 | 22135 | 22138 | 22510
+ | 22513 | 22546 | 22549 | 22921 | 22924 | 22957 | 22960 => &SHAPE146,
+ 7726..=7727
+ | 7729..=7730
+ | 7762..=7763
+ | 7765..=7766
+ | 8050..=8051
+ | 8053..=8054
+ | 8086..=8087
+ | 8089..=8090
+ | 13569..=13570
+ | 13572..=13573
+ | 13605..=13606
+ | 13608..=13609
+ | 13893..=13894
+ | 13896..=13897
+ | 13929..=13930
+ | 13932..=13933
+ | 14217..=14218
+ | 14220..=14221
+ | 14253..=14254
+ | 14256..=14257
+ | 14541..=14542
+ | 14544..=14545
+ | 14577..=14578
+ | 14580..=14581
+ | 14865..=14866
+ | 14868..=14869
+ | 14901..=14902
+ | 14904..=14905
+ | 15189..=15190
+ | 15192..=15193
+ | 15225..=15226
+ | 15228..=15229
+ | 15513..=15514
+ | 15516..=15517
+ | 15549..=15550
+ | 15552..=15553
+ | 15837..=15838
+ | 15840..=15841
+ | 15873..=15874
+ | 15876..=15877
+ | 16161..=16162
+ | 16164..=16165
+ | 16197..=16198
+ | 16200..=16201
+ | 16485..=16486
+ | 16488..=16489
+ | 16521..=16522
+ | 16524..=16525
+ | 16809..=16810
+ | 16812..=16813
+ | 16845..=16846
+ | 16848..=16849
+ | 17133..=17134
+ | 17136..=17137
+ | 17169..=17170
+ | 17172..=17173
+ | 17457..=17458
+ | 17460..=17461
+ | 17493..=17494
+ | 17496..=17497
+ | 18950..=18951
+ | 18953..=18954
+ | 18986..=18987
+ | 18989..=18990
+ | 19370..=19371
+ | 19373..=19374
+ | 19406..=19407
+ | 19409..=19410
+ | 19807..=19808
+ | 19810..=19811
+ | 19843..=19844
+ | 19846..=19847
+ | 21689..=21690
+ | 21692..=21693
+ | 21725..=21726
+ | 21728..=21729
+ | 22100..=22101
+ | 22103..=22104
+ | 22136..=22137
+ | 22139..=22140
+ | 22511..=22512
+ | 22514..=22515
+ | 22547..=22548
+ | 22550..=22551
+ | 22922..=22923
+ | 22925..=22926
+ | 22958..=22959
+ | 22961..=22962 => &SHAPE147,
+ 7731 | 7734 | 7767 | 7770 | 8055 | 8058 | 8091 | 8094 | 13574 | 13577 | 13610
+ | 13613 | 13898 | 13901 | 13934 | 13937 | 14222 | 14225 | 14258 | 14261 | 14546
+ | 14549 | 14582 | 14585 | 14870 | 14873 | 14906 | 14909 | 15194 | 15197 | 15230
+ | 15233 | 15518 | 15521 | 15554 | 15557 | 15842 | 15845 | 15878 | 15881 | 16166
+ | 16169 | 16202 | 16205 | 16490 | 16493 | 16526 | 16529 | 16814 | 16817 | 16850
+ | 16853 | 17138 | 17141 | 17174 | 17177 | 17462 | 17465 | 17498 | 17501 | 18955
+ | 18958 | 18991 | 18994 | 19375 | 19378 | 19411 | 19414 | 19812 | 19815 | 19848
+ | 19851 | 21694 | 21697 | 21730 | 21733 | 22105 | 22108 | 22141 | 22144 | 22516
+ | 22519 | 22552 | 22555 | 22927 | 22930 | 22963 | 22966 => &SHAPE148,
+ 7732..=7733
+ | 7735..=7736
+ | 7768..=7769
+ | 7771..=7772
+ | 8056..=8057
+ | 8059..=8060
+ | 8092..=8093
+ | 8095..=8096
+ | 13575..=13576
+ | 13578..=13579
+ | 13611..=13612
+ | 13614..=13615
+ | 13899..=13900
+ | 13902..=13903
+ | 13935..=13936
+ | 13938..=13939
+ | 14223..=14224
+ | 14226..=14227
+ | 14259..=14260
+ | 14262..=14263
+ | 14547..=14548
+ | 14550..=14551
+ | 14583..=14584
+ | 14586..=14587
+ | 14871..=14872
+ | 14874..=14875
+ | 14907..=14908
+ | 14910..=14911
+ | 15195..=15196
+ | 15198..=15199
+ | 15231..=15232
+ | 15234..=15235
+ | 15519..=15520
+ | 15522..=15523
+ | 15555..=15556
+ | 15558..=15559
+ | 15843..=15844
+ | 15846..=15847
+ | 15879..=15880
+ | 15882..=15883
+ | 16167..=16168
+ | 16170..=16171
+ | 16203..=16204
+ | 16206..=16207
+ | 16491..=16492
+ | 16494..=16495
+ | 16527..=16528
+ | 16530..=16531
+ | 16815..=16816
+ | 16818..=16819
+ | 16851..=16852
+ | 16854..=16855
+ | 17139..=17140
+ | 17142..=17143
+ | 17175..=17176
+ | 17178..=17179
+ | 17463..=17464
+ | 17466..=17467
+ | 17499..=17500
+ | 17502..=17503
+ | 18956..=18957
+ | 18959..=18960
+ | 18992..=18993
+ | 18995..=18996
+ | 19376..=19377
+ | 19379..=19380
+ | 19412..=19413
+ | 19415..=19416
+ | 19813..=19814
+ | 19816..=19817
+ | 19849..=19850
+ | 19852..=19853
+ | 21695..=21696
+ | 21698..=21699
+ | 21731..=21732
+ | 21734..=21735
+ | 22106..=22107
+ | 22109..=22110
+ | 22142..=22143
+ | 22145..=22146
+ | 22517..=22518
+ | 22520..=22521
+ | 22553..=22554
+ | 22556..=22557
+ | 22928..=22929
+ | 22931..=22932
+ | 22964..=22965
+ | 22967..=22968 => &SHAPE149,
+ 7737 | 7740 | 7749 | 7752 | 7773 | 7776 | 7785 | 7788 | 8061 | 8064 | 8073 | 8076
+ | 8097 | 8100 | 8109 | 8112 | 13580 | 13583 | 13592 | 13595 | 13616 | 13619 | 13628
+ | 13631 | 13904 | 13907 | 13916 | 13919 | 13940 | 13943 | 13952 | 13955 | 14228
+ | 14231 | 14240 | 14243 | 14264 | 14267 | 14276 | 14279 | 14552 | 14555 | 14564
+ | 14567 | 14588 | 14591 | 14600 | 14603 | 14876 | 14879 | 14888 | 14891 | 14912
+ | 14915 | 14924 | 14927 | 15200 | 15203 | 15212 | 15215 | 15236 | 15239 | 15248
+ | 15251 | 15524 | 15527 | 15536 | 15539 | 15560 | 15563 | 15572 | 15575 | 15848
+ | 15851 | 15860 | 15863 | 15884 | 15887 | 15896 | 15899 | 16172 | 16175 | 16184
+ | 16187 | 16208 | 16211 | 16220 | 16223 | 16496 | 16499 | 16508 | 16511 | 16532
+ | 16535 | 16544 | 16547 | 16820 | 16823 | 16832 | 16835 | 16856 | 16859 | 16868
+ | 16871 | 17144 | 17147 | 17156 | 17159 | 17180 | 17183 | 17192 | 17195 | 17468
+ | 17471 | 17480 | 17483 | 17504 | 17507 | 17516 | 17519 | 18961 | 18964 | 18973
+ | 18976 | 18997 | 19000 | 19009 | 19012 | 19381 | 19384 | 19393 | 19396 | 19417
+ | 19420 | 19429 | 19432 | 19818 | 19821 | 19830 | 19833 | 19854 | 19857 | 19866
+ | 19869 | 21700 | 21703 | 21712 | 21715 | 21736 | 21739 | 21748 | 21751 | 22111
+ | 22114 | 22123 | 22126 | 22147 | 22150 | 22159 | 22162 | 22522 | 22525 | 22534
+ | 22537 | 22558 | 22561 | 22570 | 22573 | 22933 | 22936 | 22945 | 22948 | 22969
+ | 22972 | 22981 | 22984 => &SHAPE150,
+ 7738..=7739
+ | 7741..=7742
+ | 7750..=7751
+ | 7753..=7754
+ | 7774..=7775
+ | 7777..=7778
+ | 7786..=7787
+ | 7789..=7790
+ | 8062..=8063
+ | 8065..=8066
+ | 8074..=8075
+ | 8077..=8078
+ | 8098..=8099
+ | 8101..=8102
+ | 8110..=8111
+ | 8113..=8114
+ | 13581..=13582
+ | 13584..=13585
+ | 13593..=13594
+ | 13596..=13597
+ | 13617..=13618
+ | 13620..=13621
+ | 13629..=13630
+ | 13632..=13633
+ | 13905..=13906
+ | 13908..=13909
+ | 13917..=13918
+ | 13920..=13921
+ | 13941..=13942
+ | 13944..=13945
+ | 13953..=13954
+ | 13956..=13957
+ | 14229..=14230
+ | 14232..=14233
+ | 14241..=14242
+ | 14244..=14245
+ | 14265..=14266
+ | 14268..=14269
+ | 14277..=14278
+ | 14280..=14281
+ | 14553..=14554
+ | 14556..=14557
+ | 14565..=14566
+ | 14568..=14569
+ | 14589..=14590
+ | 14592..=14593
+ | 14601..=14602
+ | 14604..=14605
+ | 14877..=14878
+ | 14880..=14881
+ | 14889..=14890
+ | 14892..=14893
+ | 14913..=14914
+ | 14916..=14917
+ | 14925..=14926
+ | 14928..=14929
+ | 15201..=15202
+ | 15204..=15205
+ | 15213..=15214
+ | 15216..=15217
+ | 15237..=15238
+ | 15240..=15241
+ | 15249..=15250
+ | 15252..=15253
+ | 15525..=15526
+ | 15528..=15529
+ | 15537..=15538
+ | 15540..=15541
+ | 15561..=15562
+ | 15564..=15565
+ | 15573..=15574
+ | 15576..=15577
+ | 15849..=15850
+ | 15852..=15853
+ | 15861..=15862
+ | 15864..=15865
+ | 15885..=15886
+ | 15888..=15889
+ | 15897..=15898
+ | 15900..=15901
+ | 16173..=16174
+ | 16176..=16177
+ | 16185..=16186
+ | 16188..=16189
+ | 16209..=16210
+ | 16212..=16213
+ | 16221..=16222
+ | 16224..=16225
+ | 16497..=16498
+ | 16500..=16501
+ | 16509..=16510
+ | 16512..=16513
+ | 16533..=16534
+ | 16536..=16537
+ | 16545..=16546
+ | 16548..=16549
+ | 16821..=16822
+ | 16824..=16825
+ | 16833..=16834
+ | 16836..=16837
+ | 16857..=16858
+ | 16860..=16861
+ | 16869..=16870
+ | 16872..=16873
+ | 17145..=17146
+ | 17148..=17149
+ | 17157..=17158
+ | 17160..=17161
+ | 17181..=17182
+ | 17184..=17185
+ | 17193..=17194
+ | 17196..=17197
+ | 17469..=17470
+ | 17472..=17473
+ | 17481..=17482
+ | 17484..=17485
+ | 17505..=17506
+ | 17508..=17509
+ | 17517..=17518
+ | 17520..=17521
+ | 18962..=18963
+ | 18965..=18966
+ | 18974..=18975
+ | 18977..=18978
+ | 18998..=18999
+ | 19001..=19002
+ | 19010..=19011
+ | 19013..=19014
+ | 19382..=19383
+ | 19385..=19386
+ | 19394..=19395
+ | 19397..=19398
+ | 19418..=19419
+ | 19421..=19422
+ | 19430..=19431
+ | 19433..=19434
+ | 19819..=19820
+ | 19822..=19823
+ | 19831..=19832
+ | 19834..=19835
+ | 19855..=19856
+ | 19858..=19859
+ | 19867..=19868
+ | 19870..=19871
+ | 21701..=21702
+ | 21704..=21705
+ | 21713..=21714
+ | 21716..=21717
+ | 21737..=21738
+ | 21740..=21741
+ | 21749..=21750
+ | 21752..=21753
+ | 22112..=22113
+ | 22115..=22116
+ | 22124..=22125
+ | 22127..=22128
+ | 22148..=22149
+ | 22151..=22152
+ | 22160..=22161
+ | 22163..=22164
+ | 22523..=22524
+ | 22526..=22527
+ | 22535..=22536
+ | 22538..=22539
+ | 22559..=22560
+ | 22562..=22563
+ | 22571..=22572
+ | 22574..=22575
+ | 22934..=22935
+ | 22937..=22938
+ | 22946..=22947
+ | 22949..=22950
+ | 22970..=22971
+ | 22973..=22974
+ | 22982..=22983
+ | 22985..=22986 => &SHAPE151,
+ 7743 | 7746 | 7755 | 7758 | 7779 | 7782 | 7791 | 7794 | 8067 | 8070 | 8079 | 8082
+ | 8103 | 8106 | 8115 | 8118 | 13586 | 13589 | 13598 | 13601 | 13622 | 13625 | 13634
+ | 13637 | 13910 | 13913 | 13922 | 13925 | 13946 | 13949 | 13958 | 13961 | 14234
+ | 14237 | 14246 | 14249 | 14270 | 14273 | 14282 | 14285 | 14558 | 14561 | 14570
+ | 14573 | 14594 | 14597 | 14606 | 14609 | 14882 | 14885 | 14894 | 14897 | 14918
+ | 14921 | 14930 | 14933 | 15206 | 15209 | 15218 | 15221 | 15242 | 15245 | 15254
+ | 15257 | 15530 | 15533 | 15542 | 15545 | 15566 | 15569 | 15578 | 15581 | 15854
+ | 15857 | 15866 | 15869 | 15890 | 15893 | 15902 | 15905 | 16178 | 16181 | 16190
+ | 16193 | 16214 | 16217 | 16226 | 16229 | 16502 | 16505 | 16514 | 16517 | 16538
+ | 16541 | 16550 | 16553 | 16826 | 16829 | 16838 | 16841 | 16862 | 16865 | 16874
+ | 16877 | 17150 | 17153 | 17162 | 17165 | 17186 | 17189 | 17198 | 17201 | 17474
+ | 17477 | 17486 | 17489 | 17510 | 17513 | 17522 | 17525 | 18967 | 18970 | 18979
+ | 18982 | 19003 | 19006 | 19015 | 19018 | 19387 | 19390 | 19399 | 19402 | 19423
+ | 19426 | 19435 | 19438 | 19824 | 19827 | 19836 | 19839 | 19860 | 19863 | 19872
+ | 19875 | 21706 | 21709 | 21718 | 21721 | 21742 | 21745 | 21754 | 21757 | 22117
+ | 22120 | 22129 | 22132 | 22153 | 22156 | 22165 | 22168 | 22528 | 22531 | 22540
+ | 22543 | 22564 | 22567 | 22576 | 22579 | 22939 | 22942 | 22951 | 22954 | 22975
+ | 22978 | 22987 | 22990 => &SHAPE152,
+ 7744..=7745
+ | 7747..=7748
+ | 7756..=7757
+ | 7759..=7760
+ | 7780..=7781
+ | 7783..=7784
+ | 7792..=7793
+ | 7795..=7796
+ | 8068..=8069
+ | 8071..=8072
+ | 8080..=8081
+ | 8083..=8084
+ | 8104..=8105
+ | 8107..=8108
+ | 8116..=8117
+ | 8119..=8120
+ | 13587..=13588
+ | 13590..=13591
+ | 13599..=13600
+ | 13602..=13603
+ | 13623..=13624
+ | 13626..=13627
+ | 13635..=13636
+ | 13638..=13639
+ | 13911..=13912
+ | 13914..=13915
+ | 13923..=13924
+ | 13926..=13927
+ | 13947..=13948
+ | 13950..=13951
+ | 13959..=13960
+ | 13962..=13963
+ | 14235..=14236
+ | 14238..=14239
+ | 14247..=14248
+ | 14250..=14251
+ | 14271..=14272
+ | 14274..=14275
+ | 14283..=14284
+ | 14286..=14287
+ | 14559..=14560
+ | 14562..=14563
+ | 14571..=14572
+ | 14574..=14575
+ | 14595..=14596
+ | 14598..=14599
+ | 14607..=14608
+ | 14610..=14611
+ | 14883..=14884
+ | 14886..=14887
+ | 14895..=14896
+ | 14898..=14899
+ | 14919..=14920
+ | 14922..=14923
+ | 14931..=14932
+ | 14934..=14935
+ | 15207..=15208
+ | 15210..=15211
+ | 15219..=15220
+ | 15222..=15223
+ | 15243..=15244
+ | 15246..=15247
+ | 15255..=15256
+ | 15258..=15259
+ | 15531..=15532
+ | 15534..=15535
+ | 15543..=15544
+ | 15546..=15547
+ | 15567..=15568
+ | 15570..=15571
+ | 15579..=15580
+ | 15582..=15583
+ | 15855..=15856
+ | 15858..=15859
+ | 15867..=15868
+ | 15870..=15871
+ | 15891..=15892
+ | 15894..=15895
+ | 15903..=15904
+ | 15906..=15907
+ | 16179..=16180
+ | 16182..=16183
+ | 16191..=16192
+ | 16194..=16195
+ | 16215..=16216
+ | 16218..=16219
+ | 16227..=16228
+ | 16230..=16231
+ | 16503..=16504
+ | 16506..=16507
+ | 16515..=16516
+ | 16518..=16519
+ | 16539..=16540
+ | 16542..=16543
+ | 16551..=16552
+ | 16554..=16555
+ | 16827..=16828
+ | 16830..=16831
+ | 16839..=16840
+ | 16842..=16843
+ | 16863..=16864
+ | 16866..=16867
+ | 16875..=16876
+ | 16878..=16879
+ | 17151..=17152
+ | 17154..=17155
+ | 17163..=17164
+ | 17166..=17167
+ | 17187..=17188
+ | 17190..=17191
+ | 17199..=17200
+ | 17202..=17203
+ | 17475..=17476
+ | 17478..=17479
+ | 17487..=17488
+ | 17490..=17491
+ | 17511..=17512
+ | 17514..=17515
+ | 17523..=17524
+ | 17526..=17527
+ | 18968..=18969
+ | 18971..=18972
+ | 18980..=18981
+ | 18983..=18984
+ | 19004..=19005
+ | 19007..=19008
+ | 19016..=19017
+ | 19019..=19020
+ | 19388..=19389
+ | 19391..=19392
+ | 19400..=19401
+ | 19403..=19404
+ | 19424..=19425
+ | 19427..=19428
+ | 19436..=19437
+ | 19439..=19440
+ | 19825..=19826
+ | 19828..=19829
+ | 19837..=19838
+ | 19840..=19841
+ | 19861..=19862
+ | 19864..=19865
+ | 19873..=19874
+ | 19876..=19877
+ | 21707..=21708
+ | 21710..=21711
+ | 21719..=21720
+ | 21722..=21723
+ | 21743..=21744
+ | 21746..=21747
+ | 21755..=21756
+ | 21758..=21759
+ | 22118..=22119
+ | 22121..=22122
+ | 22130..=22131
+ | 22133..=22134
+ | 22154..=22155
+ | 22157..=22158
+ | 22166..=22167
+ | 22169..=22170
+ | 22529..=22530
+ | 22532..=22533
+ | 22541..=22542
+ | 22544..=22545
+ | 22565..=22566
+ | 22568..=22569
+ | 22577..=22578
+ | 22580..=22581
+ | 22940..=22941
+ | 22943..=22944
+ | 22952..=22953
+ | 22955..=22956
+ | 22976..=22977
+ | 22979..=22980
+ | 22988..=22989
+ | 22991..=22992 => &SHAPE153,
+ 7797 | 7800 | 7905 | 7908 | 8121 | 8124 | 8229 | 8232 | 13640 | 13643 | 13748
+ | 13751 | 13964 | 13967 | 14072 | 14075 | 14288 | 14291 | 14396 | 14399 | 14612
+ | 14615 | 14720 | 14723 | 14936 | 14939 | 15044 | 15047 | 15260 | 15263 | 15368
+ | 15371 | 15584 | 15587 | 15692 | 15695 | 15908 | 15911 | 16016 | 16019 | 16232
+ | 16235 | 16340 | 16343 | 16556 | 16559 | 16664 | 16667 | 16880 | 16883 | 16988
+ | 16991 | 17204 | 17207 | 17312 | 17315 | 17528 | 17531 | 17636 | 17639 | 19021
+ | 19024 | 19129 | 19132 | 19441 | 19444 | 19549 | 19552 | 19878 | 19881 | 19986
+ | 19989 | 21760 | 21763 | 21868 | 21871 | 22171 | 22174 | 22279 | 22282 | 22582
+ | 22585 | 22690 | 22693 | 22993 | 22996 | 23101 | 23104 => &SHAPE154,
+ 7798..=7799
+ | 7801..=7802
+ | 7906..=7907
+ | 7909..=7910
+ | 8122..=8123
+ | 8125..=8126
+ | 8230..=8231
+ | 8233..=8234
+ | 13641..=13642
+ | 13644..=13645
+ | 13749..=13750
+ | 13752..=13753
+ | 13965..=13966
+ | 13968..=13969
+ | 14073..=14074
+ | 14076..=14077
+ | 14289..=14290
+ | 14292..=14293
+ | 14397..=14398
+ | 14400..=14401
+ | 14613..=14614
+ | 14616..=14617
+ | 14721..=14722
+ | 14724..=14725
+ | 14937..=14938
+ | 14940..=14941
+ | 15045..=15046
+ | 15048..=15049
+ | 15261..=15262
+ | 15264..=15265
+ | 15369..=15370
+ | 15372..=15373
+ | 15585..=15586
+ | 15588..=15589
+ | 15693..=15694
+ | 15696..=15697
+ | 15909..=15910
+ | 15912..=15913
+ | 16017..=16018
+ | 16020..=16021
+ | 16233..=16234
+ | 16236..=16237
+ | 16341..=16342
+ | 16344..=16345
+ | 16557..=16558
+ | 16560..=16561
+ | 16665..=16666
+ | 16668..=16669
+ | 16881..=16882
+ | 16884..=16885
+ | 16989..=16990
+ | 16992..=16993
+ | 17205..=17206
+ | 17208..=17209
+ | 17313..=17314
+ | 17316..=17317
+ | 17529..=17530
+ | 17532..=17533
+ | 17637..=17638
+ | 17640..=17641
+ | 19022..=19023
+ | 19025..=19026
+ | 19130..=19131
+ | 19133..=19134
+ | 19442..=19443
+ | 19445..=19446
+ | 19550..=19551
+ | 19553..=19554
+ | 19879..=19880
+ | 19882..=19883
+ | 19987..=19988
+ | 19990..=19991
+ | 21761..=21762
+ | 21764..=21765
+ | 21869..=21870
+ | 21872..=21873
+ | 22172..=22173
+ | 22175..=22176
+ | 22280..=22281
+ | 22283..=22284
+ | 22583..=22584
+ | 22586..=22587
+ | 22691..=22692
+ | 22694..=22695
+ | 22994..=22995
+ | 22997..=22998
+ | 23102..=23103
+ | 23105..=23106 => &SHAPE155,
+ 7803 | 7806 | 7911 | 7914 | 8127 | 8130 | 8235 | 8238 | 13646 | 13649 | 13754
+ | 13757 | 13970 | 13973 | 14078 | 14081 | 14294 | 14297 | 14402 | 14405 | 14618
+ | 14621 | 14726 | 14729 | 14942 | 14945 | 15050 | 15053 | 15266 | 15269 | 15374
+ | 15377 | 15590 | 15593 | 15698 | 15701 | 15914 | 15917 | 16022 | 16025 | 16238
+ | 16241 | 16346 | 16349 | 16562 | 16565 | 16670 | 16673 | 16886 | 16889 | 16994
+ | 16997 | 17210 | 17213 | 17318 | 17321 | 17534 | 17537 | 17642 | 17645 | 19027
+ | 19030 | 19135 | 19138 | 19447 | 19450 | 19555 | 19558 | 19884 | 19887 | 19992
+ | 19995 | 21766 | 21769 | 21874 | 21877 | 22177 | 22180 | 22285 | 22288 | 22588
+ | 22591 | 22696 | 22699 | 22999 | 23002 | 23107 | 23110 => &SHAPE156,
+ 7804..=7805
+ | 7807..=7808
+ | 7912..=7913
+ | 7915..=7916
+ | 8128..=8129
+ | 8131..=8132
+ | 8236..=8237
+ | 8239..=8240
+ | 13647..=13648
+ | 13650..=13651
+ | 13755..=13756
+ | 13758..=13759
+ | 13971..=13972
+ | 13974..=13975
+ | 14079..=14080
+ | 14082..=14083
+ | 14295..=14296
+ | 14298..=14299
+ | 14403..=14404
+ | 14406..=14407
+ | 14619..=14620
+ | 14622..=14623
+ | 14727..=14728
+ | 14730..=14731
+ | 14943..=14944
+ | 14946..=14947
+ | 15051..=15052
+ | 15054..=15055
+ | 15267..=15268
+ | 15270..=15271
+ | 15375..=15376
+ | 15378..=15379
+ | 15591..=15592
+ | 15594..=15595
+ | 15699..=15700
+ | 15702..=15703
+ | 15915..=15916
+ | 15918..=15919
+ | 16023..=16024
+ | 16026..=16027
+ | 16239..=16240
+ | 16242..=16243
+ | 16347..=16348
+ | 16350..=16351
+ | 16563..=16564
+ | 16566..=16567
+ | 16671..=16672
+ | 16674..=16675
+ | 16887..=16888
+ | 16890..=16891
+ | 16995..=16996
+ | 16998..=16999
+ | 17211..=17212
+ | 17214..=17215
+ | 17319..=17320
+ | 17322..=17323
+ | 17535..=17536
+ | 17538..=17539
+ | 17643..=17644
+ | 17646..=17647
+ | 19028..=19029
+ | 19031..=19032
+ | 19136..=19137
+ | 19139..=19140
+ | 19448..=19449
+ | 19451..=19452
+ | 19556..=19557
+ | 19559..=19560
+ | 19885..=19886
+ | 19888..=19889
+ | 19993..=19994
+ | 19996..=19997
+ | 21767..=21768
+ | 21770..=21771
+ | 21875..=21876
+ | 21878..=21879
+ | 22178..=22179
+ | 22181..=22182
+ | 22286..=22287
+ | 22289..=22290
+ | 22589..=22590
+ | 22592..=22593
+ | 22697..=22698
+ | 22700..=22701
+ | 23000..=23001
+ | 23003..=23004
+ | 23108..=23109
+ | 23111..=23112 => &SHAPE157,
+ 7809 | 7812 | 7821 | 7824 | 7917 | 7920 | 7929 | 7932 | 8133 | 8136 | 8145 | 8148
+ | 8241 | 8244 | 8253 | 8256 | 13652 | 13655 | 13664 | 13667 | 13760 | 13763 | 13772
+ | 13775 | 13976 | 13979 | 13988 | 13991 | 14084 | 14087 | 14096 | 14099 | 14300
+ | 14303 | 14312 | 14315 | 14408 | 14411 | 14420 | 14423 | 14624 | 14627 | 14636
+ | 14639 | 14732 | 14735 | 14744 | 14747 | 14948 | 14951 | 14960 | 14963 | 15056
+ | 15059 | 15068 | 15071 | 15272 | 15275 | 15284 | 15287 | 15380 | 15383 | 15392
+ | 15395 | 15596 | 15599 | 15608 | 15611 | 15704 | 15707 | 15716 | 15719 | 15920
+ | 15923 | 15932 | 15935 | 16028 | 16031 | 16040 | 16043 | 16244 | 16247 | 16256
+ | 16259 | 16352 | 16355 | 16364 | 16367 | 16568 | 16571 | 16580 | 16583 | 16676
+ | 16679 | 16688 | 16691 | 16892 | 16895 | 16904 | 16907 | 17000 | 17003 | 17012
+ | 17015 | 17216 | 17219 | 17228 | 17231 | 17324 | 17327 | 17336 | 17339 | 17540
+ | 17543 | 17552 | 17555 | 17648 | 17651 | 17660 | 17663 | 19033 | 19036 | 19045
+ | 19048 | 19141 | 19144 | 19153 | 19156 | 19453 | 19456 | 19465 | 19468 | 19561
+ | 19564 | 19573 | 19576 | 19890 | 19893 | 19902 | 19905 | 19998 | 20001 | 20010
+ | 20013 | 21772 | 21775 | 21784 | 21787 | 21880 | 21883 | 21892 | 21895 | 22183
+ | 22186 | 22195 | 22198 | 22291 | 22294 | 22303 | 22306 | 22594 | 22597 | 22606
+ | 22609 | 22702 | 22705 | 22714 | 22717 | 23005 | 23008 | 23017 | 23020 | 23113
+ | 23116 | 23125 | 23128 => &SHAPE158,
+ 7810..=7811
+ | 7813..=7814
+ | 7822..=7823
+ | 7825..=7826
+ | 7918..=7919
+ | 7921..=7922
+ | 7930..=7931
+ | 7933..=7934
+ | 8134..=8135
+ | 8137..=8138
+ | 8146..=8147
+ | 8149..=8150
+ | 8242..=8243
+ | 8245..=8246
+ | 8254..=8255
+ | 8257..=8258
+ | 13653..=13654
+ | 13656..=13657
+ | 13665..=13666
+ | 13668..=13669
+ | 13761..=13762
+ | 13764..=13765
+ | 13773..=13774
+ | 13776..=13777
+ | 13977..=13978
+ | 13980..=13981
+ | 13989..=13990
+ | 13992..=13993
+ | 14085..=14086
+ | 14088..=14089
+ | 14097..=14098
+ | 14100..=14101
+ | 14301..=14302
+ | 14304..=14305
+ | 14313..=14314
+ | 14316..=14317
+ | 14409..=14410
+ | 14412..=14413
+ | 14421..=14422
+ | 14424..=14425
+ | 14625..=14626
+ | 14628..=14629
+ | 14637..=14638
+ | 14640..=14641
+ | 14733..=14734
+ | 14736..=14737
+ | 14745..=14746
+ | 14748..=14749
+ | 14949..=14950
+ | 14952..=14953
+ | 14961..=14962
+ | 14964..=14965
+ | 15057..=15058
+ | 15060..=15061
+ | 15069..=15070
+ | 15072..=15073
+ | 15273..=15274
+ | 15276..=15277
+ | 15285..=15286
+ | 15288..=15289
+ | 15381..=15382
+ | 15384..=15385
+ | 15393..=15394
+ | 15396..=15397
+ | 15597..=15598
+ | 15600..=15601
+ | 15609..=15610
+ | 15612..=15613
+ | 15705..=15706
+ | 15708..=15709
+ | 15717..=15718
+ | 15720..=15721
+ | 15921..=15922
+ | 15924..=15925
+ | 15933..=15934
+ | 15936..=15937
+ | 16029..=16030
+ | 16032..=16033
+ | 16041..=16042
+ | 16044..=16045
+ | 16245..=16246
+ | 16248..=16249
+ | 16257..=16258
+ | 16260..=16261
+ | 16353..=16354
+ | 16356..=16357
+ | 16365..=16366
+ | 16368..=16369
+ | 16569..=16570
+ | 16572..=16573
+ | 16581..=16582
+ | 16584..=16585
+ | 16677..=16678
+ | 16680..=16681
+ | 16689..=16690
+ | 16692..=16693
+ | 16893..=16894
+ | 16896..=16897
+ | 16905..=16906
+ | 16908..=16909
+ | 17001..=17002
+ | 17004..=17005
+ | 17013..=17014
+ | 17016..=17017
+ | 17217..=17218
+ | 17220..=17221
+ | 17229..=17230
+ | 17232..=17233
+ | 17325..=17326
+ | 17328..=17329
+ | 17337..=17338
+ | 17340..=17341
+ | 17541..=17542
+ | 17544..=17545
+ | 17553..=17554
+ | 17556..=17557
+ | 17649..=17650
+ | 17652..=17653
+ | 17661..=17662
+ | 17664..=17665
+ | 19034..=19035
+ | 19037..=19038
+ | 19046..=19047
+ | 19049..=19050
+ | 19142..=19143
+ | 19145..=19146
+ | 19154..=19155
+ | 19157..=19158
+ | 19454..=19455
+ | 19457..=19458
+ | 19466..=19467
+ | 19469..=19470
+ | 19562..=19563
+ | 19565..=19566
+ | 19574..=19575
+ | 19577..=19578
+ | 19891..=19892
+ | 19894..=19895
+ | 19903..=19904
+ | 19906..=19907
+ | 19999..=20000
+ | 20002..=20003
+ | 20011..=20012
+ | 20014..=20015
+ | 21773..=21774
+ | 21776..=21777
+ | 21785..=21786
+ | 21788..=21789
+ | 21881..=21882
+ | 21884..=21885
+ | 21893..=21894
+ | 21896..=21897
+ | 22184..=22185
+ | 22187..=22188
+ | 22196..=22197
+ | 22199..=22200
+ | 22292..=22293
+ | 22295..=22296
+ | 22304..=22305
+ | 22307..=22308
+ | 22595..=22596
+ | 22598..=22599
+ | 22607..=22608
+ | 22610..=22611
+ | 22703..=22704
+ | 22706..=22707
+ | 22715..=22716
+ | 22718..=22719
+ | 23006..=23007
+ | 23009..=23010
+ | 23018..=23019
+ | 23021..=23022
+ | 23114..=23115
+ | 23117..=23118
+ | 23126..=23127
+ | 23129..=23130 => &SHAPE159,
+ 7815 | 7818 | 7827 | 7830 | 7923 | 7926 | 7935 | 7938 | 8139 | 8142 | 8151 | 8154
+ | 8247 | 8250 | 8259 | 8262 | 13658 | 13661 | 13670 | 13673 | 13766 | 13769 | 13778
+ | 13781 | 13982 | 13985 | 13994 | 13997 | 14090 | 14093 | 14102 | 14105 | 14306
+ | 14309 | 14318 | 14321 | 14414 | 14417 | 14426 | 14429 | 14630 | 14633 | 14642
+ | 14645 | 14738 | 14741 | 14750 | 14753 | 14954 | 14957 | 14966 | 14969 | 15062
+ | 15065 | 15074 | 15077 | 15278 | 15281 | 15290 | 15293 | 15386 | 15389 | 15398
+ | 15401 | 15602 | 15605 | 15614 | 15617 | 15710 | 15713 | 15722 | 15725 | 15926
+ | 15929 | 15938 | 15941 | 16034 | 16037 | 16046 | 16049 | 16250 | 16253 | 16262
+ | 16265 | 16358 | 16361 | 16370 | 16373 | 16574 | 16577 | 16586 | 16589 | 16682
+ | 16685 | 16694 | 16697 | 16898 | 16901 | 16910 | 16913 | 17006 | 17009 | 17018
+ | 17021 | 17222 | 17225 | 17234 | 17237 | 17330 | 17333 | 17342 | 17345 | 17546
+ | 17549 | 17558 | 17561 | 17654 | 17657 | 17666 | 17669 | 19039 | 19042 | 19051
+ | 19054 | 19147 | 19150 | 19159 | 19162 | 19459 | 19462 | 19471 | 19474 | 19567
+ | 19570 | 19579 | 19582 | 19896 | 19899 | 19908 | 19911 | 20004 | 20007 | 20016
+ | 20019 | 21778 | 21781 | 21790 | 21793 | 21886 | 21889 | 21898 | 21901 | 22189
+ | 22192 | 22201 | 22204 | 22297 | 22300 | 22309 | 22312 | 22600 | 22603 | 22612
+ | 22615 | 22708 | 22711 | 22720 | 22723 | 23011 | 23014 | 23023 | 23026 | 23119
+ | 23122 | 23131 | 23134 => &SHAPE160,
+ 7816..=7817
+ | 7819..=7820
+ | 7828..=7829
+ | 7831..=7832
+ | 7924..=7925
+ | 7927..=7928
+ | 7936..=7937
+ | 7939..=7940
+ | 8140..=8141
+ | 8143..=8144
+ | 8152..=8153
+ | 8155..=8156
+ | 8248..=8249
+ | 8251..=8252
+ | 8260..=8261
+ | 8263..=8264
+ | 13659..=13660
+ | 13662..=13663
+ | 13671..=13672
+ | 13674..=13675
+ | 13767..=13768
+ | 13770..=13771
+ | 13779..=13780
+ | 13782..=13783
+ | 13983..=13984
+ | 13986..=13987
+ | 13995..=13996
+ | 13998..=13999
+ | 14091..=14092
+ | 14094..=14095
+ | 14103..=14104
+ | 14106..=14107
+ | 14307..=14308
+ | 14310..=14311
+ | 14319..=14320
+ | 14322..=14323
+ | 14415..=14416
+ | 14418..=14419
+ | 14427..=14428
+ | 14430..=14431
+ | 14631..=14632
+ | 14634..=14635
+ | 14643..=14644
+ | 14646..=14647
+ | 14739..=14740
+ | 14742..=14743
+ | 14751..=14752
+ | 14754..=14755
+ | 14955..=14956
+ | 14958..=14959
+ | 14967..=14968
+ | 14970..=14971
+ | 15063..=15064
+ | 15066..=15067
+ | 15075..=15076
+ | 15078..=15079
+ | 15279..=15280
+ | 15282..=15283
+ | 15291..=15292
+ | 15294..=15295
+ | 15387..=15388
+ | 15390..=15391
+ | 15399..=15400
+ | 15402..=15403
+ | 15603..=15604
+ | 15606..=15607
+ | 15615..=15616
+ | 15618..=15619
+ | 15711..=15712
+ | 15714..=15715
+ | 15723..=15724
+ | 15726..=15727
+ | 15927..=15928
+ | 15930..=15931
+ | 15939..=15940
+ | 15942..=15943
+ | 16035..=16036
+ | 16038..=16039
+ | 16047..=16048
+ | 16050..=16051
+ | 16251..=16252
+ | 16254..=16255
+ | 16263..=16264
+ | 16266..=16267
+ | 16359..=16360
+ | 16362..=16363
+ | 16371..=16372
+ | 16374..=16375
+ | 16575..=16576
+ | 16578..=16579
+ | 16587..=16588
+ | 16590..=16591
+ | 16683..=16684
+ | 16686..=16687
+ | 16695..=16696
+ | 16698..=16699
+ | 16899..=16900
+ | 16902..=16903
+ | 16911..=16912
+ | 16914..=16915
+ | 17007..=17008
+ | 17010..=17011
+ | 17019..=17020
+ | 17022..=17023
+ | 17223..=17224
+ | 17226..=17227
+ | 17235..=17236
+ | 17238..=17239
+ | 17331..=17332
+ | 17334..=17335
+ | 17343..=17344
+ | 17346..=17347
+ | 17547..=17548
+ | 17550..=17551
+ | 17559..=17560
+ | 17562..=17563
+ | 17655..=17656
+ | 17658..=17659
+ | 17667..=17668
+ | 17670..=17671
+ | 19040..=19041
+ | 19043..=19044
+ | 19052..=19053
+ | 19055..=19056
+ | 19148..=19149
+ | 19151..=19152
+ | 19160..=19161
+ | 19163..=19164
+ | 19460..=19461
+ | 19463..=19464
+ | 19472..=19473
+ | 19475..=19476
+ | 19568..=19569
+ | 19571..=19572
+ | 19580..=19581
+ | 19583..=19584
+ | 19897..=19898
+ | 19900..=19901
+ | 19909..=19910
+ | 19912..=19913
+ | 20005..=20006
+ | 20008..=20009
+ | 20017..=20018
+ | 20020..=20021
+ | 21779..=21780
+ | 21782..=21783
+ | 21791..=21792
+ | 21794..=21795
+ | 21887..=21888
+ | 21890..=21891
+ | 21899..=21900
+ | 21902..=21903
+ | 22190..=22191
+ | 22193..=22194
+ | 22202..=22203
+ | 22205..=22206
+ | 22298..=22299
+ | 22301..=22302
+ | 22310..=22311
+ | 22313..=22314
+ | 22601..=22602
+ | 22604..=22605
+ | 22613..=22614
+ | 22616..=22617
+ | 22709..=22710
+ | 22712..=22713
+ | 22721..=22722
+ | 22724..=22725
+ | 23012..=23013
+ | 23015..=23016
+ | 23024..=23025
+ | 23027..=23028
+ | 23120..=23121
+ | 23123..=23124
+ | 23132..=23133
+ | 23135..=23136 => &SHAPE161,
+ 7833 | 7836 | 7869 | 7872 | 7941 | 7944 | 7977 | 7980 | 8157 | 8160 | 8193 | 8196
+ | 8265 | 8268 | 8301 | 8304 | 13676 | 13679 | 13712 | 13715 | 13784 | 13787 | 13820
+ | 13823 | 14000 | 14003 | 14036 | 14039 | 14108 | 14111 | 14144 | 14147 | 14324
+ | 14327 | 14360 | 14363 | 14432 | 14435 | 14468 | 14471 | 14648 | 14651 | 14684
+ | 14687 | 14756 | 14759 | 14792 | 14795 | 14972 | 14975 | 15008 | 15011 | 15080
+ | 15083 | 15116 | 15119 | 15296 | 15299 | 15332 | 15335 | 15404 | 15407 | 15440
+ | 15443 | 15620 | 15623 | 15656 | 15659 | 15728 | 15731 | 15764 | 15767 | 15944
+ | 15947 | 15980 | 15983 | 16052 | 16055 | 16088 | 16091 | 16268 | 16271 | 16304
+ | 16307 | 16376 | 16379 | 16412 | 16415 | 16592 | 16595 | 16628 | 16631 | 16700
+ | 16703 | 16736 | 16739 | 16916 | 16919 | 16952 | 16955 | 17024 | 17027 | 17060
+ | 17063 | 17240 | 17243 | 17276 | 17279 | 17348 | 17351 | 17384 | 17387 | 17564
+ | 17567 | 17600 | 17603 | 17672 | 17675 | 17708 | 17711 | 19057 | 19060 | 19093
+ | 19096 | 19165 | 19168 | 19201 | 19204 | 19477 | 19480 | 19513 | 19516 | 19585
+ | 19588 | 19621 | 19624 | 19914 | 19917 | 19950 | 19953 | 20022 | 20025 | 20058
+ | 20061 | 21796 | 21799 | 21832 | 21835 | 21904 | 21907 | 21940 | 21943 | 22207
+ | 22210 | 22243 | 22246 | 22315 | 22318 | 22351 | 22354 | 22618 | 22621 | 22654
+ | 22657 | 22726 | 22729 | 22762 | 22765 | 23029 | 23032 | 23065 | 23068 | 23137
+ | 23140 | 23173 | 23176 => &SHAPE162,
+ 7834..=7835
+ | 7837..=7838
+ | 7870..=7871
+ | 7873..=7874
+ | 7942..=7943
+ | 7945..=7946
+ | 7978..=7979
+ | 7981..=7982
+ | 8158..=8159
+ | 8161..=8162
+ | 8194..=8195
+ | 8197..=8198
+ | 8266..=8267
+ | 8269..=8270
+ | 8302..=8303
+ | 8305..=8306
+ | 13677..=13678
+ | 13680..=13681
+ | 13713..=13714
+ | 13716..=13717
+ | 13785..=13786
+ | 13788..=13789
+ | 13821..=13822
+ | 13824..=13825
+ | 14001..=14002
+ | 14004..=14005
+ | 14037..=14038
+ | 14040..=14041
+ | 14109..=14110
+ | 14112..=14113
+ | 14145..=14146
+ | 14148..=14149
+ | 14325..=14326
+ | 14328..=14329
+ | 14361..=14362
+ | 14364..=14365
+ | 14433..=14434
+ | 14436..=14437
+ | 14469..=14470
+ | 14472..=14473
+ | 14649..=14650
+ | 14652..=14653
+ | 14685..=14686
+ | 14688..=14689
+ | 14757..=14758
+ | 14760..=14761
+ | 14793..=14794
+ | 14796..=14797
+ | 14973..=14974
+ | 14976..=14977
+ | 15009..=15010
+ | 15012..=15013
+ | 15081..=15082
+ | 15084..=15085
+ | 15117..=15118
+ | 15120..=15121
+ | 15297..=15298
+ | 15300..=15301
+ | 15333..=15334
+ | 15336..=15337
+ | 15405..=15406
+ | 15408..=15409
+ | 15441..=15442
+ | 15444..=15445
+ | 15621..=15622
+ | 15624..=15625
+ | 15657..=15658
+ | 15660..=15661
+ | 15729..=15730
+ | 15732..=15733
+ | 15765..=15766
+ | 15768..=15769
+ | 15945..=15946
+ | 15948..=15949
+ | 15981..=15982
+ | 15984..=15985
+ | 16053..=16054
+ | 16056..=16057
+ | 16089..=16090
+ | 16092..=16093
+ | 16269..=16270
+ | 16272..=16273
+ | 16305..=16306
+ | 16308..=16309
+ | 16377..=16378
+ | 16380..=16381
+ | 16413..=16414
+ | 16416..=16417
+ | 16593..=16594
+ | 16596..=16597
+ | 16629..=16630
+ | 16632..=16633
+ | 16701..=16702
+ | 16704..=16705
+ | 16737..=16738
+ | 16740..=16741
+ | 16917..=16918
+ | 16920..=16921
+ | 16953..=16954
+ | 16956..=16957
+ | 17025..=17026
+ | 17028..=17029
+ | 17061..=17062
+ | 17064..=17065
+ | 17241..=17242
+ | 17244..=17245
+ | 17277..=17278
+ | 17280..=17281
+ | 17349..=17350
+ | 17352..=17353
+ | 17385..=17386
+ | 17388..=17389
+ | 17565..=17566
+ | 17568..=17569
+ | 17601..=17602
+ | 17604..=17605
+ | 17673..=17674
+ | 17676..=17677
+ | 17709..=17710
+ | 17712..=17713
+ | 19058..=19059
+ | 19061..=19062
+ | 19094..=19095
+ | 19097..=19098
+ | 19166..=19167
+ | 19169..=19170
+ | 19202..=19203
+ | 19205..=19206
+ | 19478..=19479
+ | 19481..=19482
+ | 19514..=19515
+ | 19517..=19518
+ | 19586..=19587
+ | 19589..=19590
+ | 19622..=19623
+ | 19625..=19626
+ | 19915..=19916
+ | 19918..=19919
+ | 19951..=19952
+ | 19954..=19955
+ | 20023..=20024
+ | 20026..=20027
+ | 20059..=20060
+ | 20062..=20063
+ | 21797..=21798
+ | 21800..=21801
+ | 21833..=21834
+ | 21836..=21837
+ | 21905..=21906
+ | 21908..=21909
+ | 21941..=21942
+ | 21944..=21945
+ | 22208..=22209
+ | 22211..=22212
+ | 22244..=22245
+ | 22247..=22248
+ | 22316..=22317
+ | 22319..=22320
+ | 22352..=22353
+ | 22355..=22356
+ | 22619..=22620
+ | 22622..=22623
+ | 22655..=22656
+ | 22658..=22659
+ | 22727..=22728
+ | 22730..=22731
+ | 22763..=22764
+ | 22766..=22767
+ | 23030..=23031
+ | 23033..=23034
+ | 23066..=23067
+ | 23069..=23070
+ | 23138..=23139
+ | 23141..=23142
+ | 23174..=23175
+ | 23177..=23178 => &SHAPE163,
+ 7839 | 7842 | 7875 | 7878 | 7947 | 7950 | 7983 | 7986 | 8163 | 8166 | 8199 | 8202
+ | 8271 | 8274 | 8307 | 8310 | 13682 | 13685 | 13718 | 13721 | 13790 | 13793 | 13826
+ | 13829 | 14006 | 14009 | 14042 | 14045 | 14114 | 14117 | 14150 | 14153 | 14330
+ | 14333 | 14366 | 14369 | 14438 | 14441 | 14474 | 14477 | 14654 | 14657 | 14690
+ | 14693 | 14762 | 14765 | 14798 | 14801 | 14978 | 14981 | 15014 | 15017 | 15086
+ | 15089 | 15122 | 15125 | 15302 | 15305 | 15338 | 15341 | 15410 | 15413 | 15446
+ | 15449 | 15626 | 15629 | 15662 | 15665 | 15734 | 15737 | 15770 | 15773 | 15950
+ | 15953 | 15986 | 15989 | 16058 | 16061 | 16094 | 16097 | 16274 | 16277 | 16310
+ | 16313 | 16382 | 16385 | 16418 | 16421 | 16598 | 16601 | 16634 | 16637 | 16706
+ | 16709 | 16742 | 16745 | 16922 | 16925 | 16958 | 16961 | 17030 | 17033 | 17066
+ | 17069 | 17246 | 17249 | 17282 | 17285 | 17354 | 17357 | 17390 | 17393 | 17570
+ | 17573 | 17606 | 17609 | 17678 | 17681 | 17714 | 17717 | 19063 | 19066 | 19099
+ | 19102 | 19171 | 19174 | 19207 | 19210 | 19483 | 19486 | 19519 | 19522 | 19591
+ | 19594 | 19627 | 19630 | 19920 | 19923 | 19956 | 19959 | 20028 | 20031 | 20064
+ | 20067 | 21802 | 21805 | 21838 | 21841 | 21910 | 21913 | 21946 | 21949 | 22213
+ | 22216 | 22249 | 22252 | 22321 | 22324 | 22357 | 22360 | 22624 | 22627 | 22660
+ | 22663 | 22732 | 22735 | 22768 | 22771 | 23035 | 23038 | 23071 | 23074 | 23143
+ | 23146 | 23179 | 23182 => &SHAPE164,
+ 7840..=7841
+ | 7843..=7844
+ | 7876..=7877
+ | 7879..=7880
+ | 7948..=7949
+ | 7951..=7952
+ | 7984..=7985
+ | 7987..=7988
+ | 8164..=8165
+ | 8167..=8168
+ | 8200..=8201
+ | 8203..=8204
+ | 8272..=8273
+ | 8275..=8276
+ | 8308..=8309
+ | 8311..=8312
+ | 13683..=13684
+ | 13686..=13687
+ | 13719..=13720
+ | 13722..=13723
+ | 13791..=13792
+ | 13794..=13795
+ | 13827..=13828
+ | 13830..=13831
+ | 14007..=14008
+ | 14010..=14011
+ | 14043..=14044
+ | 14046..=14047
+ | 14115..=14116
+ | 14118..=14119
+ | 14151..=14152
+ | 14154..=14155
+ | 14331..=14332
+ | 14334..=14335
+ | 14367..=14368
+ | 14370..=14371
+ | 14439..=14440
+ | 14442..=14443
+ | 14475..=14476
+ | 14478..=14479
+ | 14655..=14656
+ | 14658..=14659
+ | 14691..=14692
+ | 14694..=14695
+ | 14763..=14764
+ | 14766..=14767
+ | 14799..=14800
+ | 14802..=14803
+ | 14979..=14980
+ | 14982..=14983
+ | 15015..=15016
+ | 15018..=15019
+ | 15087..=15088
+ | 15090..=15091
+ | 15123..=15124
+ | 15126..=15127
+ | 15303..=15304
+ | 15306..=15307
+ | 15339..=15340
+ | 15342..=15343
+ | 15411..=15412
+ | 15414..=15415
+ | 15447..=15448
+ | 15450..=15451
+ | 15627..=15628
+ | 15630..=15631
+ | 15663..=15664
+ | 15666..=15667
+ | 15735..=15736
+ | 15738..=15739
+ | 15771..=15772
+ | 15774..=15775
+ | 15951..=15952
+ | 15954..=15955
+ | 15987..=15988
+ | 15990..=15991
+ | 16059..=16060
+ | 16062..=16063
+ | 16095..=16096
+ | 16098..=16099
+ | 16275..=16276
+ | 16278..=16279
+ | 16311..=16312
+ | 16314..=16315
+ | 16383..=16384
+ | 16386..=16387
+ | 16419..=16420
+ | 16422..=16423
+ | 16599..=16600
+ | 16602..=16603
+ | 16635..=16636
+ | 16638..=16639
+ | 16707..=16708
+ | 16710..=16711
+ | 16743..=16744
+ | 16746..=16747
+ | 16923..=16924
+ | 16926..=16927
+ | 16959..=16960
+ | 16962..=16963
+ | 17031..=17032
+ | 17034..=17035
+ | 17067..=17068
+ | 17070..=17071
+ | 17247..=17248
+ | 17250..=17251
+ | 17283..=17284
+ | 17286..=17287
+ | 17355..=17356
+ | 17358..=17359
+ | 17391..=17392
+ | 17394..=17395
+ | 17571..=17572
+ | 17574..=17575
+ | 17607..=17608
+ | 17610..=17611
+ | 17679..=17680
+ | 17682..=17683
+ | 17715..=17716
+ | 17718..=17719
+ | 19064..=19065
+ | 19067..=19068
+ | 19100..=19101
+ | 19103..=19104
+ | 19172..=19173
+ | 19175..=19176
+ | 19208..=19209
+ | 19211..=19212
+ | 19484..=19485
+ | 19487..=19488
+ | 19520..=19521
+ | 19523..=19524
+ | 19592..=19593
+ | 19595..=19596
+ | 19628..=19629
+ | 19631..=19632
+ | 19921..=19922
+ | 19924..=19925
+ | 19957..=19958
+ | 19960..=19961
+ | 20029..=20030
+ | 20032..=20033
+ | 20065..=20066
+ | 20068..=20069
+ | 21803..=21804
+ | 21806..=21807
+ | 21839..=21840
+ | 21842..=21843
+ | 21911..=21912
+ | 21914..=21915
+ | 21947..=21948
+ | 21950..=21951
+ | 22214..=22215
+ | 22217..=22218
+ | 22250..=22251
+ | 22253..=22254
+ | 22322..=22323
+ | 22325..=22326
+ | 22358..=22359
+ | 22361..=22362
+ | 22625..=22626
+ | 22628..=22629
+ | 22661..=22662
+ | 22664..=22665
+ | 22733..=22734
+ | 22736..=22737
+ | 22769..=22770
+ | 22772..=22773
+ | 23036..=23037
+ | 23039..=23040
+ | 23072..=23073
+ | 23075..=23076
+ | 23144..=23145
+ | 23147..=23148
+ | 23180..=23181
+ | 23183..=23184 => &SHAPE165,
+ 7845 | 7848 | 7857 | 7860 | 7881 | 7884 | 7893 | 7896 | 7953 | 7956 | 7965 | 7968
+ | 7989 | 7992 | 8001 | 8004 | 8169 | 8172 | 8181 | 8184 | 8205 | 8208 | 8217 | 8220
+ | 8277 | 8280 | 8289 | 8292 | 8313 | 8316 | 8325 | 8328 | 13688 | 13691 | 13700
+ | 13703 | 13724 | 13727 | 13736 | 13739 | 13796 | 13799 | 13808 | 13811 | 13832
+ | 13835 | 13844 | 13847 | 14012 | 14015 | 14024 | 14027 | 14048 | 14051 | 14060
+ | 14063 | 14120 | 14123 | 14132 | 14135 | 14156 | 14159 | 14168 | 14171 | 14336
+ | 14339 | 14348 | 14351 | 14372 | 14375 | 14384 | 14387 | 14444 | 14447 | 14456
+ | 14459 | 14480 | 14483 | 14492 | 14495 | 14660 | 14663 | 14672 | 14675 | 14696
+ | 14699 | 14708 | 14711 | 14768 | 14771 | 14780 | 14783 | 14804 | 14807 | 14816
+ | 14819 | 14984 | 14987 | 14996 | 14999 | 15020 | 15023 | 15032 | 15035 | 15092
+ | 15095 | 15104 | 15107 | 15128 | 15131 | 15140 | 15143 | 15308 | 15311 | 15320
+ | 15323 | 15344 | 15347 | 15356 | 15359 | 15416 | 15419 | 15428 | 15431 | 15452
+ | 15455 | 15464 | 15467 | 15632 | 15635 | 15644 | 15647 | 15668 | 15671 | 15680
+ | 15683 | 15740 | 15743 | 15752 | 15755 | 15776 | 15779 | 15788 | 15791 | 15956
+ | 15959 | 15968 | 15971 | 15992 | 15995 | 16004 | 16007 | 16064 | 16067 | 16076
+ | 16079 | 16100 | 16103 | 16112 | 16115 | 16280 | 16283 | 16292 | 16295 | 16316
+ | 16319 | 16328 | 16331 | 16388 | 16391 | 16400 | 16403 | 16424 | 16427 | 16436
+ | 16439 | 16604 | 16607 | 16616 | 16619 | 16640 | 16643 | 16652 | 16655 | 16712
+ | 16715 | 16724 | 16727 | 16748 | 16751 | 16760 | 16763 | 16928 | 16931 | 16940
+ | 16943 | 16964 | 16967 | 16976 | 16979 | 17036 | 17039 | 17048 | 17051 | 17072
+ | 17075 | 17084 | 17087 | 17252 | 17255 | 17264 | 17267 | 17288 | 17291 | 17300
+ | 17303 | 17360 | 17363 | 17372 | 17375 | 17396 | 17399 | 17408 | 17411 | 17576
+ | 17579 | 17588 | 17591 | 17612 | 17615 | 17624 | 17627 | 17684 | 17687 | 17696
+ | 17699 | 17720 | 17723 | 17732 | 17735 | 19069 | 19072 | 19081 | 19084 | 19105
+ | 19108 | 19117 | 19120 | 19177 | 19180 | 19189 | 19192 | 19213 | 19216 | 19225
+ | 19228 | 19489 | 19492 | 19501 | 19504 | 19525 | 19528 | 19537 | 19540 | 19597
+ | 19600 | 19609 | 19612 | 19633 | 19636 | 19645 | 19648 | 19926 | 19929 | 19938
+ | 19941 | 19962 | 19965 | 19974 | 19977 | 20034 | 20037 | 20046 | 20049 | 20070
+ | 20073 | 20082 | 20085 | 21808 | 21811 | 21820 | 21823 | 21844 | 21847 | 21856
+ | 21859 | 21916 | 21919 | 21928 | 21931 | 21952 | 21955 | 21964 | 21967 | 22219
+ | 22222 | 22231 | 22234 | 22255 | 22258 | 22267 | 22270 | 22327 | 22330 | 22339
+ | 22342 | 22363 | 22366 | 22375 | 22378 | 22630 | 22633 | 22642 | 22645 | 22666
+ | 22669 | 22678 | 22681 | 22738 | 22741 | 22750 | 22753 | 22774 | 22777 | 22786
+ | 22789 | 23041 | 23044 | 23053 | 23056 | 23077 | 23080 | 23089 | 23092 | 23149
+ | 23152 | 23161 | 23164 | 23185 | 23188 | 23197 | 23200 => &SHAPE166,
+ 7846..=7847
+ | 7849..=7850
+ | 7858..=7859
+ | 7861..=7862
+ | 7882..=7883
+ | 7885..=7886
+ | 7894..=7895
+ | 7897..=7898
+ | 7954..=7955
+ | 7957..=7958
+ | 7966..=7967
+ | 7969..=7970
+ | 7990..=7991
+ | 7993..=7994
+ | 8002..=8003
+ | 8005..=8006
+ | 8170..=8171
+ | 8173..=8174
+ | 8182..=8183
+ | 8185..=8186
+ | 8206..=8207
+ | 8209..=8210
+ | 8218..=8219
+ | 8221..=8222
+ | 8278..=8279
+ | 8281..=8282
+ | 8290..=8291
+ | 8293..=8294
+ | 8314..=8315
+ | 8317..=8318
+ | 8326..=8327
+ | 8329..=8330
+ | 13689..=13690
+ | 13692..=13693
+ | 13701..=13702
+ | 13704..=13705
+ | 13725..=13726
+ | 13728..=13729
+ | 13737..=13738
+ | 13740..=13741
+ | 13797..=13798
+ | 13800..=13801
+ | 13809..=13810
+ | 13812..=13813
+ | 13833..=13834
+ | 13836..=13837
+ | 13845..=13846
+ | 13848..=13849
+ | 14013..=14014
+ | 14016..=14017
+ | 14025..=14026
+ | 14028..=14029
+ | 14049..=14050
+ | 14052..=14053
+ | 14061..=14062
+ | 14064..=14065
+ | 14121..=14122
+ | 14124..=14125
+ | 14133..=14134
+ | 14136..=14137
+ | 14157..=14158
+ | 14160..=14161
+ | 14169..=14170
+ | 14172..=14173
+ | 14337..=14338
+ | 14340..=14341
+ | 14349..=14350
+ | 14352..=14353
+ | 14373..=14374
+ | 14376..=14377
+ | 14385..=14386
+ | 14388..=14389
+ | 14445..=14446
+ | 14448..=14449
+ | 14457..=14458
+ | 14460..=14461
+ | 14481..=14482
+ | 14484..=14485
+ | 14493..=14494
+ | 14496..=14497
+ | 14661..=14662
+ | 14664..=14665
+ | 14673..=14674
+ | 14676..=14677
+ | 14697..=14698
+ | 14700..=14701
+ | 14709..=14710
+ | 14712..=14713
+ | 14769..=14770
+ | 14772..=14773
+ | 14781..=14782
+ | 14784..=14785
+ | 14805..=14806
+ | 14808..=14809
+ | 14817..=14818
+ | 14820..=14821
+ | 14985..=14986
+ | 14988..=14989
+ | 14997..=14998
+ | 15000..=15001
+ | 15021..=15022
+ | 15024..=15025
+ | 15033..=15034
+ | 15036..=15037
+ | 15093..=15094
+ | 15096..=15097
+ | 15105..=15106
+ | 15108..=15109
+ | 15129..=15130
+ | 15132..=15133
+ | 15141..=15142
+ | 15144..=15145
+ | 15309..=15310
+ | 15312..=15313
+ | 15321..=15322
+ | 15324..=15325
+ | 15345..=15346
+ | 15348..=15349
+ | 15357..=15358
+ | 15360..=15361
+ | 15417..=15418
+ | 15420..=15421
+ | 15429..=15430
+ | 15432..=15433
+ | 15453..=15454
+ | 15456..=15457
+ | 15465..=15466
+ | 15468..=15469
+ | 15633..=15634
+ | 15636..=15637
+ | 15645..=15646
+ | 15648..=15649
+ | 15669..=15670
+ | 15672..=15673
+ | 15681..=15682
+ | 15684..=15685
+ | 15741..=15742
+ | 15744..=15745
+ | 15753..=15754
+ | 15756..=15757
+ | 15777..=15778
+ | 15780..=15781
+ | 15789..=15790
+ | 15792..=15793
+ | 15957..=15958
+ | 15960..=15961
+ | 15969..=15970
+ | 15972..=15973
+ | 15993..=15994
+ | 15996..=15997
+ | 16005..=16006
+ | 16008..=16009
+ | 16065..=16066
+ | 16068..=16069
+ | 16077..=16078
+ | 16080..=16081
+ | 16101..=16102
+ | 16104..=16105
+ | 16113..=16114
+ | 16116..=16117
+ | 16281..=16282
+ | 16284..=16285
+ | 16293..=16294
+ | 16296..=16297
+ | 16317..=16318
+ | 16320..=16321
+ | 16329..=16330
+ | 16332..=16333
+ | 16389..=16390
+ | 16392..=16393
+ | 16401..=16402
+ | 16404..=16405
+ | 16425..=16426
+ | 16428..=16429
+ | 16437..=16438
+ | 16440..=16441
+ | 16605..=16606
+ | 16608..=16609
+ | 16617..=16618
+ | 16620..=16621
+ | 16641..=16642
+ | 16644..=16645
+ | 16653..=16654
+ | 16656..=16657
+ | 16713..=16714
+ | 16716..=16717
+ | 16725..=16726
+ | 16728..=16729
+ | 16749..=16750
+ | 16752..=16753
+ | 16761..=16762
+ | 16764..=16765
+ | 16929..=16930
+ | 16932..=16933
+ | 16941..=16942
+ | 16944..=16945
+ | 16965..=16966
+ | 16968..=16969
+ | 16977..=16978
+ | 16980..=16981
+ | 17037..=17038
+ | 17040..=17041
+ | 17049..=17050
+ | 17052..=17053
+ | 17073..=17074
+ | 17076..=17077
+ | 17085..=17086
+ | 17088..=17089
+ | 17253..=17254
+ | 17256..=17257
+ | 17265..=17266
+ | 17268..=17269
+ | 17289..=17290
+ | 17292..=17293
+ | 17301..=17302
+ | 17304..=17305
+ | 17361..=17362
+ | 17364..=17365
+ | 17373..=17374
+ | 17376..=17377
+ | 17397..=17398
+ | 17400..=17401
+ | 17409..=17410
+ | 17412..=17413
+ | 17577..=17578
+ | 17580..=17581
+ | 17589..=17590
+ | 17592..=17593
+ | 17613..=17614
+ | 17616..=17617
+ | 17625..=17626
+ | 17628..=17629
+ | 17685..=17686
+ | 17688..=17689
+ | 17697..=17698
+ | 17700..=17701
+ | 17721..=17722
+ | 17724..=17725
+ | 17733..=17734
+ | 17736..=17737
+ | 19070..=19071
+ | 19073..=19074
+ | 19082..=19083
+ | 19085..=19086
+ | 19106..=19107
+ | 19109..=19110
+ | 19118..=19119
+ | 19121..=19122
+ | 19178..=19179
+ | 19181..=19182
+ | 19190..=19191
+ | 19193..=19194
+ | 19214..=19215
+ | 19217..=19218
+ | 19226..=19227
+ | 19229..=19230
+ | 19490..=19491
+ | 19493..=19494
+ | 19502..=19503
+ | 19505..=19506
+ | 19526..=19527
+ | 19529..=19530
+ | 19538..=19539
+ | 19541..=19542
+ | 19598..=19599
+ | 19601..=19602
+ | 19610..=19611
+ | 19613..=19614
+ | 19634..=19635
+ | 19637..=19638
+ | 19646..=19647
+ | 19649..=19650
+ | 19927..=19928
+ | 19930..=19931
+ | 19939..=19940
+ | 19942..=19943
+ | 19963..=19964
+ | 19966..=19967
+ | 19975..=19976
+ | 19978..=19979
+ | 20035..=20036
+ | 20038..=20039
+ | 20047..=20048
+ | 20050..=20051
+ | 20071..=20072
+ | 20074..=20075
+ | 20083..=20084
+ | 20086..=20087
+ | 21809..=21810
+ | 21812..=21813
+ | 21821..=21822
+ | 21824..=21825
+ | 21845..=21846
+ | 21848..=21849
+ | 21857..=21858
+ | 21860..=21861
+ | 21917..=21918
+ | 21920..=21921
+ | 21929..=21930
+ | 21932..=21933
+ | 21953..=21954
+ | 21956..=21957
+ | 21965..=21966
+ | 21968..=21969
+ | 22220..=22221
+ | 22223..=22224
+ | 22232..=22233
+ | 22235..=22236
+ | 22256..=22257
+ | 22259..=22260
+ | 22268..=22269
+ | 22271..=22272
+ | 22328..=22329
+ | 22331..=22332
+ | 22340..=22341
+ | 22343..=22344
+ | 22364..=22365
+ | 22367..=22368
+ | 22376..=22377
+ | 22379..=22380
+ | 22631..=22632
+ | 22634..=22635
+ | 22643..=22644
+ | 22646..=22647
+ | 22667..=22668
+ | 22670..=22671
+ | 22679..=22680
+ | 22682..=22683
+ | 22739..=22740
+ | 22742..=22743
+ | 22751..=22752
+ | 22754..=22755
+ | 22775..=22776
+ | 22778..=22779
+ | 22787..=22788
+ | 22790..=22791
+ | 23042..=23043
+ | 23045..=23046
+ | 23054..=23055
+ | 23057..=23058
+ | 23078..=23079
+ | 23081..=23082
+ | 23090..=23091
+ | 23093..=23094
+ | 23150..=23151
+ | 23153..=23154
+ | 23162..=23163
+ | 23165..=23166
+ | 23186..=23187
+ | 23189..=23190
+ | 23198..=23199
+ | 23201..=23202 => &SHAPE167,
+ 7851 | 7854 | 7863 | 7866 | 7887 | 7890 | 7899 | 7902 | 7959 | 7962 | 7971 | 7974
+ | 7995 | 7998 | 8007 | 8010 | 8175 | 8178 | 8187 | 8190 | 8211 | 8214 | 8223 | 8226
+ | 8283 | 8286 | 8295 | 8298 | 8319 | 8322 | 8331 | 8334 | 13694 | 13697 | 13706
+ | 13709 | 13730 | 13733 | 13742 | 13745 | 13802 | 13805 | 13814 | 13817 | 13838
+ | 13841 | 13850 | 13853 | 14018 | 14021 | 14030 | 14033 | 14054 | 14057 | 14066
+ | 14069 | 14126 | 14129 | 14138 | 14141 | 14162 | 14165 | 14174 | 14177 | 14342
+ | 14345 | 14354 | 14357 | 14378 | 14381 | 14390 | 14393 | 14450 | 14453 | 14462
+ | 14465 | 14486 | 14489 | 14498 | 14501 | 14666 | 14669 | 14678 | 14681 | 14702
+ | 14705 | 14714 | 14717 | 14774 | 14777 | 14786 | 14789 | 14810 | 14813 | 14822
+ | 14825 | 14990 | 14993 | 15002 | 15005 | 15026 | 15029 | 15038 | 15041 | 15098
+ | 15101 | 15110 | 15113 | 15134 | 15137 | 15146 | 15149 | 15314 | 15317 | 15326
+ | 15329 | 15350 | 15353 | 15362 | 15365 | 15422 | 15425 | 15434 | 15437 | 15458
+ | 15461 | 15470 | 15473 | 15638 | 15641 | 15650 | 15653 | 15674 | 15677 | 15686
+ | 15689 | 15746 | 15749 | 15758 | 15761 | 15782 | 15785 | 15794 | 15797 | 15962
+ | 15965 | 15974 | 15977 | 15998 | 16001 | 16010 | 16013 | 16070 | 16073 | 16082
+ | 16085 | 16106 | 16109 | 16118 | 16121 | 16286 | 16289 | 16298 | 16301 | 16322
+ | 16325 | 16334 | 16337 | 16394 | 16397 | 16406 | 16409 | 16430 | 16433 | 16442
+ | 16445 | 16610 | 16613 | 16622 | 16625 | 16646 | 16649 | 16658 | 16661 | 16718
+ | 16721 | 16730 | 16733 | 16754 | 16757 | 16766 | 16769 | 16934 | 16937 | 16946
+ | 16949 | 16970 | 16973 | 16982 | 16985 | 17042 | 17045 | 17054 | 17057 | 17078
+ | 17081 | 17090 | 17093 | 17258 | 17261 | 17270 | 17273 | 17294 | 17297 | 17306
+ | 17309 | 17366 | 17369 | 17378 | 17381 | 17402 | 17405 | 17414 | 17417 | 17582
+ | 17585 | 17594 | 17597 | 17618 | 17621 | 17630 | 17633 | 17690 | 17693 | 17702
+ | 17705 | 17726 | 17729 | 17738 | 17741 | 19075 | 19078 | 19087 | 19090 | 19111
+ | 19114 | 19123 | 19126 | 19183 | 19186 | 19195 | 19198 | 19219 | 19222 | 19231
+ | 19234 | 19495 | 19498 | 19507 | 19510 | 19531 | 19534 | 19543 | 19546 | 19603
+ | 19606 | 19615 | 19618 | 19639 | 19642 | 19651 | 19654 | 19932 | 19935 | 19944
+ | 19947 | 19968 | 19971 | 19980 | 19983 | 20040 | 20043 | 20052 | 20055 | 20076
+ | 20079 | 20088 | 20091 | 21814 | 21817 | 21826 | 21829 | 21850 | 21853 | 21862
+ | 21865 | 21922 | 21925 | 21934 | 21937 | 21958 | 21961 | 21970 | 21973 | 22225
+ | 22228 | 22237 | 22240 | 22261 | 22264 | 22273 | 22276 | 22333 | 22336 | 22345
+ | 22348 | 22369 | 22372 | 22381 | 22384 | 22636 | 22639 | 22648 | 22651 | 22672
+ | 22675 | 22684 | 22687 | 22744 | 22747 | 22756 | 22759 | 22780 | 22783 | 22792
+ | 22795 | 23047 | 23050 | 23059 | 23062 | 23083 | 23086 | 23095 | 23098 | 23155
+ | 23158 | 23167 | 23170 | 23191 | 23194 | 23203 | 23206 => &SHAPE168,
+ 7852..=7853
+ | 7855..=7856
+ | 7864..=7865
+ | 7867..=7868
+ | 7888..=7889
+ | 7891..=7892
+ | 7900..=7901
+ | 7903..=7904
+ | 7960..=7961
+ | 7963..=7964
+ | 7972..=7973
+ | 7975..=7976
+ | 7996..=7997
+ | 7999..=8000
+ | 8008..=8009
+ | 8011..=8012
+ | 8176..=8177
+ | 8179..=8180
+ | 8188..=8189
+ | 8191..=8192
+ | 8212..=8213
+ | 8215..=8216
+ | 8224..=8225
+ | 8227..=8228
+ | 8284..=8285
+ | 8287..=8288
+ | 8296..=8297
+ | 8299..=8300
+ | 8320..=8321
+ | 8323..=8324
+ | 8332..=8333
+ | 8335..=8336
+ | 13695..=13696
+ | 13698..=13699
+ | 13707..=13708
+ | 13710..=13711
+ | 13731..=13732
+ | 13734..=13735
+ | 13743..=13744
+ | 13746..=13747
+ | 13803..=13804
+ | 13806..=13807
+ | 13815..=13816
+ | 13818..=13819
+ | 13839..=13840
+ | 13842..=13843
+ | 13851..=13852
+ | 13854..=13855
+ | 14019..=14020
+ | 14022..=14023
+ | 14031..=14032
+ | 14034..=14035
+ | 14055..=14056
+ | 14058..=14059
+ | 14067..=14068
+ | 14070..=14071
+ | 14127..=14128
+ | 14130..=14131
+ | 14139..=14140
+ | 14142..=14143
+ | 14163..=14164
+ | 14166..=14167
+ | 14175..=14176
+ | 14178..=14179
+ | 14343..=14344
+ | 14346..=14347
+ | 14355..=14356
+ | 14358..=14359
+ | 14379..=14380
+ | 14382..=14383
+ | 14391..=14392
+ | 14394..=14395
+ | 14451..=14452
+ | 14454..=14455
+ | 14463..=14464
+ | 14466..=14467
+ | 14487..=14488
+ | 14490..=14491
+ | 14499..=14500
+ | 14502..=14503
+ | 14667..=14668
+ | 14670..=14671
+ | 14679..=14680
+ | 14682..=14683
+ | 14703..=14704
+ | 14706..=14707
+ | 14715..=14716
+ | 14718..=14719
+ | 14775..=14776
+ | 14778..=14779
+ | 14787..=14788
+ | 14790..=14791
+ | 14811..=14812
+ | 14814..=14815
+ | 14823..=14824
+ | 14826..=14827
+ | 14991..=14992
+ | 14994..=14995
+ | 15003..=15004
+ | 15006..=15007
+ | 15027..=15028
+ | 15030..=15031
+ | 15039..=15040
+ | 15042..=15043
+ | 15099..=15100
+ | 15102..=15103
+ | 15111..=15112
+ | 15114..=15115
+ | 15135..=15136
+ | 15138..=15139
+ | 15147..=15148
+ | 15150..=15151
+ | 15315..=15316
+ | 15318..=15319
+ | 15327..=15328
+ | 15330..=15331
+ | 15351..=15352
+ | 15354..=15355
+ | 15363..=15364
+ | 15366..=15367
+ | 15423..=15424
+ | 15426..=15427
+ | 15435..=15436
+ | 15438..=15439
+ | 15459..=15460
+ | 15462..=15463
+ | 15471..=15472
+ | 15474..=15475
+ | 15639..=15640
+ | 15642..=15643
+ | 15651..=15652
+ | 15654..=15655
+ | 15675..=15676
+ | 15678..=15679
+ | 15687..=15688
+ | 15690..=15691
+ | 15747..=15748
+ | 15750..=15751
+ | 15759..=15760
+ | 15762..=15763
+ | 15783..=15784
+ | 15786..=15787
+ | 15795..=15796
+ | 15798..=15799
+ | 15963..=15964
+ | 15966..=15967
+ | 15975..=15976
+ | 15978..=15979
+ | 15999..=16000
+ | 16002..=16003
+ | 16011..=16012
+ | 16014..=16015
+ | 16071..=16072
+ | 16074..=16075
+ | 16083..=16084
+ | 16086..=16087
+ | 16107..=16108
+ | 16110..=16111
+ | 16119..=16120
+ | 16122..=16123
+ | 16287..=16288
+ | 16290..=16291
+ | 16299..=16300
+ | 16302..=16303
+ | 16323..=16324
+ | 16326..=16327
+ | 16335..=16336
+ | 16338..=16339
+ | 16395..=16396
+ | 16398..=16399
+ | 16407..=16408
+ | 16410..=16411
+ | 16431..=16432
+ | 16434..=16435
+ | 16443..=16444
+ | 16446..=16447
+ | 16611..=16612
+ | 16614..=16615
+ | 16623..=16624
+ | 16626..=16627
+ | 16647..=16648
+ | 16650..=16651
+ | 16659..=16660
+ | 16662..=16663
+ | 16719..=16720
+ | 16722..=16723
+ | 16731..=16732
+ | 16734..=16735
+ | 16755..=16756
+ | 16758..=16759
+ | 16767..=16768
+ | 16770..=16771
+ | 16935..=16936
+ | 16938..=16939
+ | 16947..=16948
+ | 16950..=16951
+ | 16971..=16972
+ | 16974..=16975
+ | 16983..=16984
+ | 16986..=16987
+ | 17043..=17044
+ | 17046..=17047
+ | 17055..=17056
+ | 17058..=17059
+ | 17079..=17080
+ | 17082..=17083
+ | 17091..=17092
+ | 17094..=17095
+ | 17259..=17260
+ | 17262..=17263
+ | 17271..=17272
+ | 17274..=17275
+ | 17295..=17296
+ | 17298..=17299
+ | 17307..=17308
+ | 17310..=17311
+ | 17367..=17368
+ | 17370..=17371
+ | 17379..=17380
+ | 17382..=17383
+ | 17403..=17404
+ | 17406..=17407
+ | 17415..=17416
+ | 17418..=17419
+ | 17583..=17584
+ | 17586..=17587
+ | 17595..=17596
+ | 17598..=17599
+ | 17619..=17620
+ | 17622..=17623
+ | 17631..=17632
+ | 17634..=17635
+ | 17691..=17692
+ | 17694..=17695
+ | 17703..=17704
+ | 17706..=17707
+ | 17727..=17728
+ | 17730..=17731
+ | 17739..=17740
+ | 17742..=17743
+ | 19076..=19077
+ | 19079..=19080
+ | 19088..=19089
+ | 19091..=19092
+ | 19112..=19113
+ | 19115..=19116
+ | 19124..=19125
+ | 19127..=19128
+ | 19184..=19185
+ | 19187..=19188
+ | 19196..=19197
+ | 19199..=19200
+ | 19220..=19221
+ | 19223..=19224
+ | 19232..=19233
+ | 19235..=19236
+ | 19496..=19497
+ | 19499..=19500
+ | 19508..=19509
+ | 19511..=19512
+ | 19532..=19533
+ | 19535..=19536
+ | 19544..=19545
+ | 19547..=19548
+ | 19604..=19605
+ | 19607..=19608
+ | 19616..=19617
+ | 19619..=19620
+ | 19640..=19641
+ | 19643..=19644
+ | 19652..=19653
+ | 19655..=19656
+ | 19933..=19934
+ | 19936..=19937
+ | 19945..=19946
+ | 19948..=19949
+ | 19969..=19970
+ | 19972..=19973
+ | 19981..=19982
+ | 19984..=19985
+ | 20041..=20042
+ | 20044..=20045
+ | 20053..=20054
+ | 20056..=20057
+ | 20077..=20078
+ | 20080..=20081
+ | 20089..=20090
+ | 20092..=20093
+ | 21815..=21816
+ | 21818..=21819
+ | 21827..=21828
+ | 21830..=21831
+ | 21851..=21852
+ | 21854..=21855
+ | 21863..=21864
+ | 21866..=21867
+ | 21923..=21924
+ | 21926..=21927
+ | 21935..=21936
+ | 21938..=21939
+ | 21959..=21960
+ | 21962..=21963
+ | 21971..=21972
+ | 21974..=21975
+ | 22226..=22227
+ | 22229..=22230
+ | 22238..=22239
+ | 22241..=22242
+ | 22262..=22263
+ | 22265..=22266
+ | 22274..=22275
+ | 22277..=22278
+ | 22334..=22335
+ | 22337..=22338
+ | 22346..=22347
+ | 22349..=22350
+ | 22370..=22371
+ | 22373..=22374
+ | 22382..=22383
+ | 22385..=22386
+ | 22637..=22638
+ | 22640..=22641
+ | 22649..=22650
+ | 22652..=22653
+ | 22673..=22674
+ | 22676..=22677
+ | 22685..=22686
+ | 22688..=22689
+ | 22745..=22746
+ | 22748..=22749
+ | 22757..=22758
+ | 22760..=22761
+ | 22781..=22782
+ | 22784..=22785
+ | 22793..=22794
+ | 22796..=22797
+ | 23048..=23049
+ | 23051..=23052
+ | 23060..=23061
+ | 23063..=23064
+ | 23084..=23085
+ | 23087..=23088
+ | 23096..=23097
+ | 23099..=23100
+ | 23156..=23157
+ | 23159..=23160
+ | 23168..=23169
+ | 23171..=23172
+ | 23192..=23193
+ | 23195..=23196
+ | 23204..=23205
+ | 23207..=23208 => &SHAPE169,
+ 8337..=8362 | 12329 | 18827..=18830 | 23219..=23220 => &SHAPE31,
+ 8571..=8586 | 8591..=8606 | 8611..=8626 | 8631..=8646 | 8651..=8666 | 8671..=8686 => {
+ &SHAPE172
}
- BlockState::LargeAmethystBud_NorthTrue | BlockState::LargeAmethystBud_NorthFalse => {
- &SHAPE292
- }
- BlockState::LargeAmethystBud_EastTrue | BlockState::LargeAmethystBud_EastFalse => {
- &SHAPE293
- }
- BlockState::LargeAmethystBud_SouthTrue | BlockState::LargeAmethystBud_SouthFalse => {
- &SHAPE294
- }
- BlockState::LargeAmethystBud_WestTrue | BlockState::LargeAmethystBud_WestFalse => {
- &SHAPE295
- }
- BlockState::LargeAmethystBud_UpTrue | BlockState::LargeAmethystBud_UpFalse => &SHAPE296,
- BlockState::LargeAmethystBud_DownTrue | BlockState::LargeAmethystBud_DownFalse => {
- &SHAPE297
- }
- BlockState::MediumAmethystBud_NorthTrue | BlockState::MediumAmethystBud_NorthFalse => {
- &SHAPE298
- }
- BlockState::MediumAmethystBud_EastTrue | BlockState::MediumAmethystBud_EastFalse => {
- &SHAPE299
- }
- BlockState::MediumAmethystBud_SouthTrue | BlockState::MediumAmethystBud_SouthFalse => {
- &SHAPE300
- }
- BlockState::MediumAmethystBud_WestTrue | BlockState::MediumAmethystBud_WestFalse => {
- &SHAPE301
- }
- BlockState::MediumAmethystBud_UpTrue | BlockState::MediumAmethystBud_UpFalse => {
- &SHAPE302
- }
- BlockState::MediumAmethystBud_DownTrue | BlockState::MediumAmethystBud_DownFalse => {
- &SHAPE303
- }
- BlockState::SmallAmethystBud_NorthTrue | BlockState::SmallAmethystBud_NorthFalse => {
- &SHAPE304
- }
- BlockState::SmallAmethystBud_EastTrue | BlockState::SmallAmethystBud_EastFalse => {
- &SHAPE305
- }
- BlockState::SmallAmethystBud_SouthTrue | BlockState::SmallAmethystBud_SouthFalse => {
- &SHAPE306
- }
- BlockState::SmallAmethystBud_WestTrue | BlockState::SmallAmethystBud_WestFalse => {
- &SHAPE307
- }
- BlockState::SmallAmethystBud_UpTrue | BlockState::SmallAmethystBud_UpFalse => &SHAPE308,
- BlockState::SmallAmethystBud_DownTrue | BlockState::SmallAmethystBud_DownFalse => {
- &SHAPE309
- }
- BlockState::PointedDripstone_TipMergeUpTrue
- | BlockState::PointedDripstone_TipMergeUpFalse
- | BlockState::PointedDripstone_TipMergeDownTrue
- | BlockState::PointedDripstone_TipMergeDownFalse => &SHAPE259,
- BlockState::PointedDripstone_TipUpTrue | BlockState::PointedDripstone_TipUpFalse => {
- &SHAPE310
- }
- BlockState::PointedDripstone_TipDownTrue
- | BlockState::PointedDripstone_TipDownFalse => &SHAPE311,
- BlockState::PointedDripstone_FrustumUpTrue
- | BlockState::PointedDripstone_FrustumUpFalse
- | BlockState::PointedDripstone_FrustumDownTrue
- | BlockState::PointedDripstone_FrustumDownFalse => &SHAPE68,
- BlockState::PointedDripstone_BaseUpTrue
- | BlockState::PointedDripstone_BaseUpFalse
- | BlockState::PointedDripstone_BaseDownTrue
- | BlockState::PointedDripstone_BaseDownFalse => &SHAPE77,
- BlockState::Azalea | BlockState::FloweringAzalea => &SHAPE312,
- BlockState::BigDripleaf_NorthNoneTrue
- | BlockState::BigDripleaf_NorthNoneFalse
- | BlockState::BigDripleaf_NorthUnstableTrue
- | BlockState::BigDripleaf_NorthUnstableFalse
- | BlockState::BigDripleaf_SouthNoneTrue
- | BlockState::BigDripleaf_SouthNoneFalse
- | BlockState::BigDripleaf_SouthUnstableTrue
- | BlockState::BigDripleaf_SouthUnstableFalse
- | BlockState::BigDripleaf_WestNoneTrue
- | BlockState::BigDripleaf_WestNoneFalse
- | BlockState::BigDripleaf_WestUnstableTrue
- | BlockState::BigDripleaf_WestUnstableFalse
- | BlockState::BigDripleaf_EastNoneTrue
- | BlockState::BigDripleaf_EastNoneFalse
- | BlockState::BigDripleaf_EastUnstableTrue
- | BlockState::BigDripleaf_EastUnstableFalse => &SHAPE313,
- BlockState::BigDripleaf_NorthPartialTrue
- | BlockState::BigDripleaf_NorthPartialFalse
- | BlockState::BigDripleaf_SouthPartialTrue
- | BlockState::BigDripleaf_SouthPartialFalse
- | BlockState::BigDripleaf_WestPartialTrue
- | BlockState::BigDripleaf_WestPartialFalse
- | BlockState::BigDripleaf_EastPartialTrue
- | BlockState::BigDripleaf_EastPartialFalse => &SHAPE314,
+ 8587 | 8607 | 8627 | 8647 | 8667 | 8687 => &SHAPE173,
+ 8588 | 8608 | 8628 | 8648 | 8668 | 8688 => &SHAPE174,
+ 8589 | 8609 | 8629 | 8649 | 8669 | 8689 => &SHAPE175,
+ 8590 | 8610 | 8630 | 8650 | 8670 | 8690 => &SHAPE176,
+ 8691..=8706 => &SHAPE177,
+ 8707 => &SHAPE178,
+ 8708 => &SHAPE179,
+ 8709 => &SHAPE180,
+ 8710 => &SHAPE181,
+ 8711..=8712 | 8715..=8716 | 8719..=8720 => &SHAPE182,
+ 8713..=8714 | 8717..=8718 | 8721..=8722 => &SHAPE183,
+ 8829 | 8834 => &SHAPE184,
+ 8830 | 8835 => &SHAPE185,
+ 8831 | 8836 => &SHAPE186,
+ 8832 | 8837 => &SHAPE187,
+ 8833 | 8838 => &SHAPE188,
+ 10229..=10230
+ | 10235..=10236
+ | 10241..=10242
+ | 10685..=10686
+ | 10691..=10692
+ | 10697..=10698
+ | 10703..=10704
+ | 10709..=10710
+ | 10715..=10716
+ | 10721..=10722
+ | 10727..=10728
+ | 10733..=10734
+ | 10739..=10740
+ | 10745..=10746
+ | 10751..=10752
+ | 10757..=10758
+ | 10763..=10764
+ | 10769..=10770
+ | 10775..=10776
+ | 10781..=10782
+ | 10787..=10788
+ | 10793..=10794
+ | 10799..=10800
+ | 10805..=10806
+ | 10811..=10812
+ | 10817..=10818
+ | 13454..=13455
+ | 13460..=13461
+ | 13466..=13467
+ | 13472..=13473
+ | 13478..=13479
+ | 13484..=13485
+ | 13490..=13491
+ | 13496..=13497
+ | 13502..=13503
+ | 13508..=13509
+ | 13514..=13515
+ | 13520..=13521
+ | 13526..=13527
+ | 18040..=18041
+ | 18046..=18047
+ | 19237..=19238
+ | 19247..=19248
+ | 19738..=19739
+ | 21022..=21023
+ | 21028..=21029
+ | 21034..=21035
+ | 21040..=21041
+ | 21374..=21375
+ | 21380..=21381
+ | 21386..=21387
+ | 21392..=21393
+ | 21646..=21647
+ | 22057..=22058
+ | 22468..=22469
+ | 22879..=22880 => &SHAPE34,
+ 10251..=10266 | 21500 => &SHAPE32,
+ 11723 | 11725 | 21398..=21401 | 21406..=21409 => &SHAPE16,
+ 11724 | 11726 | 21402..=21405 | 21410..=21413 => &SHAPE19,
+ 11727..=11728 | 21414..=21421 => &SHAPE26,
+ 11729 => &SHAPE189,
+ 11730 => &SHAPE190,
+ 11731 => &SHAPE191,
+ 11732 => &SHAPE192,
+ 11733 => &SHAPE193,
+ 11734 => &SHAPE194,
+ 11735 => &SHAPE195,
+ 11736 => &SHAPE196,
+ 11737 => &SHAPE197,
+ 11738 => &SHAPE198,
+ 11739 => &SHAPE199,
+ 11740 => &SHAPE200,
+ 11741 => &SHAPE201,
+ 11742 => &SHAPE202,
+ 11743 => &SHAPE203,
+ 11744 => &SHAPE204,
+ 11745 => &SHAPE205,
+ 11746 => &SHAPE206,
+ 11747 => &SHAPE207,
+ 11748 => &SHAPE208,
+ 11749 => &SHAPE209,
+ 11750 => &SHAPE210,
+ 11751 => &SHAPE211,
+ 11752 => &SHAPE212,
+ 11753 => &SHAPE213,
+ 11754 => &SHAPE214,
+ 11755 => &SHAPE215,
+ 11756 => &SHAPE216,
+ 11757 => &SHAPE217,
+ 11758 | 21434..=21437 => &SHAPE73,
+ 11759 => &SHAPE218,
+ 11760 => &SHAPE219,
+ 11761 => &SHAPE220,
+ 11762 => &SHAPE221,
+ 11763 => &SHAPE222,
+ 11764 => &SHAPE223,
+ 11765 => &SHAPE224,
+ 11766 => &SHAPE225,
+ 11767 => &SHAPE226,
+ 11768 => &SHAPE227,
+ 11769 => &SHAPE228,
+ 11770 => &SHAPE229,
+ 11771 => &SHAPE230,
+ 11772 => &SHAPE231,
+ 11773 => &SHAPE232,
+ 11774 => &SHAPE233,
+ 11775 => &SHAPE234,
+ 11776 => &SHAPE235,
+ 11777 => &SHAPE236,
+ 11778 => &SHAPE237,
+ 11779 => &SHAPE238,
+ 11780 => &SHAPE239,
+ 11781 => &SHAPE240,
+ 11782 => &SHAPE241,
+ 11783 => &SHAPE242,
+ 11784 => &SHAPE243,
+ 11785 => &SHAPE244,
+ 11786 => &SHAPE245,
+ 11787 => &SHAPE246,
+ 11788 => &SHAPE247,
+ 11789 => &SHAPE248,
+ 11790 => &SHAPE249,
+ 11791 => &SHAPE250,
+ 11792 => &SHAPE251,
+ 12163..=12165 => &SHAPE253,
+ 12166..=12174 => &SHAPE254,
+ 12305..=12306 => &SHAPE255,
+ 12307..=12308 => &SHAPE256,
+ 12309..=12310 => &SHAPE257,
+ 12311..=12312 => &SHAPE258,
+ 12314..=12315 => &SHAPE252,
+ 17744..=17775 => &SHAPE260,
+ 17810..=17811 => &SHAPE261,
+ 17812..=17813 => &SHAPE262,
+ 17814 => &SHAPE263,
+ 17815 => &SHAPE264,
+ 17816 => &SHAPE265,
+ 17817 => &SHAPE266,
+ 17818..=17819 => &SHAPE267,
+ 17820..=17821 => &SHAPE268,
+ 17822..=17837 => &SHAPE269,
+ 17839..=17842 => &SHAPE171,
+ 17843..=17846 => &SHAPE270,
+ 17847..=17850 => &SHAPE271,
+ 17851..=17858 => &SHAPE272,
+ 17859..=17860 => &SHAPE273,
+ 17861..=17862 => &SHAPE274,
+ 17863..=17864 => &SHAPE275,
+ 17865..=17866 => &SHAPE276,
+ 17867..=17870 => &SHAPE277,
+ 17871..=17874 => &SHAPE278,
+ 17875..=17876 | 17879..=17880 => &SHAPE279,
+ 17877..=17878 | 17881..=17882 => &SHAPE280,
+ 17883..=17946 => &SHAPE170,
+ 18744..=18752 => &SHAPE281,
+ 20097..=20100
+ | 20113..=20116
+ | 20129..=20132
+ | 20145..=20148
+ | 20161..=20164
+ | 20177..=20180
+ | 20193..=20196
+ | 20209..=20212
+ | 20225..=20228
+ | 20241..=20244
+ | 20257..=20260
+ | 20273..=20276
+ | 20289..=20292
+ | 20305..=20308
+ | 20321..=20324
+ | 20337..=20340
+ | 20353..=20356 => &SHAPE121,
+ 20101..=20104
+ | 20117..=20120
+ | 20133..=20136
+ | 20149..=20152
+ | 20165..=20168
+ | 20181..=20184
+ | 20197..=20200
+ | 20213..=20216
+ | 20229..=20232
+ | 20245..=20248
+ | 20261..=20264
+ | 20277..=20280
+ | 20293..=20296
+ | 20309..=20312
+ | 20325..=20328
+ | 20341..=20344
+ | 20357..=20360 => &SHAPE282,
+ 20105..=20108
+ | 20121..=20124
+ | 20137..=20140
+ | 20153..=20156
+ | 20169..=20172
+ | 20185..=20188
+ | 20201..=20204
+ | 20217..=20220
+ | 20233..=20236
+ | 20249..=20252
+ | 20265..=20268
+ | 20281..=20284
+ | 20297..=20300
+ | 20313..=20316
+ | 20329..=20332
+ | 20345..=20348
+ | 20361..=20364 => &SHAPE283,
+ 20109..=20112
+ | 20125..=20128
+ | 20141..=20144
+ | 20157..=20160
+ | 20173..=20176
+ | 20189..=20192
+ | 20205..=20208
+ | 20221..=20224
+ | 20237..=20240
+ | 20253..=20256
+ | 20269..=20272
+ | 20285..=20288
+ | 20301..=20304
+ | 20317..=20320
+ | 20333..=20336
+ | 20349..=20352
+ | 20365..=20368 => &SHAPE284,
+ 20369..=20402 => &SHAPE285,
+ 20405..=20406 => &SHAPE286,
+ 20407..=20408 => &SHAPE287,
+ 20409..=20410 => &SHAPE288,
+ 20411..=20412 => &SHAPE289,
+ 20413..=20414 => &SHAPE290,
+ 20415..=20416 => &SHAPE291,
+ 20417..=20418 => &SHAPE292,
+ 20419..=20420 => &SHAPE293,
+ 20421..=20422 => &SHAPE294,
+ 20423..=20424 => &SHAPE295,
+ 20425..=20426 => &SHAPE296,
+ 20427..=20428 => &SHAPE297,
+ 20429..=20430 => &SHAPE298,
+ 20431..=20432 => &SHAPE299,
+ 20433..=20434 => &SHAPE300,
+ 20435..=20436 => &SHAPE301,
+ 20437..=20438 => &SHAPE302,
+ 20439..=20440 => &SHAPE303,
+ 20441..=20442 => &SHAPE304,
+ 20443..=20444 => &SHAPE305,
+ 20445..=20446 => &SHAPE306,
+ 20447..=20448 => &SHAPE307,
+ 20449..=20450 => &SHAPE308,
+ 20451..=20452 => &SHAPE309,
+ 21422..=21425 => &SHAPE259,
+ 21426..=21427 => &SHAPE310,
+ 21428..=21429 => &SHAPE311,
+ 21430..=21433 => &SHAPE68,
+ 21438..=21441 => &SHAPE77,
+ 21498..=21499 => &SHAPE312,
+ 21502..=21505 | 21510..=21513 | 21518..=21521 | 21526..=21529 => &SHAPE313,
+ 21506..=21507 | 21514..=21515 | 21522..=21523 | 21530..=21531 => &SHAPE314,
_ => &SHAPE1,
}
}
diff --git a/azalea-physics/src/collision/world_collisions.rs b/azalea-physics/src/collision/world_collisions.rs
index c7b2a91b..631bc116 100644
--- a/azalea-physics/src/collision/world_collisions.rs
+++ b/azalea-physics/src/collision/world_collisions.rs
@@ -79,7 +79,7 @@ impl<'a> Iterator for BlockCollisions<'a> {
let block_state: BlockState = chunk
.read()
.get(&(&pos).into(), self.world.chunks.min_y)
- .unwrap_or(BlockState::Air);
+ .unwrap_or(BlockState::AIR);
// TODO: continue if self.only_suffocating_blocks and the block is not
// suffocating
diff --git a/azalea-physics/src/lib.rs b/azalea-physics/src/lib.rs
index 35841d77..a8eddeaa 100644
--- a/azalea-physics/src/lib.rs
+++ b/azalea-physics/src/lib.rs
@@ -75,7 +75,7 @@ fn travel(
let block_state_below = world
.chunks
.get_block_state(&block_pos_below)
- .unwrap_or(BlockState::Air);
+ .unwrap_or(BlockState::AIR);
let block_below: Box<dyn Block> = block_state_below.into();
let block_friction = block_below.behavior().friction;
@@ -412,7 +412,7 @@ mod tests {
.id();
let block_state = partial_world.chunks.set_block_state(
&BlockPos { x: 0, y: 69, z: 0 },
- BlockState::Stone,
+ azalea_registry::Block::Stone.into(),
&mut world_lock.write().chunks,
);
assert!(
@@ -469,7 +469,11 @@ mod tests {
.id();
let block_state = partial_world.chunks.set_block_state(
&BlockPos { x: 0, y: 69, z: 0 },
- BlockState::StoneSlab_BottomFalse,
+ azalea_block::StoneSlabBlock {
+ kind: azalea_block::Type::Bottom,
+ waterlogged: false,
+ }
+ .into(),
&mut world_lock.write().chunks,
);
assert!(
@@ -518,7 +522,11 @@ mod tests {
.id();
let block_state = world_lock.write().chunks.set_block_state(
&BlockPos { x: 0, y: 69, z: 0 },
- BlockState::StoneSlab_TopFalse,
+ azalea_block::StoneSlabBlock {
+ kind: azalea_block::Type::Top,
+ waterlogged: false,
+ }
+ .into(),
);
assert!(
block_state.is_some(),
@@ -566,7 +574,15 @@ mod tests {
.id();
let block_state = world_lock.write().chunks.set_block_state(
&BlockPos { x: 0, y: 69, z: 0 },
- BlockState::CobblestoneWall_LowLowLowFalseFalseLow,
+ azalea_block::CobblestoneWallBlock {
+ east: azalea_block::EastWall::Low,
+ north: azalea_block::NorthWall::Low,
+ south: azalea_block::SouthWall::Low,
+ west: azalea_block::WestWall::Low,
+ up: false,
+ waterlogged: false,
+ }
+ .into(),
);
assert!(
block_state.is_some(),
diff --git a/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs b/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs
index 1a8e0d40..1ea9f676 100755
--- a/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_section_blocks_update_packet.rs
@@ -37,7 +37,7 @@ impl McBufReadable for BlockStateWithPosition {
impl McBufWritable for BlockStateWithPosition {
fn write_into(&self, buf: &mut impl Write) -> Result<(), std::io::Error> {
- let data = (self.state as u64) << 12
+ let data = (self.state.id as u64) << 12
| (u64::from(self.pos.x) << 8 | u64::from(self.pos.z) << 4 | u64::from(self.pos.y));
u64::var_write_into(&data, buf)?;
Ok(())
diff --git a/azalea-world/src/chunk_storage.rs b/azalea-world/src/chunk_storage.rs
index 734dfe29..c2a72ea2 100755
--- a/azalea-world/src/chunk_storage.rs
+++ b/azalea-world/src/chunk_storage.rs
@@ -343,20 +343,20 @@ impl Section {
.states
.get(pos.x as usize, pos.y as usize, pos.z as usize);
// if there's an unknown block assume it's air
- BlockState::try_from(state).unwrap_or(BlockState::Air)
+ BlockState::try_from(state).unwrap_or(BlockState::AIR)
}
fn get_and_set(&mut self, pos: ChunkSectionBlockPos, state: BlockState) -> BlockState {
let previous_state =
self.states
- .get_and_set(pos.x as usize, pos.y as usize, pos.z as usize, state as u32);
+ .get_and_set(pos.x as usize, pos.y as usize, pos.z as usize, state.id);
// if there's an unknown block assume it's air
- BlockState::try_from(previous_state).unwrap_or(BlockState::Air)
+ BlockState::try_from(previous_state).unwrap_or(BlockState::AIR)
}
fn set(&mut self, pos: ChunkSectionBlockPos, state: BlockState) {
self.states
- .set(pos.x as usize, pos.y as usize, pos.z as usize, state as u32);
+ .set(pos.x as usize, pos.y as usize, pos.z as usize, state.id);
}
}
diff --git a/azalea-world/src/entity/metadata.rs b/azalea-world/src/entity/metadata.rs
index c95d8c3a..3d6c52c8 100644
--- a/azalea-world/src/entity/metadata.rs
+++ b/azalea-world/src/entity/metadata.rs
@@ -2368,7 +2368,7 @@ impl Default for EndermanMetadataBundle {
},
},
},
- carry_state: CarryState(BlockState::Air),
+ carry_state: CarryState(BlockState::AIR),
creepy: Creepy(false),
stared_at: StaredAt(false),
}
diff --git a/azalea-world/src/entity/mod.rs b/azalea-world/src/entity/mod.rs
index 0d0449ac..9b1191fb 100644
--- a/azalea-world/src/entity/mod.rs
+++ b/azalea-world/src/entity/mod.rs
@@ -94,7 +94,7 @@ pub fn on_pos(offset: f32, chunk_storage: &ChunkStorage, pos: &Position) -> Bloc
// TODO: check if block below is a fence, wall, or fence gate
let block_pos = pos.down(1);
let block_state = chunk_storage.get_block_state(&block_pos);
- if block_state == Some(BlockState::Air) {
+ if block_state == Some(BlockState::AIR) {
let block_pos_below = block_pos.down(1);
let block_state_below = chunk_storage.get_block_state(&block_pos_below);
if let Some(_block_state_below) = block_state_below {
diff --git a/azalea/src/pathfinder/moves.rs b/azalea/src/pathfinder/moves.rs
index 9bb5c7c1..011d8349 100644
--- a/azalea/src/pathfinder/moves.rs
+++ b/azalea/src/pathfinder/moves.rs
@@ -165,12 +165,12 @@ mod tests {
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 0, 0),
- BlockState::Stone,
+ azalea_registry::Block::Stone.into(),
&mut chunk_storage,
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 1, 0),
- BlockState::Air,
+ BlockState::AIR,
&mut chunk_storage,
);
@@ -190,12 +190,12 @@ mod tests {
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 0, 0),
- BlockState::Stone,
+ azalea_registry::Block::Stone.into(),
&mut chunk_storage,
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 1, 0),
- BlockState::Air,
+ BlockState::AIR,
&mut chunk_storage,
);
@@ -215,22 +215,22 @@ mod tests {
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 0, 0),
- BlockState::Stone,
+ azalea_registry::Block::Stone.into(),
&mut chunk_storage,
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 1, 0),
- BlockState::Air,
+ BlockState::AIR,
&mut chunk_storage,
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 2, 0),
- BlockState::Air,
+ BlockState::AIR,
&mut chunk_storage,
);
partial_world.chunks.set_block_state(
&BlockPos::new(0, 3, 0),
- BlockState::Air,
+ BlockState::AIR,
&mut chunk_storage,
);
diff --git a/codegen/lib/code/entity.py b/codegen/lib/code/entity.py
index 844793f6..750b7ca3 100644
--- a/codegen/lib/code/entity.py
+++ b/codegen/lib/code/entity.py
@@ -367,7 +367,7 @@ impl From<EntityDataValue> for UpdateMetadataError {
elif type_name == 'ItemStack':
default = f'Slot::Present({default})' if default != 'Empty' else 'Slot::Empty'
elif type_name == 'BlockState':
- default = f'{default}' if default != 'Empty' else 'BlockState::Air'
+ default = f'{default}' if default != 'Empty' else 'BlockState::AIR'
elif type_name == 'OptionalFormattedText':
default = f'Some({default})' if default != 'Empty' else 'None'
elif type_name == 'CompoundTag':
diff --git a/codegen/lib/code/shapes.py b/codegen/lib/code/shapes.py
index 06170552..7682fe53 100755
--- a/codegen/lib/code/shapes.py
+++ b/codegen/lib/code/shapes.py
@@ -7,8 +7,8 @@ COLLISION_BLOCKS_RS_DIR = get_dir_location(
'../azalea-physics/src/collision/blocks.rs')
-def generate_block_shapes(blocks: dict, shapes: dict, aabbs: dict, block_states_report, block_datas_burger, mappings: Mappings):
- blocks, shapes = simplify_shapes(blocks, shapes, aabbs)
+def generate_block_shapes(blocks_pixlyzer: dict, shapes: dict, aabbs: dict, block_states_report, block_datas_burger, mappings: Mappings):
+ blocks, shapes = simplify_shapes(blocks_pixlyzer, shapes, aabbs)
code = generate_block_shapes_code(
blocks, shapes, block_states_report, block_datas_burger, mappings)
@@ -28,8 +28,7 @@ def simplify_shapes(blocks: dict, shapes: dict, aabbs: dict):
used_shape_ids = set()
# determine the used shape ids
- for block_id, block_data in blocks.items():
- block_id = block_id.split(':')[-1]
+ for _block_id, block_data in blocks.items():
block_shapes = [state.get('collision_shape')
for state in block_data['states'].values()]
for s in block_shapes:
@@ -73,9 +72,9 @@ def generate_block_shapes_code(blocks: dict, shapes: dict, block_states_report,
for (shape_id, shape) in sorted(shapes.items(), key=lambda shape: int(shape[0])):
generated_shape_code += generate_code_for_shape(shape_id, shape)
- # BlockState::PurpurStairs_NorthTopStraightTrue => &SHAPE24,
+ # 1..100 | 200..300 => &SHAPE1,
generated_match_inner_code = ''
- shape_ids_to_variants = {}
+ shape_ids_to_block_state_ids = {}
for block_id, shape_ids in blocks.items():
if isinstance(shape_ids, int):
shape_ids = [shape_ids]
@@ -83,23 +82,34 @@ def generate_block_shapes_code(blocks: dict, shapes: dict, block_states_report,
block_data_burger = block_datas_burger[block_id]
for possible_state, shape_id in zip(block_report_data['states'], shape_ids):
- variant_values = []
- for value in tuple(possible_state.get('properties', {}).values()):
- variant_values.append(to_camel_case(value))
-
- if variant_values == []:
- variant_name = to_camel_case(block_id)
- else:
- variant_name = f'{to_camel_case(block_id)}_{"".join(variant_values)}'
-
- if shape_id not in shape_ids_to_variants:
- shape_ids_to_variants[shape_id] = []
- shape_ids_to_variants[shape_id].append(
- f'BlockState::{variant_name}')
+ block_state_id = possible_state['id']
+
+ if shape_id not in shape_ids_to_block_state_ids:
+ shape_ids_to_block_state_ids[shape_id] = []
+ shape_ids_to_block_state_ids[shape_id].append(block_state_id)
# shape 1 is the most common so we have a _ => &SHAPE1 at the end
- del shape_ids_to_variants[1]
- for shape_id, variants in shape_ids_to_variants.items():
- generated_match_inner_code += f'{"|".join(variants)} => &SHAPE{shape_id},\n'
+ del shape_ids_to_block_state_ids[1]
+ for shape_id, block_state_ids in shape_ids_to_block_state_ids.items():
+
+ # convert them into ranges (so like 1|2|3 is 1..=3 instead)
+ block_state_ids_ranges = []
+ range_start_block_state_id = None
+ last_block_state_id = None
+ for block_state_id in sorted(block_state_ids):
+ if range_start_block_state_id is None:
+ range_start_block_state_id = block_state_id
+
+ if last_block_state_id is not None:
+ # check if the range is done
+ if block_state_id - 1 != last_block_state_id:
+ block_state_ids_ranges.append(f'{range_start_block_state_id}..={last_block_state_id}' if range_start_block_state_id != last_block_state_id else str(range_start_block_state_id))
+ range_start_block_state_id = block_state_id
+
+ last_block_state_id = block_state_id
+
+ block_state_ids_ranges.append(f'{range_start_block_state_id}..={last_block_state_id}' if range_start_block_state_id != last_block_state_id else str(range_start_block_state_id))
+ generated_match_inner_code += f'{"|".join(block_state_ids_ranges)} => &SHAPE{shape_id},\n'
+ generated_match_inner_code += '_ => &SHAPE1'
return f'''
//! Autogenerated block collisions for every block
@@ -123,8 +133,8 @@ pub trait BlockWithShape {{
impl BlockWithShape for BlockState {{
fn shape(&self) -> &'static VoxelShape {{
- match self {{
- {generated_match_inner_code}_ => &SHAPE1
+ match self.id {{
+ {generated_match_inner_code}
}}
}}
}}
diff --git a/codegen/lib/extract.py b/codegen/lib/extract.py
index 7cbeff30..09035e86 100755
--- a/codegen/lib/extract.py
+++ b/codegen/lib/extract.py
@@ -4,6 +4,7 @@ from lib.download import get_server_jar, get_burger, get_client_jar, get_pixlyze
from lib.utils import get_dir_location
from zipfile import ZipFile
import subprocess
+import requests
import json
import sys
import re
@@ -114,7 +115,20 @@ def get_pixlyzer_data(version_id: str, category: str):
target_dir = get_dir_location(f'downloads/pixlyzer-{version_id}')
- if not os.path.exists(get_dir_location(target_dir)):
+ # TODO: right now this False is hard-coded, it should retry with this
+ # enabled if # initially getting the data fails
+ if False or (os.path.exists(target_dir) and not os.path.exists(f'{target_dir}/{category}.min.json')):
+ print('Downloading', category, 'from pixlyzer-data.')
+ data = requests.get(f'https://gitlab.com/Bixilon/pixlyzer-data/-/raw/master/version/{version_id}/{category}.min.json?inline=false').text
+ try:
+ os.mkdir(target_dir)
+ except:
+ pass
+ with open(f'{target_dir}/{category}.min.json', 'w') as f:
+ f.write(data)
+ return json.loads(data)
+
+ if not os.path.exists(target_dir):
pixlyzer_dir = get_pixlyzer()
# for some reason pixlyzer doesn't work right unless the mvn clean
@@ -231,7 +245,6 @@ def get_pixlyzer_data(version_id: str, category: str):
with open(f'{target_dir}/{category}.min.json', 'r') as f:
return json.load(f)
-
def get_file_from_jar(version_id: str, file_dir: str):
get_client_jar(version_id)
with ZipFile(get_dir_location(f'downloads/client-{version_id}.jar')) as z: