From ffad0b4021c6006f98332a3f87e5fa205feda3a3 Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 28 Jul 2022 08:15:23 -0700 Subject: [PATCH] Use the extracted data in the block generator --- build/block.rs | 249 +- build/entity.rs | 1 - data/blocks.json | 34097 --- data/entities.json | 1182 - extracted/blocks.json | 209412 +++++++++++++++ extracted/entities.json | 2 +- .../valence_extractor/extractors/Blocks.java | 3 +- 7 files changed, 209513 insertions(+), 35433 deletions(-) delete mode 100644 data/blocks.json delete mode 100644 data/entities.json create mode 100644 extracted/blocks.json diff --git a/build/block.rs b/build/block.rs index 44bf1ba..0bef2df 100644 --- a/build/block.rs +++ b/build/block.rs @@ -1,5 +1,3 @@ -// TODO: can't match on str in const fn. - use std::collections::BTreeSet; use heck::{ToPascalCase, ToShoutySnakeCase}; @@ -9,17 +7,70 @@ use serde::Deserialize; use crate::ident; +#[derive(Deserialize, Clone, Debug)] +struct TopLevel { + blocks: Vec, + collision_shapes: Vec, +} + +#[derive(Deserialize, Clone, Debug)] +struct Block { + id: u16, + translation_key: String, + name: String, + properties: Vec, + default_state_id: u16, + states: Vec, +} + +impl Block { + pub fn min_state_id(&self) -> u16 { + self.states.iter().map(|s| s.id).min().unwrap() + } + + pub fn max_state_id(&self) -> u16 { + self.states.iter().map(|s| s.id).max().unwrap() + } +} + +#[derive(Deserialize, Clone, Debug)] +struct Property { + name: String, + values: Vec, +} + +#[derive(Deserialize, Clone, Debug)] +struct State { + id: u16, + luminance: u8, + opaque: bool, + collision_shapes: Vec, +} + +#[derive(Deserialize, Clone, Debug)] +struct CollisionShape { + min_x: f64, + min_y: f64, + min_z: f64, + max_x: f64, + max_y: f64, + max_z: f64, +} + pub fn build() -> anyhow::Result { - let blocks = parse_blocks_json()?; + let TopLevel { + blocks, + collision_shapes, + } = serde_json::from_str(include_str!("../extracted/blocks.json"))?; - let max_block_state = blocks.iter().map(|b| b.max_state_id).max().unwrap(); + let max_state_id = blocks.iter().map(|b| b.max_state_id()).max().unwrap(); - let state_to_kind = blocks + let state_to_kind_arms = blocks .iter() .map(|b| { - let min = b.min_state_id; - let max = b.max_state_id; - let name = ident(b.name.to_pascal_case()); + let min = b.min_state_id(); + let max = b.max_state_id(); + let name = ident(&b.name.to_pascal_case()); quote! { #min..=#max => BlockKind::#name, } @@ -28,26 +79,27 @@ pub fn build() -> anyhow::Result { let get_arms = blocks .iter() - .filter(|&b| !b.props.is_empty()) + .filter(|&b| !b.properties.is_empty()) .map(|b| { - let block_type_name = ident(b.name.to_pascal_case()); + let block_kind_name = ident(b.name.to_pascal_case()); let arms = b - .props + .properties .iter() .map(|p| { let prop_name = ident(p.name.to_pascal_case()); - let min_state_id = b.min_state_id; + let min_state_id = b.min_state_id(); let product: u16 = b - .props + .properties .iter() + .rev() .take_while(|&other| p.name != other.name) - .map(|p| p.vals.len() as u16) + .map(|p| p.values.len() as u16) .product(); - let values_count = p.vals.len() as u16; + let values_count = p.values.len() as u16; - let arms = p.vals.iter().enumerate().map(|(i, v)| { + let arms = p.values.iter().enumerate().map(|(i, v)| { let value_idx = i as u16; let value_name = ident(v.to_pascal_case()); quote! { @@ -65,7 +117,7 @@ pub fn build() -> anyhow::Result { .collect::(); quote! { - BlockKind::#block_type_name => match name { + BlockKind::#block_kind_name => match name { #arms _ => None, }, @@ -75,27 +127,28 @@ pub fn build() -> anyhow::Result { let set_arms = blocks .iter() - .filter(|&b| !b.props.is_empty()) + .filter(|&b| !b.properties.is_empty()) .map(|b| { - let block_type_name = ident(b.name.to_pascal_case()); + let block_kind_name = ident(b.name.to_pascal_case()); let arms = b - .props + .properties .iter() .map(|p| { let prop_name = ident(p.name.to_pascal_case()); - let min_state_id = b.min_state_id; + let min_state_id = b.min_state_id(); let product: u16 = b - .props + .properties .iter() + .rev() .take_while(|&other| p.name != other.name) - .map(|p| p.vals.len() as u16) + .map(|p| p.values.len() as u16) .product(); - let values_count = p.vals.len() as u16; + let values_count = p.values.len() as u16; let arms = p - .vals + .values .iter() .enumerate() .map(|(i, v)| { @@ -119,7 +172,7 @@ pub fn build() -> anyhow::Result { .collect::(); quote! { - BlockKind::#block_type_name => match name { + BlockKind::#block_kind_name => match name { #arms _ => self, }, @@ -127,29 +180,11 @@ pub fn build() -> anyhow::Result { }) .collect::(); - let is_transparent_types = blocks - .iter() - .filter(|&b| b.transparent) - .map(|b| ident(b.name.to_pascal_case())); - - let filter_light_arms = blocks - .iter() - .map(|b| { - let type_name = ident(b.name.to_pascal_case()); - assert!(b.filter_light <= 15); - let filter_light = b.filter_light as u8; - - quote! { - BlockKind::#type_name => #filter_light, - } - }) - .collect::(); - let default_block_states = blocks .iter() .map(|b| { let name = ident(b.name.to_shouty_snake_case()); - let state = b.default_state; + let state = b.default_state_id; let doc = format!("The default block state for `{}`.", b.name); quote! { #[doc = #doc] @@ -158,7 +193,7 @@ pub fn build() -> anyhow::Result { }) .collect::(); - let kind_to_state = blocks + let kind_to_state_arms = blocks .iter() .map(|b| { let kind = ident(b.name.to_pascal_case()); @@ -198,10 +233,10 @@ pub fn build() -> anyhow::Result { let block_kind_props_arms = blocks .iter() - .filter(|&b| !b.props.is_empty()) + .filter(|&b| !b.properties.is_empty()) .map(|b| { let name = ident(b.name.to_pascal_case()); - let prop_names = b.props.iter().map(|p| ident(p.name.to_pascal_case())); + let prop_names = b.properties.iter().map(|p| ident(p.name.to_pascal_case())); quote! { Self::#name => &[#(PropName::#prop_names,)*], @@ -213,7 +248,7 @@ pub fn build() -> anyhow::Result { let prop_names = blocks .iter() - .flat_map(|b| b.props.iter().map(|p| &p.name)) + .flat_map(|b| b.properties.iter().map(|p| p.name.as_str())) .collect::>(); let prop_name_variants = prop_names @@ -245,7 +280,8 @@ pub fn build() -> anyhow::Result { let prop_values = blocks .iter() - .flat_map(|b| b.props.iter().flat_map(|p| &p.vals)) + .flat_map(|b| b.properties.iter().flat_map(|p| &p.values)) + .map(|s| s.as_str()) .collect::>(); let prop_value_variants = prop_values @@ -295,10 +331,10 @@ pub fn build() -> anyhow::Result { }) .collect::(); - let property_name_count = prop_values.len(); + let prop_value_count = prop_values.len(); Ok(quote! { - /// Represents the state of a block, not including block entity data such as + /// Represents the state of a block. This does not include block entity data such as /// the text on a sign, the design on a banner, or the content of a spawner. #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Default, Hash)] pub struct BlockState(u16); @@ -307,14 +343,14 @@ pub fn build() -> anyhow::Result { /// Returns the default block state for a given block type. pub const fn from_kind(kind: BlockKind) -> Self { match kind { - #kind_to_state + #kind_to_state_arms } } /// Returns the [`BlockKind`] of this block state. pub const fn to_kind(self) -> BlockKind { match self.0 { - #state_to_kind + #state_to_kind_arms _ => unreachable!(), } } @@ -323,7 +359,7 @@ pub fn build() -> anyhow::Result { /// /// If the given ID is invalid, `None` is returned. pub const fn from_raw(id: u16) -> Option { - if id <= #max_block_state { + if id <= #max_state_id { Some(Self(id)) } else { None @@ -344,7 +380,7 @@ pub fn build() -> anyhow::Result { /// Returns the maximum block state ID. pub const fn max_raw() -> u16 { - #max_block_state + #max_state_id } /// Gets the value of the property with the given name from this block. @@ -357,10 +393,10 @@ pub fn build() -> anyhow::Result { } } - /// Sets the value of a propery on this block, returning the modified block. + /// Sets the value of a property on this block, returning the modified block. /// /// If this block does not have the given property or the property value is invalid, - /// then the orginal block is returned unchanged. + /// then the original block is returned unchanged. #[must_use] pub const fn set(self, name: PropName, val: PropValue) -> Self { match self.to_kind() { @@ -377,11 +413,6 @@ pub fn build() -> anyhow::Result { ) } - /// Is the block visually transparent? - pub const fn is_transparent(self) -> bool { - matches!(self.to_kind(), #(BlockKind::#is_transparent_types)|*) - } - // TODO: is_solid /// If this block is water or lava. @@ -389,14 +420,6 @@ pub fn build() -> anyhow::Result { matches!(self.to_kind(), BlockKind::Water | BlockKind::Lava) } - /// Returns the amount of light that is normally filtered by this block. - /// The returned value is in `0..=15`. - pub const fn filter_light(self) -> u8 { - match self.to_kind() { - #filter_light_arms - } - } - #default_block_states } @@ -461,6 +484,7 @@ pub fn build() -> anyhow::Result { /// /// Returns `None` if the given name is not valid. pub fn from_str(name: &str) -> Option { + // TODO: match on str in const fn. match name { #prop_name_from_str_arms _ => None, @@ -532,7 +556,8 @@ pub fn build() -> anyhow::Result { } } - /// Convers a `True` or `False` property value to a `bool`. + /// Converts a `True` or `False` property value to a `bool`. + /// /// Returns `None` if this property value is not `True` or `False` pub const fn to_bool(self) -> Option { match self { @@ -543,7 +568,7 @@ pub fn build() -> anyhow::Result { } /// An array of all property values. - pub const ALL: [Self; #property_name_count] = [#(Self::#prop_value_variants,)*]; + pub const ALL: [Self; #prop_value_count] = [#(Self::#prop_value_variants,)*]; } impl From for PropValue { @@ -553,81 +578,3 @@ pub fn build() -> anyhow::Result { } }) } - -struct Block { - name: String, - default_state: u16, - min_state_id: u16, - max_state_id: u16, - transparent: bool, - filter_light: u8, - /// Order of elements in this vec is significant. - props: Vec, -} - -struct Prop { - name: String, - vals: Vec, -} - -fn parse_blocks_json() -> anyhow::Result> { - #[derive(Clone, PartialEq, Debug, Deserialize)] - #[serde(rename_all = "camelCase")] - struct JsonBlock { - id: u16, - name: String, - display_name: String, - hardness: f64, - resistance: f64, - stack_size: u32, - diggable: bool, - material: String, - transparent: bool, - emit_light: u8, - filter_light: u8, - default_state: u16, - min_state_id: u16, - max_state_id: u16, - states: Vec, - bounding_box: String, - } - - #[derive(Clone, PartialEq, Debug, Deserialize)] - #[serde(tag = "type", rename_all = "camelCase")] - enum State { - Enum { name: String, values: Vec }, - Int { name: String, values: Vec }, - Bool { name: String }, - } - - let blocks: Vec = serde_json::from_str(include_str!("../data/blocks.json"))?; - - Ok(blocks - .into_iter() - .map(|b| Block { - name: b.name, - default_state: b.default_state, - min_state_id: b.min_state_id, - max_state_id: b.max_state_id, - transparent: b.transparent, - filter_light: b.filter_light, - props: b - .states - .into_iter() - .rev() - .map(|s| Prop { - name: match &s { - State::Enum { name, .. } => name.clone(), - State::Int { name, .. } => name.clone(), - State::Bool { name } => name.clone(), - }, - vals: match &s { - State::Enum { values, .. } => values.clone(), - State::Int { values, .. } => values.clone(), - State::Bool { .. } => vec!["true".to_owned(), "false".to_owned()], - }, - }) - .collect(), - }) - .collect()) -} diff --git a/build/entity.rs b/build/entity.rs index f396ed9..9a10c11 100644 --- a/build/entity.rs +++ b/build/entity.rs @@ -506,7 +506,6 @@ pub fn build() -> anyhow::Result { fn collect_all_fields<'a>(entity_name: &str, entities: &'a Entities) -> Vec<&'a Field> { fn rec<'a>(entity_name: &str, entities: &'a Entities, fields: &mut Vec<&'a Field>) { - dbg!(entity_name); let e = &entities[entity_name]; fields.extend(&e.fields); diff --git a/data/blocks.json b/data/blocks.json deleted file mode 100644 index b5fc758..0000000 --- a/data/blocks.json +++ /dev/null @@ -1,34097 +0,0 @@ -[ - { - "id": 0, - "name": "air", - "displayName": "Air", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 0, - "minStateId": 0, - "maxStateId": 0, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 1, - "name": "stone", - "displayName": "Stone", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1, - "minStateId": 1, - "maxStateId": 1, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 22 - ], - "boundingBox": "block" - }, - { - "id": 2, - "name": "granite", - "displayName": "Granite", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 2, - "minStateId": 2, - "maxStateId": 2, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 2 - ], - "boundingBox": "block" - }, - { - "id": 3, - "name": "polished_granite", - "displayName": "Polished Granite", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 3, - "minStateId": 3, - "maxStateId": 3, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 3 - ], - "boundingBox": "block" - }, - { - "id": 4, - "name": "diorite", - "displayName": "Diorite", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4, - "minStateId": 4, - "maxStateId": 4, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 4 - ], - "boundingBox": "block" - }, - { - "id": 5, - "name": "polished_diorite", - "displayName": "Polished Diorite", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5, - "minStateId": 5, - "maxStateId": 5, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 5 - ], - "boundingBox": "block" - }, - { - "id": 6, - "name": "andesite", - "displayName": "Andesite", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 6, - "minStateId": 6, - "maxStateId": 6, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 6 - ], - "boundingBox": "block" - }, - { - "id": 7, - "name": "polished_andesite", - "displayName": "Polished Andesite", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7, - "minStateId": 7, - "maxStateId": 7, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 7 - ], - "boundingBox": "block" - }, - { - "id": 8, - "name": "grass_block", - "displayName": "Grass Block", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 9, - "minStateId": 8, - "maxStateId": 9, - "states": [ - { - "name": "snowy", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 15 - ], - "boundingBox": "block" - }, - { - "id": 9, - "name": "dirt", - "displayName": "Dirt", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10, - "minStateId": 10, - "maxStateId": 10, - "states": [], - "drops": [ - 15 - ], - "boundingBox": "block" - }, - { - "id": 10, - "name": "coarse_dirt", - "displayName": "Coarse Dirt", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 11, - "minStateId": 11, - "maxStateId": 11, - "states": [], - "drops": [ - 16 - ], - "boundingBox": "block" - }, - { - "id": 11, - "name": "podzol", - "displayName": "Podzol", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 13, - "minStateId": 12, - "maxStateId": 13, - "states": [ - { - "name": "snowy", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 15 - ], - "boundingBox": "block" - }, - { - "id": 12, - "name": "cobblestone", - "displayName": "Cobblestone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 14, - "minStateId": 14, - "maxStateId": 14, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 22 - ], - "boundingBox": "block" - }, - { - "id": 13, - "name": "oak_planks", - "displayName": "Oak Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 15, - "minStateId": 15, - "maxStateId": 15, - "states": [], - "drops": [ - 23 - ], - "boundingBox": "block" - }, - { - "id": 14, - "name": "spruce_planks", - "displayName": "Spruce Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16, - "minStateId": 16, - "maxStateId": 16, - "states": [], - "drops": [ - 24 - ], - "boundingBox": "block" - }, - { - "id": 15, - "name": "birch_planks", - "displayName": "Birch Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17, - "minStateId": 17, - "maxStateId": 17, - "states": [], - "drops": [ - 25 - ], - "boundingBox": "block" - }, - { - "id": 16, - "name": "jungle_planks", - "displayName": "Jungle Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18, - "minStateId": 18, - "maxStateId": 18, - "states": [], - "drops": [ - 26 - ], - "boundingBox": "block" - }, - { - "id": 17, - "name": "acacia_planks", - "displayName": "Acacia Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19, - "minStateId": 19, - "maxStateId": 19, - "states": [], - "drops": [ - 27 - ], - "boundingBox": "block" - }, - { - "id": 18, - "name": "dark_oak_planks", - "displayName": "Dark Oak Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 20, - "minStateId": 20, - "maxStateId": 20, - "states": [], - "drops": [ - 28 - ], - "boundingBox": "block" - }, - { - "id": 19, - "name": "mangrove_planks", - "displayName": "Mangrove Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21, - "minStateId": 21, - "maxStateId": 21, - "states": [], - "drops": [ - 29 - ], - "boundingBox": "block" - }, - { - "id": 20, - "name": "oak_sapling", - "displayName": "Oak Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 22, - "minStateId": 22, - "maxStateId": 23, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 32 - ], - "boundingBox": "empty" - }, - { - "id": 21, - "name": "spruce_sapling", - "displayName": "Spruce Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 24, - "minStateId": 24, - "maxStateId": 25, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 33 - ], - "boundingBox": "empty" - }, - { - "id": 22, - "name": "birch_sapling", - "displayName": "Birch Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 26, - "minStateId": 26, - "maxStateId": 27, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 34 - ], - "boundingBox": "empty" - }, - { - "id": 23, - "name": "jungle_sapling", - "displayName": "Jungle Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 28, - "minStateId": 28, - "maxStateId": 29, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 35 - ], - "boundingBox": "empty" - }, - { - "id": 24, - "name": "acacia_sapling", - "displayName": "Acacia Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 30, - "minStateId": 30, - "maxStateId": 31, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 36 - ], - "boundingBox": "empty" - }, - { - "id": 25, - "name": "dark_oak_sapling", - "displayName": "Dark Oak Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 32, - "minStateId": 32, - "maxStateId": 33, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 37 - ], - "boundingBox": "empty" - }, - { - "id": 26, - "name": "mangrove_propagule", - "displayName": "Mangrove Propagule", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 39, - "minStateId": 34, - "maxStateId": 73, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 5, - "values": [ - "0", - "1", - "2", - "3", - "4" - ] - }, - { - "name": "hanging", - "type": "bool", - "num_values": 2 - }, - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 27, - "name": "bedrock", - "displayName": "Bedrock", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 74, - "minStateId": 74, - "maxStateId": 74, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 28, - "name": "water", - "displayName": "Water", - "hardness": 100.0, - "resistance": 100.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 75, - "minStateId": 75, - "maxStateId": 90, - "states": [ - { - "name": "level", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 29, - "name": "lava", - "displayName": "Lava", - "hardness": 100.0, - "resistance": 100.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 15, - "filterLight": 1, - "defaultState": 91, - "minStateId": 91, - "maxStateId": 106, - "states": [ - { - "name": "level", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 30, - "name": "sand", - "displayName": "Sand", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 107, - "minStateId": 107, - "maxStateId": 107, - "states": [], - "drops": [ - 40 - ], - "boundingBox": "block" - }, - { - "id": 31, - "name": "red_sand", - "displayName": "Red Sand", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 108, - "minStateId": 108, - "maxStateId": 108, - "states": [], - "drops": [ - 41 - ], - "boundingBox": "block" - }, - { - "id": 32, - "name": "gravel", - "displayName": "Gravel", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 109, - "minStateId": 109, - "maxStateId": 109, - "states": [], - "drops": [ - 42 - ], - "boundingBox": "block" - }, - { - "id": 33, - "name": "gold_ore", - "displayName": "Gold Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 110, - "minStateId": 110, - "maxStateId": 110, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 731 - ], - "boundingBox": "block" - }, - { - "id": 34, - "name": "deepslate_gold_ore", - "displayName": "Deepslate Gold Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 111, - "minStateId": 111, - "maxStateId": 111, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 731 - ], - "boundingBox": "block" - }, - { - "id": 35, - "name": "iron_ore", - "displayName": "Iron Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 112, - "minStateId": 112, - "maxStateId": 112, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 727 - ], - "boundingBox": "block" - }, - { - "id": 36, - "name": "deepslate_iron_ore", - "displayName": "Deepslate Iron Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 113, - "minStateId": 113, - "maxStateId": 113, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 727 - ], - "boundingBox": "block" - }, - { - "id": 37, - "name": "coal_ore", - "displayName": "Coal Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 114, - "minStateId": 114, - "maxStateId": 114, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 720 - ], - "boundingBox": "block" - }, - { - "id": 38, - "name": "deepslate_coal_ore", - "displayName": "Deepslate Coal Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 115, - "minStateId": 115, - "maxStateId": 115, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 720 - ], - "boundingBox": "block" - }, - { - "id": 39, - "name": "nether_gold_ore", - "displayName": "Nether Gold Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 116, - "minStateId": 116, - "maxStateId": 116, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 900 - ], - "boundingBox": "block" - }, - { - "id": 40, - "name": "oak_log", - "displayName": "Oak Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 118, - "minStateId": 117, - "maxStateId": 119, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 104 - ], - "boundingBox": "block" - }, - { - "id": 41, - "name": "spruce_log", - "displayName": "Spruce Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 121, - "minStateId": 120, - "maxStateId": 122, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 105 - ], - "boundingBox": "block" - }, - { - "id": 42, - "name": "birch_log", - "displayName": "Birch Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 124, - "minStateId": 123, - "maxStateId": 125, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 106 - ], - "boundingBox": "block" - }, - { - "id": 43, - "name": "jungle_log", - "displayName": "Jungle Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 127, - "minStateId": 126, - "maxStateId": 128, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 107 - ], - "boundingBox": "block" - }, - { - "id": 44, - "name": "acacia_log", - "displayName": "Acacia Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 130, - "minStateId": 129, - "maxStateId": 131, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 108 - ], - "boundingBox": "block" - }, - { - "id": 45, - "name": "dark_oak_log", - "displayName": "Dark Oak Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 133, - "minStateId": 132, - "maxStateId": 134, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 109 - ], - "boundingBox": "block" - }, - { - "id": 46, - "name": "mangrove_log", - "displayName": "Mangrove Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 136, - "minStateId": 135, - "maxStateId": 137, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 110 - ], - "boundingBox": "block" - }, - { - "id": 47, - "name": "mangrove_roots", - "displayName": "Mangrove Roots", - "hardness": 0.7, - "resistance": 0.7, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 139, - "minStateId": 138, - "maxStateId": 139, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 111 - ], - "boundingBox": "block" - }, - { - "id": 48, - "name": "muddy_mangrove_roots", - "displayName": "Muddy Mangrove Roots", - "hardness": 0.7, - "resistance": 0.7, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 141, - "minStateId": 140, - "maxStateId": 142, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 112 - ], - "boundingBox": "block" - }, - { - "id": 49, - "name": "stripped_spruce_log", - "displayName": "Stripped Spruce Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 144, - "minStateId": 143, - "maxStateId": 145, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 116 - ], - "boundingBox": "block" - }, - { - "id": 50, - "name": "stripped_birch_log", - "displayName": "Stripped Birch Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 147, - "minStateId": 146, - "maxStateId": 148, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 117 - ], - "boundingBox": "block" - }, - { - "id": 51, - "name": "stripped_jungle_log", - "displayName": "Stripped Jungle Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 150, - "minStateId": 149, - "maxStateId": 151, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 118 - ], - "boundingBox": "block" - }, - { - "id": 52, - "name": "stripped_acacia_log", - "displayName": "Stripped Acacia Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 153, - "minStateId": 152, - "maxStateId": 154, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 119 - ], - "boundingBox": "block" - }, - { - "id": 53, - "name": "stripped_dark_oak_log", - "displayName": "Stripped Dark Oak Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 156, - "minStateId": 155, - "maxStateId": 157, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 120 - ], - "boundingBox": "block" - }, - { - "id": 54, - "name": "stripped_oak_log", - "displayName": "Stripped Oak Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 159, - "minStateId": 158, - "maxStateId": 160, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 115 - ], - "boundingBox": "block" - }, - { - "id": 55, - "name": "stripped_mangrove_log", - "displayName": "Stripped Mangrove Log", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 162, - "minStateId": 161, - "maxStateId": 163, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 121 - ], - "boundingBox": "block" - }, - { - "id": 56, - "name": "oak_wood", - "displayName": "Oak Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 165, - "minStateId": 164, - "maxStateId": 166, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 133 - ], - "boundingBox": "block" - }, - { - "id": 57, - "name": "spruce_wood", - "displayName": "Spruce Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 168, - "minStateId": 167, - "maxStateId": 169, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 134 - ], - "boundingBox": "block" - }, - { - "id": 58, - "name": "birch_wood", - "displayName": "Birch Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 171, - "minStateId": 170, - "maxStateId": 172, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 135 - ], - "boundingBox": "block" - }, - { - "id": 59, - "name": "jungle_wood", - "displayName": "Jungle Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 174, - "minStateId": 173, - "maxStateId": 175, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 136 - ], - "boundingBox": "block" - }, - { - "id": 60, - "name": "acacia_wood", - "displayName": "Acacia Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 177, - "minStateId": 176, - "maxStateId": 178, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 137 - ], - "boundingBox": "block" - }, - { - "id": 61, - "name": "dark_oak_wood", - "displayName": "Dark Oak Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 180, - "minStateId": 179, - "maxStateId": 181, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 138 - ], - "boundingBox": "block" - }, - { - "id": 62, - "name": "mangrove_wood", - "displayName": "Mangrove Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 183, - "minStateId": 182, - "maxStateId": 184, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 139 - ], - "boundingBox": "block" - }, - { - "id": 63, - "name": "stripped_oak_wood", - "displayName": "Stripped Oak Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 186, - "minStateId": 185, - "maxStateId": 187, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 124 - ], - "boundingBox": "block" - }, - { - "id": 64, - "name": "stripped_spruce_wood", - "displayName": "Stripped Spruce Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 189, - "minStateId": 188, - "maxStateId": 190, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 125 - ], - "boundingBox": "block" - }, - { - "id": 65, - "name": "stripped_birch_wood", - "displayName": "Stripped Birch Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 192, - "minStateId": 191, - "maxStateId": 193, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 126 - ], - "boundingBox": "block" - }, - { - "id": 66, - "name": "stripped_jungle_wood", - "displayName": "Stripped Jungle Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 195, - "minStateId": 194, - "maxStateId": 196, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 127 - ], - "boundingBox": "block" - }, - { - "id": 67, - "name": "stripped_acacia_wood", - "displayName": "Stripped Acacia Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 198, - "minStateId": 197, - "maxStateId": 199, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 128 - ], - "boundingBox": "block" - }, - { - "id": 68, - "name": "stripped_dark_oak_wood", - "displayName": "Stripped Dark Oak Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 201, - "minStateId": 200, - "maxStateId": 202, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 129 - ], - "boundingBox": "block" - }, - { - "id": 69, - "name": "stripped_mangrove_wood", - "displayName": "Stripped Mangrove Wood", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 204, - "minStateId": 203, - "maxStateId": 205, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 130 - ], - "boundingBox": "block" - }, - { - "id": 70, - "name": "oak_leaves", - "displayName": "Oak Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 233, - "minStateId": 206, - "maxStateId": 233, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 71, - "name": "spruce_leaves", - "displayName": "Spruce Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 261, - "minStateId": 234, - "maxStateId": 261, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 72, - "name": "birch_leaves", - "displayName": "Birch Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 289, - "minStateId": 262, - "maxStateId": 289, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 73, - "name": "jungle_leaves", - "displayName": "Jungle Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 317, - "minStateId": 290, - "maxStateId": 317, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 74, - "name": "acacia_leaves", - "displayName": "Acacia Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 345, - "minStateId": 318, - "maxStateId": 345, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 75, - "name": "dark_oak_leaves", - "displayName": "Dark Oak Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 373, - "minStateId": 346, - "maxStateId": 373, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 76, - "name": "mangrove_leaves", - "displayName": "Mangrove Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 401, - "minStateId": 374, - "maxStateId": 401, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 77, - "name": "azalea_leaves", - "displayName": "Azalea Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 429, - "minStateId": 402, - "maxStateId": 429, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 78, - "name": "flowering_azalea_leaves", - "displayName": "Flowering Azalea Leaves", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "leaves;mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 457, - "minStateId": 430, - "maxStateId": 457, - "states": [ - { - "name": "distance", - "type": "int", - "num_values": 7, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "persistent", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 79, - "name": "sponge", - "displayName": "Sponge", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 458, - "minStateId": 458, - "maxStateId": 458, - "states": [], - "drops": [ - 151 - ], - "boundingBox": "block" - }, - { - "id": 80, - "name": "wet_sponge", - "displayName": "Wet Sponge", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 459, - "minStateId": 459, - "maxStateId": 459, - "states": [], - "drops": [ - 152 - ], - "boundingBox": "block" - }, - { - "id": 81, - "name": "glass", - "displayName": "Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 460, - "minStateId": 460, - "maxStateId": 460, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 82, - "name": "lapis_ore", - "displayName": "Lapis Lazuli Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 461, - "minStateId": 461, - "maxStateId": 461, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 724 - ], - "boundingBox": "block" - }, - { - "id": 83, - "name": "deepslate_lapis_ore", - "displayName": "Deepslate Lapis Lazuli Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 462, - "minStateId": 462, - "maxStateId": 462, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 724 - ], - "boundingBox": "block" - }, - { - "id": 84, - "name": "lapis_block", - "displayName": "Block of Lapis Lazuli", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 463, - "minStateId": 463, - "maxStateId": 463, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 155 - ], - "boundingBox": "block" - }, - { - "id": 85, - "name": "dispenser", - "displayName": "Dispenser", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 465, - "minStateId": 464, - "maxStateId": 475, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "triggered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 619 - ], - "boundingBox": "block" - }, - { - "id": 86, - "name": "sandstone", - "displayName": "Sandstone", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 476, - "minStateId": 476, - "maxStateId": 476, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 156 - ], - "boundingBox": "block" - }, - { - "id": 87, - "name": "chiseled_sandstone", - "displayName": "Chiseled Sandstone", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 477, - "minStateId": 477, - "maxStateId": 477, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 157 - ], - "boundingBox": "block" - }, - { - "id": 88, - "name": "cut_sandstone", - "displayName": "Cut Sandstone", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 478, - "minStateId": 478, - "maxStateId": 478, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 158 - ], - "boundingBox": "block" - }, - { - "id": 89, - "name": "note_block", - "displayName": "Note Block", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 480, - "minStateId": 479, - "maxStateId": 1278, - "states": [ - { - "name": "instrument", - "type": "enum", - "num_values": 16, - "values": [ - "harp", - "basedrum", - "snare", - "hat", - "bass", - "flute", - "bell", - "guitar", - "chime", - "xylophone", - "iron_xylophone", - "cow_bell", - "didgeridoo", - "bit", - "banjo", - "pling" - ] - }, - { - "name": "note", - "type": "int", - "num_values": 25, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 631 - ], - "boundingBox": "block" - }, - { - "id": 90, - "name": "white_bed", - "displayName": "White Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1282, - "minStateId": 1279, - "maxStateId": 1294, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 91, - "name": "orange_bed", - "displayName": "Orange Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1298, - "minStateId": 1295, - "maxStateId": 1310, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 92, - "name": "magenta_bed", - "displayName": "Magenta Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1314, - "minStateId": 1311, - "maxStateId": 1326, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 93, - "name": "light_blue_bed", - "displayName": "Light Blue Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1330, - "minStateId": 1327, - "maxStateId": 1342, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 94, - "name": "yellow_bed", - "displayName": "Yellow Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1346, - "minStateId": 1343, - "maxStateId": 1358, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 95, - "name": "lime_bed", - "displayName": "Lime Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1362, - "minStateId": 1359, - "maxStateId": 1374, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 96, - "name": "pink_bed", - "displayName": "Pink Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1378, - "minStateId": 1375, - "maxStateId": 1390, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 97, - "name": "gray_bed", - "displayName": "Gray Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1394, - "minStateId": 1391, - "maxStateId": 1406, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 98, - "name": "light_gray_bed", - "displayName": "Light Gray Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1410, - "minStateId": 1407, - "maxStateId": 1422, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 99, - "name": "cyan_bed", - "displayName": "Cyan Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1426, - "minStateId": 1423, - "maxStateId": 1438, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 100, - "name": "purple_bed", - "displayName": "Purple Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1442, - "minStateId": 1439, - "maxStateId": 1454, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 101, - "name": "blue_bed", - "displayName": "Blue Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1458, - "minStateId": 1455, - "maxStateId": 1470, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 102, - "name": "brown_bed", - "displayName": "Brown Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1474, - "minStateId": 1471, - "maxStateId": 1486, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 103, - "name": "green_bed", - "displayName": "Green Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1490, - "minStateId": 1487, - "maxStateId": 1502, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 104, - "name": "red_bed", - "displayName": "Red Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1506, - "minStateId": 1503, - "maxStateId": 1518, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 105, - "name": "black_bed", - "displayName": "Black Bed", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1522, - "minStateId": 1519, - "maxStateId": 1534, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "type": "bool", - "num_values": 2 - }, - { - "name": "part", - "type": "enum", - "num_values": 2, - "values": [ - "head", - "foot" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 106, - "name": "powered_rail", - "displayName": "Powered Rail", - "hardness": 0.7, - "resistance": 0.7, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1548, - "minStateId": 1535, - "maxStateId": 1558, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "shape", - "type": "enum", - "num_values": 6, - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 685 - ], - "boundingBox": "empty" - }, - { - "id": 107, - "name": "detector_rail", - "displayName": "Detector Rail", - "hardness": 0.7, - "resistance": 0.7, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1572, - "minStateId": 1559, - "maxStateId": 1582, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "shape", - "type": "enum", - "num_values": 6, - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 686 - ], - "boundingBox": "empty" - }, - { - "id": 108, - "name": "sticky_piston", - "displayName": "Sticky Piston", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1589, - "minStateId": 1583, - "maxStateId": 1594, - "states": [ - { - "name": "extended", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 614 - ], - "boundingBox": "block" - }, - { - "id": 109, - "name": "cobweb", - "displayName": "Cobweb", - "hardness": 4.0, - "resistance": 4.0, - "stackSize": 64, - "diggable": true, - "material": "coweb", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 1595, - "minStateId": 1595, - "maxStateId": 1595, - "states": [], - "harvestTools": { - "735": true, - "740": true, - "745": true, - "750": true, - "755": true, - "760": true, - "887": true - }, - "drops": [ - 768 - ], - "boundingBox": "empty" - }, - { - "id": 110, - "name": "grass", - "displayName": "Grass", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1596, - "minStateId": 1596, - "maxStateId": 1596, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 111, - "name": "fern", - "displayName": "Fern", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1597, - "minStateId": 1597, - "maxStateId": 1597, - "states": [], - "drops": [ - 771 - ], - "boundingBox": "empty" - }, - { - "id": 112, - "name": "dead_bush", - "displayName": "Dead Bush", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1598, - "minStateId": 1598, - "maxStateId": 1598, - "states": [], - "drops": [ - 765 - ], - "boundingBox": "empty" - }, - { - "id": 113, - "name": "seagrass", - "displayName": "Seagrass", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 1599, - "minStateId": 1599, - "maxStateId": 1599, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 114, - "name": "tall_seagrass", - "displayName": "Tall Seagrass", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 1601, - "minStateId": 1600, - "maxStateId": 1601, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 115, - "name": "piston", - "displayName": "Piston", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1608, - "minStateId": 1602, - "maxStateId": 1613, - "states": [ - { - "name": "extended", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 613 - ], - "boundingBox": "block" - }, - { - "id": 116, - "name": "piston_head", - "displayName": "Piston Head", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1616, - "minStateId": 1614, - "maxStateId": 1637, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "short", - "type": "bool", - "num_values": 2 - }, - { - "name": "type", - "type": "enum", - "num_values": 2, - "values": [ - "normal", - "sticky" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 117, - "name": "white_wool", - "displayName": "White Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1638, - "minStateId": 1638, - "maxStateId": 1638, - "states": [], - "drops": [ - 167 - ], - "boundingBox": "block" - }, - { - "id": 118, - "name": "orange_wool", - "displayName": "Orange Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1639, - "minStateId": 1639, - "maxStateId": 1639, - "states": [], - "drops": [ - 168 - ], - "boundingBox": "block" - }, - { - "id": 119, - "name": "magenta_wool", - "displayName": "Magenta Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1640, - "minStateId": 1640, - "maxStateId": 1640, - "states": [], - "drops": [ - 169 - ], - "boundingBox": "block" - }, - { - "id": 120, - "name": "light_blue_wool", - "displayName": "Light Blue Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1641, - "minStateId": 1641, - "maxStateId": 1641, - "states": [], - "drops": [ - 170 - ], - "boundingBox": "block" - }, - { - "id": 121, - "name": "yellow_wool", - "displayName": "Yellow Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1642, - "minStateId": 1642, - "maxStateId": 1642, - "states": [], - "drops": [ - 171 - ], - "boundingBox": "block" - }, - { - "id": 122, - "name": "lime_wool", - "displayName": "Lime Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1643, - "minStateId": 1643, - "maxStateId": 1643, - "states": [], - "drops": [ - 172 - ], - "boundingBox": "block" - }, - { - "id": 123, - "name": "pink_wool", - "displayName": "Pink Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1644, - "minStateId": 1644, - "maxStateId": 1644, - "states": [], - "drops": [ - 173 - ], - "boundingBox": "block" - }, - { - "id": 124, - "name": "gray_wool", - "displayName": "Gray Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1645, - "minStateId": 1645, - "maxStateId": 1645, - "states": [], - "drops": [ - 174 - ], - "boundingBox": "block" - }, - { - "id": 125, - "name": "light_gray_wool", - "displayName": "Light Gray Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1646, - "minStateId": 1646, - "maxStateId": 1646, - "states": [], - "drops": [ - 175 - ], - "boundingBox": "block" - }, - { - "id": 126, - "name": "cyan_wool", - "displayName": "Cyan Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1647, - "minStateId": 1647, - "maxStateId": 1647, - "states": [], - "drops": [ - 176 - ], - "boundingBox": "block" - }, - { - "id": 127, - "name": "purple_wool", - "displayName": "Purple Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1648, - "minStateId": 1648, - "maxStateId": 1648, - "states": [], - "drops": [ - 177 - ], - "boundingBox": "block" - }, - { - "id": 128, - "name": "blue_wool", - "displayName": "Blue Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1649, - "minStateId": 1649, - "maxStateId": 1649, - "states": [], - "drops": [ - 178 - ], - "boundingBox": "block" - }, - { - "id": 129, - "name": "brown_wool", - "displayName": "Brown Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1650, - "minStateId": 1650, - "maxStateId": 1650, - "states": [], - "drops": [ - 179 - ], - "boundingBox": "block" - }, - { - "id": 130, - "name": "green_wool", - "displayName": "Green Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1651, - "minStateId": 1651, - "maxStateId": 1651, - "states": [], - "drops": [ - 180 - ], - "boundingBox": "block" - }, - { - "id": 131, - "name": "red_wool", - "displayName": "Red Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1652, - "minStateId": 1652, - "maxStateId": 1652, - "states": [], - "drops": [ - 181 - ], - "boundingBox": "block" - }, - { - "id": 132, - "name": "black_wool", - "displayName": "Black Wool", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "wool", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1653, - "minStateId": 1653, - "maxStateId": 1653, - "states": [], - "drops": [ - 182 - ], - "boundingBox": "block" - }, - { - "id": 133, - "name": "moving_piston", - "displayName": "Moving Piston", - "hardness": -1.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1654, - "minStateId": 1654, - "maxStateId": 1665, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "type", - "type": "enum", - "num_values": 2, - "values": [ - "normal", - "sticky" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 134, - "name": "dandelion", - "displayName": "Dandelion", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1666, - "minStateId": 1666, - "maxStateId": 1666, - "states": [], - "drops": [ - 183 - ], - "boundingBox": "empty" - }, - { - "id": 135, - "name": "poppy", - "displayName": "Poppy", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1667, - "minStateId": 1667, - "maxStateId": 1667, - "states": [], - "drops": [ - 184 - ], - "boundingBox": "empty" - }, - { - "id": 136, - "name": "blue_orchid", - "displayName": "Blue Orchid", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1668, - "minStateId": 1668, - "maxStateId": 1668, - "states": [], - "drops": [ - 185 - ], - "boundingBox": "empty" - }, - { - "id": 137, - "name": "allium", - "displayName": "Allium", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1669, - "minStateId": 1669, - "maxStateId": 1669, - "states": [], - "drops": [ - 186 - ], - "boundingBox": "empty" - }, - { - "id": 138, - "name": "azure_bluet", - "displayName": "Azure Bluet", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1670, - "minStateId": 1670, - "maxStateId": 1670, - "states": [], - "drops": [ - 187 - ], - "boundingBox": "empty" - }, - { - "id": 139, - "name": "red_tulip", - "displayName": "Red Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1671, - "minStateId": 1671, - "maxStateId": 1671, - "states": [], - "drops": [ - 188 - ], - "boundingBox": "empty" - }, - { - "id": 140, - "name": "orange_tulip", - "displayName": "Orange Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1672, - "minStateId": 1672, - "maxStateId": 1672, - "states": [], - "drops": [ - 189 - ], - "boundingBox": "empty" - }, - { - "id": 141, - "name": "white_tulip", - "displayName": "White Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1673, - "minStateId": 1673, - "maxStateId": 1673, - "states": [], - "drops": [ - 190 - ], - "boundingBox": "empty" - }, - { - "id": 142, - "name": "pink_tulip", - "displayName": "Pink Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1674, - "minStateId": 1674, - "maxStateId": 1674, - "states": [], - "drops": [ - 191 - ], - "boundingBox": "empty" - }, - { - "id": 143, - "name": "oxeye_daisy", - "displayName": "Oxeye Daisy", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1675, - "minStateId": 1675, - "maxStateId": 1675, - "states": [], - "drops": [ - 192 - ], - "boundingBox": "empty" - }, - { - "id": 144, - "name": "cornflower", - "displayName": "Cornflower", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1676, - "minStateId": 1676, - "maxStateId": 1676, - "states": [], - "drops": [ - 193 - ], - "boundingBox": "empty" - }, - { - "id": 145, - "name": "wither_rose", - "displayName": "Wither Rose", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1677, - "minStateId": 1677, - "maxStateId": 1677, - "states": [], - "drops": [ - 195 - ], - "boundingBox": "empty" - }, - { - "id": 146, - "name": "lily_of_the_valley", - "displayName": "Lily of the Valley", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1678, - "minStateId": 1678, - "maxStateId": 1678, - "states": [], - "drops": [ - 194 - ], - "boundingBox": "empty" - }, - { - "id": 147, - "name": "brown_mushroom", - "displayName": "Brown Mushroom", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 1, - "filterLight": 0, - "defaultState": 1679, - "minStateId": 1679, - "maxStateId": 1679, - "states": [], - "drops": [ - 197 - ], - "boundingBox": "empty" - }, - { - "id": 148, - "name": "red_mushroom", - "displayName": "Red Mushroom", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 1680, - "minStateId": 1680, - "maxStateId": 1680, - "states": [], - "drops": [ - 198 - ], - "boundingBox": "empty" - }, - { - "id": 149, - "name": "gold_block", - "displayName": "Block of Gold", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1681, - "minStateId": 1681, - "maxStateId": 1681, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 70 - ], - "boundingBox": "block" - }, - { - "id": 150, - "name": "iron_block", - "displayName": "Block of Iron", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1682, - "minStateId": 1682, - "maxStateId": 1682, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 68 - ], - "boundingBox": "block" - }, - { - "id": 151, - "name": "bricks", - "displayName": "Bricks", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1683, - "minStateId": 1683, - "maxStateId": 1683, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 244 - ], - "boundingBox": "block" - }, - { - "id": 152, - "name": "tnt", - "displayName": "TNT", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1685, - "minStateId": 1684, - "maxStateId": 1685, - "states": [ - { - "name": "unstable", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 629 - ], - "boundingBox": "block" - }, - { - "id": 153, - "name": "bookshelf", - "displayName": "Bookshelf", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1686, - "minStateId": 1686, - "maxStateId": 1686, - "states": [], - "drops": [ - 830 - ], - "boundingBox": "block" - }, - { - "id": 154, - "name": "mossy_cobblestone", - "displayName": "Mossy Cobblestone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1687, - "minStateId": 1687, - "maxStateId": 1687, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 246 - ], - "boundingBox": "block" - }, - { - "id": 155, - "name": "obsidian", - "displayName": "Obsidian", - "hardness": 50.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 1688, - "minStateId": 1688, - "maxStateId": 1688, - "states": [], - "harvestTools": { - "757": true, - "762": true - }, - "drops": [ - 247 - ], - "boundingBox": "block" - }, - { - "id": 156, - "name": "torch", - "displayName": "Torch", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 14, - "filterLight": 0, - "defaultState": 1689, - "minStateId": 1689, - "maxStateId": 1689, - "states": [], - "drops": [ - 248 - ], - "boundingBox": "empty" - }, - { - "id": 157, - "name": "wall_torch", - "displayName": "Torch", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 14, - "filterLight": 0, - "defaultState": 1690, - "minStateId": 1690, - "maxStateId": 1693, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 248 - ], - "boundingBox": "empty" - }, - { - "id": 158, - "name": "fire", - "displayName": "Fire", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 15, - "filterLight": 0, - "defaultState": 1725, - "minStateId": 1694, - "maxStateId": 2205, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 159, - "name": "soul_fire", - "displayName": "Soul Fire", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 10, - "filterLight": 0, - "defaultState": 2206, - "minStateId": 2206, - "maxStateId": 2206, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 160, - "name": "spawner", - "displayName": "Spawner", - "hardness": 5.0, - "resistance": 5.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 2207, - "minStateId": 2207, - "maxStateId": 2207, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "block" - }, - { - "id": 161, - "name": "oak_stairs", - "displayName": "Oak Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 2219, - "minStateId": 2208, - "maxStateId": 2287, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 338 - ], - "boundingBox": "block" - }, - { - "id": 162, - "name": "chest", - "displayName": "Chest", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 2289, - "minStateId": 2288, - "maxStateId": 2311, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "single", - "left", - "right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 256 - ], - "boundingBox": "block" - }, - { - "id": 163, - "name": "redstone_wire", - "displayName": "Redstone Wire", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3472, - "minStateId": 2312, - "maxStateId": 3607, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "up", - "side", - "none" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "up", - "side", - "none" - ] - }, - { - "name": "power", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "up", - "side", - "none" - ] - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "up", - "side", - "none" - ] - } - ], - "drops": [ - 608 - ], - "boundingBox": "empty" - }, - { - "id": 164, - "name": "diamond_ore", - "displayName": "Diamond Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 3608, - "minStateId": 3608, - "maxStateId": 3608, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 722 - ], - "boundingBox": "block" - }, - { - "id": 165, - "name": "deepslate_diamond_ore", - "displayName": "Deepslate Diamond Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 3609, - "minStateId": 3609, - "maxStateId": 3609, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 722 - ], - "boundingBox": "block" - }, - { - "id": 166, - "name": "diamond_block", - "displayName": "Block of Diamond", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 3610, - "minStateId": 3610, - "maxStateId": 3610, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 71 - ], - "boundingBox": "block" - }, - { - "id": 167, - "name": "crafting_table", - "displayName": "Crafting Table", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 3611, - "minStateId": 3611, - "maxStateId": 3611, - "states": [], - "drops": [ - 257 - ], - "boundingBox": "block" - }, - { - "id": 168, - "name": "wheat", - "displayName": "Wheat Crops", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3612, - "minStateId": 3612, - "maxStateId": 3619, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "drops": [ - 771 - ], - "boundingBox": "empty" - }, - { - "id": 169, - "name": "farmland", - "displayName": "Farmland", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3620, - "minStateId": 3620, - "maxStateId": 3627, - "states": [ - { - "name": "moisture", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "drops": [ - 15 - ], - "boundingBox": "block" - }, - { - "id": 170, - "name": "furnace", - "displayName": "Furnace", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 3629, - "minStateId": 3628, - "maxStateId": 3635, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 259 - ], - "boundingBox": "block" - }, - { - "id": 171, - "name": "oak_sign", - "displayName": "Oak Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3637, - "minStateId": 3636, - "maxStateId": 3667, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 804 - ], - "boundingBox": "empty" - }, - { - "id": 172, - "name": "spruce_sign", - "displayName": "Spruce Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3669, - "minStateId": 3668, - "maxStateId": 3699, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 805 - ], - "boundingBox": "empty" - }, - { - "id": 173, - "name": "birch_sign", - "displayName": "Birch Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3701, - "minStateId": 3700, - "maxStateId": 3731, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 806 - ], - "boundingBox": "empty" - }, - { - "id": 174, - "name": "acacia_sign", - "displayName": "Acacia Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3733, - "minStateId": 3732, - "maxStateId": 3763, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 808 - ], - "boundingBox": "empty" - }, - { - "id": 175, - "name": "jungle_sign", - "displayName": "Jungle Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3765, - "minStateId": 3764, - "maxStateId": 3795, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 807 - ], - "boundingBox": "empty" - }, - { - "id": 176, - "name": "dark_oak_sign", - "displayName": "Dark Oak Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3797, - "minStateId": 3796, - "maxStateId": 3827, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 809 - ], - "boundingBox": "empty" - }, - { - "id": 177, - "name": "mangrove_sign", - "displayName": "Mangrove Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3829, - "minStateId": 3828, - "maxStateId": 3859, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 810 - ], - "boundingBox": "empty" - }, - { - "id": 178, - "name": "oak_door", - "displayName": "Oak Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3871, - "minStateId": 3860, - "maxStateId": 3923, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 657 - ], - "boundingBox": "block" - }, - { - "id": 179, - "name": "ladder", - "displayName": "Ladder", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3925, - "minStateId": 3924, - "maxStateId": 3931, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 260 - ], - "boundingBox": "block" - }, - { - "id": 180, - "name": "rail", - "displayName": "Rail", - "hardness": 0.7, - "resistance": 0.7, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3933, - "minStateId": 3932, - "maxStateId": 3951, - "states": [ - { - "name": "shape", - "type": "enum", - "num_values": 10, - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 687 - ], - "boundingBox": "empty" - }, - { - "id": 181, - "name": "cobblestone_stairs", - "displayName": "Cobblestone Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 3963, - "minStateId": 3952, - "maxStateId": 4031, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 261 - ], - "boundingBox": "block" - }, - { - "id": 182, - "name": "oak_wall_sign", - "displayName": "Oak Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4033, - "minStateId": 4032, - "maxStateId": 4039, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 804 - ], - "boundingBox": "empty" - }, - { - "id": 183, - "name": "spruce_wall_sign", - "displayName": "Spruce Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4041, - "minStateId": 4040, - "maxStateId": 4047, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 805 - ], - "boundingBox": "empty" - }, - { - "id": 184, - "name": "birch_wall_sign", - "displayName": "Birch Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4049, - "minStateId": 4048, - "maxStateId": 4055, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 806 - ], - "boundingBox": "empty" - }, - { - "id": 185, - "name": "acacia_wall_sign", - "displayName": "Acacia Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4057, - "minStateId": 4056, - "maxStateId": 4063, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 808 - ], - "boundingBox": "empty" - }, - { - "id": 186, - "name": "jungle_wall_sign", - "displayName": "Jungle Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4065, - "minStateId": 4064, - "maxStateId": 4071, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 807 - ], - "boundingBox": "empty" - }, - { - "id": 187, - "name": "dark_oak_wall_sign", - "displayName": "Dark Oak Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4073, - "minStateId": 4072, - "maxStateId": 4079, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 809 - ], - "boundingBox": "empty" - }, - { - "id": 188, - "name": "mangrove_wall_sign", - "displayName": "Mangrove Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4081, - "minStateId": 4080, - "maxStateId": 4087, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 810 - ], - "boundingBox": "empty" - }, - { - "id": 189, - "name": "lever", - "displayName": "Lever", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4097, - "minStateId": 4088, - "maxStateId": 4111, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 623 - ], - "boundingBox": "empty" - }, - { - "id": 190, - "name": "stone_pressure_plate", - "displayName": "Stone Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4113, - "minStateId": 4112, - "maxStateId": 4113, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 643 - ], - "boundingBox": "empty" - }, - { - "id": 191, - "name": "iron_door", - "displayName": "Iron Door", - "hardness": 5.0, - "resistance": 5.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4125, - "minStateId": 4114, - "maxStateId": 4177, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 656 - ], - "boundingBox": "block" - }, - { - "id": 192, - "name": "oak_pressure_plate", - "displayName": "Oak Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4179, - "minStateId": 4178, - "maxStateId": 4179, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 647 - ], - "boundingBox": "empty" - }, - { - "id": 193, - "name": "spruce_pressure_plate", - "displayName": "Spruce Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4181, - "minStateId": 4180, - "maxStateId": 4181, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 648 - ], - "boundingBox": "empty" - }, - { - "id": 194, - "name": "birch_pressure_plate", - "displayName": "Birch Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4183, - "minStateId": 4182, - "maxStateId": 4183, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 649 - ], - "boundingBox": "empty" - }, - { - "id": 195, - "name": "jungle_pressure_plate", - "displayName": "Jungle Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4185, - "minStateId": 4184, - "maxStateId": 4185, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 650 - ], - "boundingBox": "empty" - }, - { - "id": 196, - "name": "acacia_pressure_plate", - "displayName": "Acacia Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4187, - "minStateId": 4186, - "maxStateId": 4187, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 651 - ], - "boundingBox": "empty" - }, - { - "id": 197, - "name": "dark_oak_pressure_plate", - "displayName": "Dark Oak Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4189, - "minStateId": 4188, - "maxStateId": 4189, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 652 - ], - "boundingBox": "empty" - }, - { - "id": 198, - "name": "mangrove_pressure_plate", - "displayName": "Mangrove Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4191, - "minStateId": 4190, - "maxStateId": 4191, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 653 - ], - "boundingBox": "empty" - }, - { - "id": 199, - "name": "redstone_ore", - "displayName": "Redstone Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4193, - "minStateId": 4192, - "maxStateId": 4193, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 608 - ], - "boundingBox": "block" - }, - { - "id": 200, - "name": "deepslate_redstone_ore", - "displayName": "Deepslate Redstone Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4195, - "minStateId": 4194, - "maxStateId": 4195, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 608 - ], - "boundingBox": "block" - }, - { - "id": 201, - "name": "redstone_torch", - "displayName": "Redstone Torch", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 7, - "filterLight": 0, - "defaultState": 4196, - "minStateId": 4196, - "maxStateId": 4197, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 609 - ], - "boundingBox": "empty" - }, - { - "id": 202, - "name": "redstone_wall_torch", - "displayName": "Redstone Torch", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 7, - "filterLight": 0, - "defaultState": 4198, - "minStateId": 4198, - "maxStateId": 4205, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 609 - ], - "boundingBox": "empty" - }, - { - "id": 203, - "name": "stone_button", - "displayName": "Stone Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4215, - "minStateId": 4206, - "maxStateId": 4229, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 632 - ], - "boundingBox": "empty" - }, - { - "id": 204, - "name": "snow", - "displayName": "Snow", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4230, - "minStateId": 4230, - "maxStateId": 4237, - "states": [ - { - "name": "layers", - "type": "int", - "num_values": 8, - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - } - ], - "harvestTools": { - "736": true, - "741": true, - "746": true, - "751": true, - "756": true, - "761": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 205, - "name": "ice", - "displayName": "Ice", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 4238, - "minStateId": 4238, - "maxStateId": 4238, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 206, - "name": "snow_block", - "displayName": "Snow Block", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4239, - "minStateId": 4239, - "maxStateId": 4239, - "states": [], - "harvestTools": { - "736": true, - "741": true, - "746": true, - "751": true, - "756": true, - "761": true - }, - "drops": [ - 817 - ], - "boundingBox": "block" - }, - { - "id": 207, - "name": "cactus", - "displayName": "Cactus", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4240, - "minStateId": 4240, - "maxStateId": 4255, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 265 - ], - "boundingBox": "block" - }, - { - "id": 208, - "name": "clay", - "displayName": "Clay", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4256, - "minStateId": 4256, - "maxStateId": 4256, - "states": [], - "drops": [ - 827 - ], - "boundingBox": "block" - }, - { - "id": 209, - "name": "sugar_cane", - "displayName": "Sugar Cane", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4257, - "minStateId": 4257, - "maxStateId": 4272, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 206 - ], - "boundingBox": "empty" - }, - { - "id": 210, - "name": "jukebox", - "displayName": "Jukebox", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4274, - "minStateId": 4273, - "maxStateId": 4274, - "states": [ - { - "name": "has_record", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 267 - ], - "boundingBox": "block" - }, - { - "id": 211, - "name": "oak_fence", - "displayName": "Oak Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4306, - "minStateId": 4275, - "maxStateId": 4306, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 268 - ], - "boundingBox": "block" - }, - { - "id": 212, - "name": "pumpkin", - "displayName": "Pumpkin", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "gourd;mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4307, - "minStateId": 4307, - "maxStateId": 4307, - "states": [], - "drops": [ - 277 - ], - "boundingBox": "block" - }, - { - "id": 213, - "name": "netherrack", - "displayName": "Netherrack", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4308, - "minStateId": 4308, - "maxStateId": 4308, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 280 - ], - "boundingBox": "block" - }, - { - "id": 214, - "name": "soul_sand", - "displayName": "Soul Sand", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4309, - "minStateId": 4309, - "maxStateId": 4309, - "states": [], - "drops": [ - 281 - ], - "boundingBox": "block" - }, - { - "id": 215, - "name": "soul_soil", - "displayName": "Soul Soil", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4310, - "minStateId": 4310, - "maxStateId": 4310, - "states": [], - "drops": [ - 282 - ], - "boundingBox": "block" - }, - { - "id": 216, - "name": "basalt", - "displayName": "Basalt", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4312, - "minStateId": 4311, - "maxStateId": 4313, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 283 - ], - "boundingBox": "block" - }, - { - "id": 217, - "name": "polished_basalt", - "displayName": "Polished Basalt", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4315, - "minStateId": 4314, - "maxStateId": 4316, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 284 - ], - "boundingBox": "block" - }, - { - "id": 218, - "name": "soul_torch", - "displayName": "Soul Torch", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 10, - "filterLight": 0, - "defaultState": 4317, - "minStateId": 4317, - "maxStateId": 4317, - "states": [], - "drops": [ - 286 - ], - "boundingBox": "empty" - }, - { - "id": 219, - "name": "soul_wall_torch", - "displayName": "Soul Torch", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 10, - "filterLight": 0, - "defaultState": 4318, - "minStateId": 4318, - "maxStateId": 4321, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 286 - ], - "boundingBox": "empty" - }, - { - "id": 220, - "name": "glowstone", - "displayName": "Glowstone", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 4322, - "minStateId": 4322, - "maxStateId": 4322, - "states": [], - "drops": [ - 839 - ], - "boundingBox": "block" - }, - { - "id": 221, - "name": "nether_portal", - "displayName": "Nether Portal", - "hardness": -1.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 11, - "filterLight": 0, - "defaultState": 4323, - "minStateId": 4323, - "maxStateId": 4324, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 2, - "values": [ - "x", - "z" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 222, - "name": "carved_pumpkin", - "displayName": "Carved Pumpkin", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "gourd;mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4325, - "minStateId": 4325, - "maxStateId": 4328, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 278 - ], - "boundingBox": "block" - }, - { - "id": 223, - "name": "jack_o_lantern", - "displayName": "Jack o'Lantern", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "gourd;mineable/axe", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 4329, - "minStateId": 4329, - "maxStateId": 4332, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 279 - ], - "boundingBox": "block" - }, - { - "id": 224, - "name": "cake", - "displayName": "Cake", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4333, - "minStateId": 4333, - "maxStateId": 4339, - "states": [ - { - "name": "bites", - "type": "int", - "num_values": 7, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 225, - "name": "repeater", - "displayName": "Redstone Repeater", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4343, - "minStateId": 4340, - "maxStateId": 4403, - "states": [ - { - "name": "delay", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "locked", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 611 - ], - "boundingBox": "block" - }, - { - "id": 226, - "name": "white_stained_glass", - "displayName": "White Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4404, - "minStateId": 4404, - "maxStateId": 4404, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 227, - "name": "orange_stained_glass", - "displayName": "Orange Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4405, - "minStateId": 4405, - "maxStateId": 4405, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 228, - "name": "magenta_stained_glass", - "displayName": "Magenta Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4406, - "minStateId": 4406, - "maxStateId": 4406, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 229, - "name": "light_blue_stained_glass", - "displayName": "Light Blue Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4407, - "minStateId": 4407, - "maxStateId": 4407, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 230, - "name": "yellow_stained_glass", - "displayName": "Yellow Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4408, - "minStateId": 4408, - "maxStateId": 4408, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 231, - "name": "lime_stained_glass", - "displayName": "Lime Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4409, - "minStateId": 4409, - "maxStateId": 4409, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 232, - "name": "pink_stained_glass", - "displayName": "Pink Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4410, - "minStateId": 4410, - "maxStateId": 4410, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 233, - "name": "gray_stained_glass", - "displayName": "Gray Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4411, - "minStateId": 4411, - "maxStateId": 4411, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 234, - "name": "light_gray_stained_glass", - "displayName": "Light Gray Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4412, - "minStateId": 4412, - "maxStateId": 4412, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 235, - "name": "cyan_stained_glass", - "displayName": "Cyan Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4413, - "minStateId": 4413, - "maxStateId": 4413, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 236, - "name": "purple_stained_glass", - "displayName": "Purple Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4414, - "minStateId": 4414, - "maxStateId": 4414, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 237, - "name": "blue_stained_glass", - "displayName": "Blue Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4415, - "minStateId": 4415, - "maxStateId": 4415, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 238, - "name": "brown_stained_glass", - "displayName": "Brown Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4416, - "minStateId": 4416, - "maxStateId": 4416, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 239, - "name": "green_stained_glass", - "displayName": "Green Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4417, - "minStateId": 4417, - "maxStateId": 4417, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 240, - "name": "red_stained_glass", - "displayName": "Red Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4418, - "minStateId": 4418, - "maxStateId": 4418, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 241, - "name": "black_stained_glass", - "displayName": "Black Stained Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4419, - "minStateId": 4419, - "maxStateId": 4419, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 242, - "name": "oak_trapdoor", - "displayName": "Oak Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4435, - "minStateId": 4420, - "maxStateId": 4483, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 667 - ], - "boundingBox": "block" - }, - { - "id": 243, - "name": "spruce_trapdoor", - "displayName": "Spruce Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4499, - "minStateId": 4484, - "maxStateId": 4547, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 668 - ], - "boundingBox": "block" - }, - { - "id": 244, - "name": "birch_trapdoor", - "displayName": "Birch Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4563, - "minStateId": 4548, - "maxStateId": 4611, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 669 - ], - "boundingBox": "block" - }, - { - "id": 245, - "name": "jungle_trapdoor", - "displayName": "Jungle Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4627, - "minStateId": 4612, - "maxStateId": 4675, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 670 - ], - "boundingBox": "block" - }, - { - "id": 246, - "name": "acacia_trapdoor", - "displayName": "Acacia Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4691, - "minStateId": 4676, - "maxStateId": 4739, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 671 - ], - "boundingBox": "block" - }, - { - "id": 247, - "name": "dark_oak_trapdoor", - "displayName": "Dark Oak Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4755, - "minStateId": 4740, - "maxStateId": 4803, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 672 - ], - "boundingBox": "block" - }, - { - "id": 248, - "name": "mangrove_trapdoor", - "displayName": "Mangrove Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 4819, - "minStateId": 4804, - "maxStateId": 4867, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 673 - ], - "boundingBox": "block" - }, - { - "id": 249, - "name": "stone_bricks", - "displayName": "Stone Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4868, - "minStateId": 4868, - "maxStateId": 4868, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 295 - ], - "boundingBox": "block" - }, - { - "id": 250, - "name": "mossy_stone_bricks", - "displayName": "Mossy Stone Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4869, - "minStateId": 4869, - "maxStateId": 4869, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 296 - ], - "boundingBox": "block" - }, - { - "id": 251, - "name": "cracked_stone_bricks", - "displayName": "Cracked Stone Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4870, - "minStateId": 4870, - "maxStateId": 4870, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 297 - ], - "boundingBox": "block" - }, - { - "id": 252, - "name": "chiseled_stone_bricks", - "displayName": "Chiseled Stone Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4871, - "minStateId": 4871, - "maxStateId": 4871, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 298 - ], - "boundingBox": "block" - }, - { - "id": 253, - "name": "packed_mud", - "displayName": "Packed Mud", - "hardness": 1.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4872, - "minStateId": 4872, - "maxStateId": 4872, - "states": [], - "drops": [ - 299 - ], - "boundingBox": "block" - }, - { - "id": 254, - "name": "mud_bricks", - "displayName": "Mud Bricks", - "hardness": 1.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4873, - "minStateId": 4873, - "maxStateId": 4873, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 300 - ], - "boundingBox": "block" - }, - { - "id": 255, - "name": "infested_stone", - "displayName": "Infested Stone", - "hardness": 0.75, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4874, - "minStateId": 4874, - "maxStateId": 4874, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 256, - "name": "infested_cobblestone", - "displayName": "Infested Cobblestone", - "hardness": 1.0, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4875, - "minStateId": 4875, - "maxStateId": 4875, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 257, - "name": "infested_stone_bricks", - "displayName": "Infested Stone Bricks", - "hardness": 0.75, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4876, - "minStateId": 4876, - "maxStateId": 4876, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 258, - "name": "infested_mossy_stone_bricks", - "displayName": "Infested Mossy Stone Bricks", - "hardness": 0.75, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4877, - "minStateId": 4877, - "maxStateId": 4877, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 259, - "name": "infested_cracked_stone_bricks", - "displayName": "Infested Cracked Stone Bricks", - "hardness": 0.75, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4878, - "minStateId": 4878, - "maxStateId": 4878, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 260, - "name": "infested_chiseled_stone_bricks", - "displayName": "Infested Chiseled Stone Bricks", - "hardness": 0.75, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4879, - "minStateId": 4879, - "maxStateId": 4879, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 261, - "name": "brown_mushroom_block", - "displayName": "Brown Mushroom Block", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4880, - "minStateId": 4880, - "maxStateId": 4943, - "states": [ - { - "name": "down", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 0 - ], - "boundingBox": "block" - }, - { - "id": 262, - "name": "red_mushroom_block", - "displayName": "Red Mushroom Block", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 4944, - "minStateId": 4944, - "maxStateId": 5007, - "states": [ - { - "name": "down", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 0 - ], - "boundingBox": "block" - }, - { - "id": 263, - "name": "mushroom_stem", - "displayName": "Mushroom Stem", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5008, - "minStateId": 5008, - "maxStateId": 5071, - "states": [ - { - "name": "down", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 264, - "name": "iron_bars", - "displayName": "Iron Bars", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5103, - "minStateId": 5072, - "maxStateId": 5103, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 310 - ], - "boundingBox": "block" - }, - { - "id": 265, - "name": "chain", - "displayName": "Chain", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5107, - "minStateId": 5104, - "maxStateId": 5109, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 311 - ], - "boundingBox": "block" - }, - { - "id": 266, - "name": "glass_pane", - "displayName": "Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5141, - "minStateId": 5110, - "maxStateId": 5141, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 267, - "name": "melon", - "displayName": "Melon", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "gourd;mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5142, - "minStateId": 5142, - "maxStateId": 5142, - "states": [], - "drops": [ - 888 - ], - "boundingBox": "block" - }, - { - "id": 268, - "name": "attached_pumpkin_stem", - "displayName": "Attached Pumpkin Stem", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5143, - "minStateId": 5143, - "maxStateId": 5146, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 890 - ], - "boundingBox": "empty" - }, - { - "id": 269, - "name": "attached_melon_stem", - "displayName": "Attached Melon Stem", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5147, - "minStateId": 5147, - "maxStateId": 5150, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 891 - ], - "boundingBox": "empty" - }, - { - "id": 270, - "name": "pumpkin_stem", - "displayName": "Pumpkin Stem", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5151, - "minStateId": 5151, - "maxStateId": 5158, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "drops": [ - 0 - ], - "boundingBox": "empty" - }, - { - "id": 271, - "name": "melon_stem", - "displayName": "Melon Stem", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5159, - "minStateId": 5159, - "maxStateId": 5166, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "drops": [ - 0 - ], - "boundingBox": "empty" - }, - { - "id": 272, - "name": "vine", - "displayName": "Vines", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "vine_or_glow_lichen;plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5198, - "minStateId": 5167, - "maxStateId": 5198, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 273, - "name": "glow_lichen", - "displayName": "Glow Lichen", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "vine_or_glow_lichen;plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5326, - "minStateId": 5199, - "maxStateId": 5326, - "states": [ - { - "name": "down", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 274, - "name": "oak_fence_gate", - "displayName": "Oak Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5334, - "minStateId": 5327, - "maxStateId": 5358, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 676 - ], - "boundingBox": "block" - }, - { - "id": 275, - "name": "brick_stairs", - "displayName": "Brick Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5370, - "minStateId": 5359, - "maxStateId": 5438, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 316 - ], - "boundingBox": "block" - }, - { - "id": 276, - "name": "stone_brick_stairs", - "displayName": "Stone Brick Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5450, - "minStateId": 5439, - "maxStateId": 5518, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 317 - ], - "boundingBox": "block" - }, - { - "id": 277, - "name": "mud_brick_stairs", - "displayName": "Mud Brick Stairs", - "hardness": 1.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5530, - "minStateId": 5519, - "maxStateId": 5598, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 318 - ], - "boundingBox": "block" - }, - { - "id": 278, - "name": "mycelium", - "displayName": "Mycelium", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5600, - "minStateId": 5599, - "maxStateId": 5600, - "states": [ - { - "name": "snowy", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 15 - ], - "boundingBox": "block" - }, - { - "id": 279, - "name": "lily_pad", - "displayName": "Lily Pad", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5601, - "minStateId": 5601, - "maxStateId": 5601, - "states": [], - "drops": [ - 320 - ], - "boundingBox": "block" - }, - { - "id": 280, - "name": "nether_bricks", - "displayName": "Nether Bricks", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5602, - "minStateId": 5602, - "maxStateId": 5602, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 321 - ], - "boundingBox": "block" - }, - { - "id": 281, - "name": "nether_brick_fence", - "displayName": "Nether Brick Fence", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5634, - "minStateId": 5603, - "maxStateId": 5634, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 324 - ], - "boundingBox": "block" - }, - { - "id": 282, - "name": "nether_brick_stairs", - "displayName": "Nether Brick Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5646, - "minStateId": 5635, - "maxStateId": 5714, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 325 - ], - "boundingBox": "block" - }, - { - "id": 283, - "name": "nether_wart", - "displayName": "Nether Wart", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5715, - "minStateId": 5715, - "maxStateId": 5718, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 4, - "values": [ - "0", - "1", - "2", - "3" - ] - } - ], - "drops": [ - 901 - ], - "boundingBox": "empty" - }, - { - "id": 284, - "name": "enchanting_table", - "displayName": "Enchanting Table", - "hardness": 5.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 7, - "filterLight": 0, - "defaultState": 5719, - "minStateId": 5719, - "maxStateId": 5719, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 330 - ], - "boundingBox": "block" - }, - { - "id": 285, - "name": "brewing_stand", - "displayName": "Brewing Stand", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 1, - "filterLight": 0, - "defaultState": 5727, - "minStateId": 5720, - "maxStateId": 5727, - "states": [ - { - "name": "has_bottle_0", - "type": "bool", - "num_values": 2 - }, - { - "name": "has_bottle_1", - "type": "bool", - "num_values": 2 - }, - { - "name": "has_bottle_2", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 908 - ], - "boundingBox": "block" - }, - { - "id": 286, - "name": "cauldron", - "displayName": "Cauldron", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5728, - "minStateId": 5728, - "maxStateId": 5728, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 909 - ], - "boundingBox": "block" - }, - { - "id": 287, - "name": "water_cauldron", - "displayName": "Water Cauldron", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5729, - "minStateId": 5729, - "maxStateId": 5731, - "states": [ - { - "name": "level", - "type": "int", - "num_values": 3, - "values": [ - "1", - "2", - "3" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 909 - ], - "boundingBox": "block" - }, - { - "id": 288, - "name": "lava_cauldron", - "displayName": "Lava Cauldron", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 15, - "filterLight": 0, - "defaultState": 5732, - "minStateId": 5732, - "maxStateId": 5732, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 909 - ], - "boundingBox": "block" - }, - { - "id": 289, - "name": "powder_snow_cauldron", - "displayName": "Powder Snow Cauldron", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5733, - "minStateId": 5733, - "maxStateId": 5735, - "states": [ - { - "name": "level", - "type": "int", - "num_values": 3, - "values": [ - "1", - "2", - "3" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 909 - ], - "boundingBox": "block" - }, - { - "id": 290, - "name": "end_portal", - "displayName": "End Portal", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 15, - "filterLight": 0, - "defaultState": 5736, - "minStateId": 5736, - "maxStateId": 5736, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 291, - "name": "end_portal_frame", - "displayName": "End Portal Frame", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 1, - "filterLight": 0, - "defaultState": 5741, - "minStateId": 5737, - "maxStateId": 5744, - "states": [ - { - "name": "eye", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 292, - "name": "end_stone", - "displayName": "End Stone", - "hardness": 3.0, - "resistance": 9.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5745, - "minStateId": 5745, - "maxStateId": 5745, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 332 - ], - "boundingBox": "block" - }, - { - "id": 293, - "name": "dragon_egg", - "displayName": "Dragon Egg", - "hardness": 3.0, - "resistance": 9.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 1, - "filterLight": 0, - "defaultState": 5746, - "minStateId": 5746, - "maxStateId": 5746, - "states": [], - "drops": [ - 334 - ], - "boundingBox": "block" - }, - { - "id": 294, - "name": "redstone_lamp", - "displayName": "Redstone Lamp", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5748, - "minStateId": 5747, - "maxStateId": 5748, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 630 - ], - "boundingBox": "block" - }, - { - "id": 295, - "name": "cocoa", - "displayName": "Cocoa", - "hardness": 0.2, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5749, - "minStateId": 5749, - "maxStateId": 5760, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 3, - "values": [ - "0", - "1", - "2" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 848 - ], - "boundingBox": "block" - }, - { - "id": 296, - "name": "sandstone_stairs", - "displayName": "Sandstone Stairs", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5772, - "minStateId": 5761, - "maxStateId": 5840, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 335 - ], - "boundingBox": "block" - }, - { - "id": 297, - "name": "emerald_ore", - "displayName": "Emerald Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5841, - "minStateId": 5841, - "maxStateId": 5841, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 723 - ], - "boundingBox": "block" - }, - { - "id": 298, - "name": "deepslate_emerald_ore", - "displayName": "Deepslate Emerald Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5842, - "minStateId": 5842, - "maxStateId": 5842, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 723 - ], - "boundingBox": "block" - }, - { - "id": 299, - "name": "ender_chest", - "displayName": "Ender Chest", - "hardness": 22.5, - "resistance": 600.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 7, - "filterLight": 0, - "defaultState": 5844, - "minStateId": 5843, - "maxStateId": 5850, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 247 - ], - "boundingBox": "block" - }, - { - "id": 300, - "name": "tripwire_hook", - "displayName": "Tripwire Hook", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5860, - "minStateId": 5851, - "maxStateId": 5866, - "states": [ - { - "name": "attached", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 627 - ], - "boundingBox": "empty" - }, - { - "id": 301, - "name": "tripwire", - "displayName": "Tripwire", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 5994, - "minStateId": 5867, - "maxStateId": 5994, - "states": [ - { - "name": "attached", - "type": "bool", - "num_values": 2 - }, - { - "name": "disarmed", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 768 - ], - "boundingBox": "empty" - }, - { - "id": 302, - "name": "emerald_block", - "displayName": "Block of Emerald", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 5995, - "minStateId": 5995, - "maxStateId": 5995, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 337 - ], - "boundingBox": "block" - }, - { - "id": 303, - "name": "spruce_stairs", - "displayName": "Spruce Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6007, - "minStateId": 5996, - "maxStateId": 6075, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 339 - ], - "boundingBox": "block" - }, - { - "id": 304, - "name": "birch_stairs", - "displayName": "Birch Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6087, - "minStateId": 6076, - "maxStateId": 6155, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 340 - ], - "boundingBox": "block" - }, - { - "id": 305, - "name": "jungle_stairs", - "displayName": "Jungle Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6167, - "minStateId": 6156, - "maxStateId": 6235, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 341 - ], - "boundingBox": "block" - }, - { - "id": 306, - "name": "command_block", - "displayName": "Command Block", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 6242, - "minStateId": 6236, - "maxStateId": 6247, - "states": [ - { - "name": "conditional", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "harvestTools": {}, - "drops": [], - "boundingBox": "block" - }, - { - "id": 307, - "name": "beacon", - "displayName": "Beacon", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 15, - "filterLight": 1, - "defaultState": 6248, - "minStateId": 6248, - "maxStateId": 6248, - "states": [], - "drops": [ - 348 - ], - "boundingBox": "block" - }, - { - "id": 308, - "name": "cobblestone_wall", - "displayName": "Cobblestone Wall", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6252, - "minStateId": 6249, - "maxStateId": 6572, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 349 - ], - "boundingBox": "block" - }, - { - "id": 309, - "name": "mossy_cobblestone_wall", - "displayName": "Mossy Cobblestone Wall", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6576, - "minStateId": 6573, - "maxStateId": 6896, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 350 - ], - "boundingBox": "block" - }, - { - "id": 310, - "name": "flower_pot", - "displayName": "Flower Pot", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6897, - "minStateId": 6897, - "maxStateId": 6897, - "states": [], - "drops": [ - 989 - ], - "boundingBox": "block" - }, - { - "id": 311, - "name": "potted_oak_sapling", - "displayName": "Potted Oak Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6898, - "minStateId": 6898, - "maxStateId": 6898, - "states": [], - "drops": [ - 989, - 32 - ], - "boundingBox": "block" - }, - { - "id": 312, - "name": "potted_spruce_sapling", - "displayName": "Potted Spruce Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6899, - "minStateId": 6899, - "maxStateId": 6899, - "states": [], - "drops": [ - 989, - 33 - ], - "boundingBox": "block" - }, - { - "id": 313, - "name": "potted_birch_sapling", - "displayName": "Potted Birch Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6900, - "minStateId": 6900, - "maxStateId": 6900, - "states": [], - "drops": [ - 989, - 34 - ], - "boundingBox": "block" - }, - { - "id": 314, - "name": "potted_jungle_sapling", - "displayName": "Potted Jungle Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6901, - "minStateId": 6901, - "maxStateId": 6901, - "states": [], - "drops": [ - 989, - 35 - ], - "boundingBox": "block" - }, - { - "id": 315, - "name": "potted_acacia_sapling", - "displayName": "Potted Acacia Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6902, - "minStateId": 6902, - "maxStateId": 6902, - "states": [], - "drops": [ - 989, - 36 - ], - "boundingBox": "block" - }, - { - "id": 316, - "name": "potted_dark_oak_sapling", - "displayName": "Potted Dark Oak Sapling", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6903, - "minStateId": 6903, - "maxStateId": 6903, - "states": [], - "drops": [ - 989, - 37 - ], - "boundingBox": "block" - }, - { - "id": 317, - "name": "potted_mangrove_propagule", - "displayName": "Potted Mangrove Propagule", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6904, - "minStateId": 6904, - "maxStateId": 6904, - "states": [], - "drops": [ - 989, - 38 - ], - "boundingBox": "block" - }, - { - "id": 318, - "name": "potted_fern", - "displayName": "Potted Fern", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6905, - "minStateId": 6905, - "maxStateId": 6905, - "states": [], - "drops": [ - 989, - 161 - ], - "boundingBox": "block" - }, - { - "id": 319, - "name": "potted_dandelion", - "displayName": "Potted Dandelion", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6906, - "minStateId": 6906, - "maxStateId": 6906, - "states": [], - "drops": [ - 989, - 183 - ], - "boundingBox": "block" - }, - { - "id": 320, - "name": "potted_poppy", - "displayName": "Potted Poppy", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6907, - "minStateId": 6907, - "maxStateId": 6907, - "states": [], - "drops": [ - 989, - 184 - ], - "boundingBox": "block" - }, - { - "id": 321, - "name": "potted_blue_orchid", - "displayName": "Potted Blue Orchid", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6908, - "minStateId": 6908, - "maxStateId": 6908, - "states": [], - "drops": [ - 989, - 185 - ], - "boundingBox": "block" - }, - { - "id": 322, - "name": "potted_allium", - "displayName": "Potted Allium", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6909, - "minStateId": 6909, - "maxStateId": 6909, - "states": [], - "drops": [ - 989, - 186 - ], - "boundingBox": "block" - }, - { - "id": 323, - "name": "potted_azure_bluet", - "displayName": "Potted Azure Bluet", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6910, - "minStateId": 6910, - "maxStateId": 6910, - "states": [], - "drops": [ - 989, - 187 - ], - "boundingBox": "block" - }, - { - "id": 324, - "name": "potted_red_tulip", - "displayName": "Potted Red Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6911, - "minStateId": 6911, - "maxStateId": 6911, - "states": [], - "drops": [ - 989, - 188 - ], - "boundingBox": "block" - }, - { - "id": 325, - "name": "potted_orange_tulip", - "displayName": "Potted Orange Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6912, - "minStateId": 6912, - "maxStateId": 6912, - "states": [], - "drops": [ - 989, - 189 - ], - "boundingBox": "block" - }, - { - "id": 326, - "name": "potted_white_tulip", - "displayName": "Potted White Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6913, - "minStateId": 6913, - "maxStateId": 6913, - "states": [], - "drops": [ - 989, - 190 - ], - "boundingBox": "block" - }, - { - "id": 327, - "name": "potted_pink_tulip", - "displayName": "Potted Pink Tulip", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6914, - "minStateId": 6914, - "maxStateId": 6914, - "states": [], - "drops": [ - 989, - 191 - ], - "boundingBox": "block" - }, - { - "id": 328, - "name": "potted_oxeye_daisy", - "displayName": "Potted Oxeye Daisy", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6915, - "minStateId": 6915, - "maxStateId": 6915, - "states": [], - "drops": [ - 989, - 192 - ], - "boundingBox": "block" - }, - { - "id": 329, - "name": "potted_cornflower", - "displayName": "Potted Cornflower", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6916, - "minStateId": 6916, - "maxStateId": 6916, - "states": [], - "drops": [ - 989, - 193 - ], - "boundingBox": "block" - }, - { - "id": 330, - "name": "potted_lily_of_the_valley", - "displayName": "Potted Lily of the Valley", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6917, - "minStateId": 6917, - "maxStateId": 6917, - "states": [], - "drops": [ - 989, - 194 - ], - "boundingBox": "block" - }, - { - "id": 331, - "name": "potted_wither_rose", - "displayName": "Potted Wither Rose", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6918, - "minStateId": 6918, - "maxStateId": 6918, - "states": [], - "drops": [ - 989, - 195 - ], - "boundingBox": "block" - }, - { - "id": 332, - "name": "potted_red_mushroom", - "displayName": "Potted Red Mushroom", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6919, - "minStateId": 6919, - "maxStateId": 6919, - "states": [], - "drops": [ - 989, - 198 - ], - "boundingBox": "block" - }, - { - "id": 333, - "name": "potted_brown_mushroom", - "displayName": "Potted Brown Mushroom", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6920, - "minStateId": 6920, - "maxStateId": 6920, - "states": [], - "drops": [ - 989, - 197 - ], - "boundingBox": "block" - }, - { - "id": 334, - "name": "potted_dead_bush", - "displayName": "Potted Dead Bush", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6921, - "minStateId": 6921, - "maxStateId": 6921, - "states": [], - "drops": [ - 989, - 164 - ], - "boundingBox": "block" - }, - { - "id": 335, - "name": "potted_cactus", - "displayName": "Potted Cactus", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6922, - "minStateId": 6922, - "maxStateId": 6922, - "states": [], - "drops": [ - 989, - 265 - ], - "boundingBox": "block" - }, - { - "id": 336, - "name": "carrots", - "displayName": "Carrots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6923, - "minStateId": 6923, - "maxStateId": 6930, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "drops": [ - 990 - ], - "boundingBox": "empty" - }, - { - "id": 337, - "name": "potatoes", - "displayName": "Potatoes", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6931, - "minStateId": 6931, - "maxStateId": 6938, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "drops": [ - 991 - ], - "boundingBox": "empty" - }, - { - "id": 338, - "name": "oak_button", - "displayName": "Oak Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6948, - "minStateId": 6939, - "maxStateId": 6962, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 634 - ], - "boundingBox": "empty" - }, - { - "id": 339, - "name": "spruce_button", - "displayName": "Spruce Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6972, - "minStateId": 6963, - "maxStateId": 6986, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 635 - ], - "boundingBox": "empty" - }, - { - "id": 340, - "name": "birch_button", - "displayName": "Birch Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 6996, - "minStateId": 6987, - "maxStateId": 7010, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 636 - ], - "boundingBox": "empty" - }, - { - "id": 341, - "name": "jungle_button", - "displayName": "Jungle Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7020, - "minStateId": 7011, - "maxStateId": 7034, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 637 - ], - "boundingBox": "empty" - }, - { - "id": 342, - "name": "acacia_button", - "displayName": "Acacia Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7044, - "minStateId": 7035, - "maxStateId": 7058, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 638 - ], - "boundingBox": "empty" - }, - { - "id": 343, - "name": "dark_oak_button", - "displayName": "Dark Oak Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7068, - "minStateId": 7059, - "maxStateId": 7082, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 639 - ], - "boundingBox": "empty" - }, - { - "id": 344, - "name": "mangrove_button", - "displayName": "Mangrove Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7092, - "minStateId": 7083, - "maxStateId": 7106, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 640 - ], - "boundingBox": "empty" - }, - { - "id": 345, - "name": "skeleton_skull", - "displayName": "Skeleton Skull", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7107, - "minStateId": 7107, - "maxStateId": 7122, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 996 - ], - "boundingBox": "block" - }, - { - "id": 346, - "name": "skeleton_wall_skull", - "displayName": "Skeleton Skull", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7123, - "minStateId": 7123, - "maxStateId": 7126, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 996 - ], - "boundingBox": "block" - }, - { - "id": 347, - "name": "wither_skeleton_skull", - "displayName": "Wither Skeleton Skull", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7127, - "minStateId": 7127, - "maxStateId": 7142, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 997 - ], - "boundingBox": "block" - }, - { - "id": 348, - "name": "wither_skeleton_wall_skull", - "displayName": "Wither Skeleton Skull", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7143, - "minStateId": 7143, - "maxStateId": 7146, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 997 - ], - "boundingBox": "block" - }, - { - "id": 349, - "name": "zombie_head", - "displayName": "Zombie Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7147, - "minStateId": 7147, - "maxStateId": 7162, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 999 - ], - "boundingBox": "block" - }, - { - "id": 350, - "name": "zombie_wall_head", - "displayName": "Zombie Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7163, - "minStateId": 7163, - "maxStateId": 7166, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 999 - ], - "boundingBox": "block" - }, - { - "id": 351, - "name": "player_head", - "displayName": "Player Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7167, - "minStateId": 7167, - "maxStateId": 7182, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 998 - ], - "boundingBox": "block" - }, - { - "id": 352, - "name": "player_wall_head", - "displayName": "Player Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7183, - "minStateId": 7183, - "maxStateId": 7186, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 998 - ], - "boundingBox": "block" - }, - { - "id": 353, - "name": "creeper_head", - "displayName": "Creeper Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7187, - "minStateId": 7187, - "maxStateId": 7202, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1000 - ], - "boundingBox": "block" - }, - { - "id": 354, - "name": "creeper_wall_head", - "displayName": "Creeper Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7203, - "minStateId": 7203, - "maxStateId": 7206, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1000 - ], - "boundingBox": "block" - }, - { - "id": 355, - "name": "dragon_head", - "displayName": "Dragon Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7207, - "minStateId": 7207, - "maxStateId": 7222, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1001 - ], - "boundingBox": "block" - }, - { - "id": 356, - "name": "dragon_wall_head", - "displayName": "Dragon Head", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7223, - "minStateId": 7223, - "maxStateId": 7226, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1001 - ], - "boundingBox": "block" - }, - { - "id": 357, - "name": "anvil", - "displayName": "Anvil", - "hardness": 5.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7227, - "minStateId": 7227, - "maxStateId": 7230, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 371 - ], - "boundingBox": "block" - }, - { - "id": 358, - "name": "chipped_anvil", - "displayName": "Chipped Anvil", - "hardness": 5.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7231, - "minStateId": 7231, - "maxStateId": 7234, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 372 - ], - "boundingBox": "block" - }, - { - "id": 359, - "name": "damaged_anvil", - "displayName": "Damaged Anvil", - "hardness": 5.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7235, - "minStateId": 7235, - "maxStateId": 7238, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 373 - ], - "boundingBox": "block" - }, - { - "id": 360, - "name": "trapped_chest", - "displayName": "Trapped Chest", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7240, - "minStateId": 7239, - "maxStateId": 7262, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "single", - "left", - "right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 628 - ], - "boundingBox": "block" - }, - { - "id": 361, - "name": "light_weighted_pressure_plate", - "displayName": "Light Weighted Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7263, - "minStateId": 7263, - "maxStateId": 7278, - "states": [ - { - "name": "power", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 645 - ], - "boundingBox": "empty" - }, - { - "id": 362, - "name": "heavy_weighted_pressure_plate", - "displayName": "Heavy Weighted Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7279, - "minStateId": 7279, - "maxStateId": 7294, - "states": [ - { - "name": "power", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 646 - ], - "boundingBox": "empty" - }, - { - "id": 363, - "name": "comparator", - "displayName": "Redstone Comparator", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7296, - "minStateId": 7295, - "maxStateId": 7310, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "mode", - "type": "enum", - "num_values": 2, - "values": [ - "compare", - "subtract" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 612 - ], - "boundingBox": "block" - }, - { - "id": 364, - "name": "daylight_detector", - "displayName": "Daylight Detector", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7327, - "minStateId": 7311, - "maxStateId": 7342, - "states": [ - { - "name": "inverted", - "type": "bool", - "num_values": 2 - }, - { - "name": "power", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 625 - ], - "boundingBox": "block" - }, - { - "id": 365, - "name": "redstone_block", - "displayName": "Block of Redstone", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7343, - "minStateId": 7343, - "maxStateId": 7343, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 610 - ], - "boundingBox": "block" - }, - { - "id": 366, - "name": "nether_quartz_ore", - "displayName": "Nether Quartz Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7344, - "minStateId": 7344, - "maxStateId": 7344, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 725 - ], - "boundingBox": "block" - }, - { - "id": 367, - "name": "hopper", - "displayName": "Hopper", - "hardness": 3.0, - "resistance": 4.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7345, - "minStateId": 7345, - "maxStateId": 7354, - "states": [ - { - "name": "enabled", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 5, - "values": [ - "down", - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 618 - ], - "boundingBox": "block" - }, - { - "id": 368, - "name": "quartz_block", - "displayName": "Block of Quartz", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7355, - "minStateId": 7355, - "maxStateId": 7355, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 375 - ], - "boundingBox": "block" - }, - { - "id": 369, - "name": "chiseled_quartz_block", - "displayName": "Chiseled Quartz Block", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7356, - "minStateId": 7356, - "maxStateId": 7356, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 374 - ], - "boundingBox": "block" - }, - { - "id": 370, - "name": "quartz_pillar", - "displayName": "Quartz Pillar", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7358, - "minStateId": 7357, - "maxStateId": 7359, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 377 - ], - "boundingBox": "block" - }, - { - "id": 371, - "name": "quartz_stairs", - "displayName": "Quartz Stairs", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7371, - "minStateId": 7360, - "maxStateId": 7439, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 378 - ], - "boundingBox": "block" - }, - { - "id": 372, - "name": "activator_rail", - "displayName": "Activator Rail", - "hardness": 0.7, - "resistance": 0.7, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7453, - "minStateId": 7440, - "maxStateId": 7463, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "shape", - "type": "enum", - "num_values": 6, - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 688 - ], - "boundingBox": "empty" - }, - { - "id": 373, - "name": "dropper", - "displayName": "Dropper", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7465, - "minStateId": 7464, - "maxStateId": 7475, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "triggered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 620 - ], - "boundingBox": "block" - }, - { - "id": 374, - "name": "white_terracotta", - "displayName": "White Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7476, - "minStateId": 7476, - "maxStateId": 7476, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 379 - ], - "boundingBox": "block" - }, - { - "id": 375, - "name": "orange_terracotta", - "displayName": "Orange Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7477, - "minStateId": 7477, - "maxStateId": 7477, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 380 - ], - "boundingBox": "block" - }, - { - "id": 376, - "name": "magenta_terracotta", - "displayName": "Magenta Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7478, - "minStateId": 7478, - "maxStateId": 7478, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 381 - ], - "boundingBox": "block" - }, - { - "id": 377, - "name": "light_blue_terracotta", - "displayName": "Light Blue Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7479, - "minStateId": 7479, - "maxStateId": 7479, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 382 - ], - "boundingBox": "block" - }, - { - "id": 378, - "name": "yellow_terracotta", - "displayName": "Yellow Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7480, - "minStateId": 7480, - "maxStateId": 7480, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 383 - ], - "boundingBox": "block" - }, - { - "id": 379, - "name": "lime_terracotta", - "displayName": "Lime Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7481, - "minStateId": 7481, - "maxStateId": 7481, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 384 - ], - "boundingBox": "block" - }, - { - "id": 380, - "name": "pink_terracotta", - "displayName": "Pink Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7482, - "minStateId": 7482, - "maxStateId": 7482, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 385 - ], - "boundingBox": "block" - }, - { - "id": 381, - "name": "gray_terracotta", - "displayName": "Gray Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7483, - "minStateId": 7483, - "maxStateId": 7483, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 386 - ], - "boundingBox": "block" - }, - { - "id": 382, - "name": "light_gray_terracotta", - "displayName": "Light Gray Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7484, - "minStateId": 7484, - "maxStateId": 7484, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 387 - ], - "boundingBox": "block" - }, - { - "id": 383, - "name": "cyan_terracotta", - "displayName": "Cyan Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7485, - "minStateId": 7485, - "maxStateId": 7485, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 388 - ], - "boundingBox": "block" - }, - { - "id": 384, - "name": "purple_terracotta", - "displayName": "Purple Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7486, - "minStateId": 7486, - "maxStateId": 7486, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 389 - ], - "boundingBox": "block" - }, - { - "id": 385, - "name": "blue_terracotta", - "displayName": "Blue Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7487, - "minStateId": 7487, - "maxStateId": 7487, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 390 - ], - "boundingBox": "block" - }, - { - "id": 386, - "name": "brown_terracotta", - "displayName": "Brown Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7488, - "minStateId": 7488, - "maxStateId": 7488, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 391 - ], - "boundingBox": "block" - }, - { - "id": 387, - "name": "green_terracotta", - "displayName": "Green Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7489, - "minStateId": 7489, - "maxStateId": 7489, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 392 - ], - "boundingBox": "block" - }, - { - "id": 388, - "name": "red_terracotta", - "displayName": "Red Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7490, - "minStateId": 7490, - "maxStateId": 7490, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 393 - ], - "boundingBox": "block" - }, - { - "id": 389, - "name": "black_terracotta", - "displayName": "Black Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 7491, - "minStateId": 7491, - "maxStateId": 7491, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 394 - ], - "boundingBox": "block" - }, - { - "id": 390, - "name": "white_stained_glass_pane", - "displayName": "White Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7523, - "minStateId": 7492, - "maxStateId": 7523, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 391, - "name": "orange_stained_glass_pane", - "displayName": "Orange Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7555, - "minStateId": 7524, - "maxStateId": 7555, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 392, - "name": "magenta_stained_glass_pane", - "displayName": "Magenta Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7587, - "minStateId": 7556, - "maxStateId": 7587, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 393, - "name": "light_blue_stained_glass_pane", - "displayName": "Light Blue Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7619, - "minStateId": 7588, - "maxStateId": 7619, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 394, - "name": "yellow_stained_glass_pane", - "displayName": "Yellow Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7651, - "minStateId": 7620, - "maxStateId": 7651, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 395, - "name": "lime_stained_glass_pane", - "displayName": "Lime Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7683, - "minStateId": 7652, - "maxStateId": 7683, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 396, - "name": "pink_stained_glass_pane", - "displayName": "Pink Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7715, - "minStateId": 7684, - "maxStateId": 7715, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 397, - "name": "gray_stained_glass_pane", - "displayName": "Gray Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7747, - "minStateId": 7716, - "maxStateId": 7747, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 398, - "name": "light_gray_stained_glass_pane", - "displayName": "Light Gray Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7779, - "minStateId": 7748, - "maxStateId": 7779, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 399, - "name": "cyan_stained_glass_pane", - "displayName": "Cyan Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7811, - "minStateId": 7780, - "maxStateId": 7811, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 400, - "name": "purple_stained_glass_pane", - "displayName": "Purple Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7843, - "minStateId": 7812, - "maxStateId": 7843, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 401, - "name": "blue_stained_glass_pane", - "displayName": "Blue Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7875, - "minStateId": 7844, - "maxStateId": 7875, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 402, - "name": "brown_stained_glass_pane", - "displayName": "Brown Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7907, - "minStateId": 7876, - "maxStateId": 7907, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 403, - "name": "green_stained_glass_pane", - "displayName": "Green Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7939, - "minStateId": 7908, - "maxStateId": 7939, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 404, - "name": "red_stained_glass_pane", - "displayName": "Red Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 7971, - "minStateId": 7940, - "maxStateId": 7971, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 405, - "name": "black_stained_glass_pane", - "displayName": "Black Stained Glass Pane", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8003, - "minStateId": 7972, - "maxStateId": 8003, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 406, - "name": "acacia_stairs", - "displayName": "Acacia Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8015, - "minStateId": 8004, - "maxStateId": 8083, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 342 - ], - "boundingBox": "block" - }, - { - "id": 407, - "name": "dark_oak_stairs", - "displayName": "Dark Oak Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8095, - "minStateId": 8084, - "maxStateId": 8163, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 343 - ], - "boundingBox": "block" - }, - { - "id": 408, - "name": "mangrove_stairs", - "displayName": "Mangrove Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8175, - "minStateId": 8164, - "maxStateId": 8243, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 344 - ], - "boundingBox": "block" - }, - { - "id": 409, - "name": "slime_block", - "displayName": "Slime Block", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 8244, - "minStateId": 8244, - "maxStateId": 8244, - "states": [], - "drops": [ - 615 - ], - "boundingBox": "block" - }, - { - "id": 410, - "name": "barrier", - "displayName": "Barrier", - "hardness": -1.0, - "resistance": 3600000.8, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8245, - "minStateId": 8245, - "maxStateId": 8245, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 411, - "name": "light", - "displayName": "Light", - "hardness": -1.0, - "resistance": 3600000.8, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 15, - "filterLight": 0, - "defaultState": 8277, - "minStateId": 8246, - "maxStateId": 8277, - "states": [ - { - "name": "level", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 412, - "name": "iron_trapdoor", - "displayName": "Iron Trapdoor", - "hardness": 5.0, - "resistance": 5.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8293, - "minStateId": 8278, - "maxStateId": 8341, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 666 - ], - "boundingBox": "block" - }, - { - "id": 413, - "name": "prismarine", - "displayName": "Prismarine", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8342, - "minStateId": 8342, - "maxStateId": 8342, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 455 - ], - "boundingBox": "block" - }, - { - "id": 414, - "name": "prismarine_bricks", - "displayName": "Prismarine Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8343, - "minStateId": 8343, - "maxStateId": 8343, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 456 - ], - "boundingBox": "block" - }, - { - "id": 415, - "name": "dark_prismarine", - "displayName": "Dark Prismarine", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8344, - "minStateId": 8344, - "maxStateId": 8344, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 457 - ], - "boundingBox": "block" - }, - { - "id": 416, - "name": "prismarine_stairs", - "displayName": "Prismarine Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8356, - "minStateId": 8345, - "maxStateId": 8424, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 458 - ], - "boundingBox": "block" - }, - { - "id": 417, - "name": "prismarine_brick_stairs", - "displayName": "Prismarine Brick Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8436, - "minStateId": 8425, - "maxStateId": 8504, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 459 - ], - "boundingBox": "block" - }, - { - "id": 418, - "name": "dark_prismarine_stairs", - "displayName": "Dark Prismarine Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8516, - "minStateId": 8505, - "maxStateId": 8584, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 460 - ], - "boundingBox": "block" - }, - { - "id": 419, - "name": "prismarine_slab", - "displayName": "Prismarine Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8588, - "minStateId": 8585, - "maxStateId": 8590, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 237 - ], - "boundingBox": "block" - }, - { - "id": 420, - "name": "prismarine_brick_slab", - "displayName": "Prismarine Brick Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8594, - "minStateId": 8591, - "maxStateId": 8596, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 238 - ], - "boundingBox": "block" - }, - { - "id": 421, - "name": "dark_prismarine_slab", - "displayName": "Dark Prismarine Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8600, - "minStateId": 8597, - "maxStateId": 8602, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 239 - ], - "boundingBox": "block" - }, - { - "id": 422, - "name": "sea_lantern", - "displayName": "Sea Lantern", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 8603, - "minStateId": 8603, - "maxStateId": 8603, - "states": [], - "drops": [ - 1009 - ], - "boundingBox": "block" - }, - { - "id": 423, - "name": "hay_block", - "displayName": "Hay Bale", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8605, - "minStateId": 8604, - "maxStateId": 8606, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 397 - ], - "boundingBox": "block" - }, - { - "id": 424, - "name": "white_carpet", - "displayName": "White Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8607, - "minStateId": 8607, - "maxStateId": 8607, - "states": [], - "drops": [ - 398 - ], - "boundingBox": "block" - }, - { - "id": 425, - "name": "orange_carpet", - "displayName": "Orange Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8608, - "minStateId": 8608, - "maxStateId": 8608, - "states": [], - "drops": [ - 399 - ], - "boundingBox": "block" - }, - { - "id": 426, - "name": "magenta_carpet", - "displayName": "Magenta Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8609, - "minStateId": 8609, - "maxStateId": 8609, - "states": [], - "drops": [ - 400 - ], - "boundingBox": "block" - }, - { - "id": 427, - "name": "light_blue_carpet", - "displayName": "Light Blue Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8610, - "minStateId": 8610, - "maxStateId": 8610, - "states": [], - "drops": [ - 401 - ], - "boundingBox": "block" - }, - { - "id": 428, - "name": "yellow_carpet", - "displayName": "Yellow Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8611, - "minStateId": 8611, - "maxStateId": 8611, - "states": [], - "drops": [ - 402 - ], - "boundingBox": "block" - }, - { - "id": 429, - "name": "lime_carpet", - "displayName": "Lime Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8612, - "minStateId": 8612, - "maxStateId": 8612, - "states": [], - "drops": [ - 403 - ], - "boundingBox": "block" - }, - { - "id": 430, - "name": "pink_carpet", - "displayName": "Pink Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8613, - "minStateId": 8613, - "maxStateId": 8613, - "states": [], - "drops": [ - 404 - ], - "boundingBox": "block" - }, - { - "id": 431, - "name": "gray_carpet", - "displayName": "Gray Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8614, - "minStateId": 8614, - "maxStateId": 8614, - "states": [], - "drops": [ - 405 - ], - "boundingBox": "block" - }, - { - "id": 432, - "name": "light_gray_carpet", - "displayName": "Light Gray Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8615, - "minStateId": 8615, - "maxStateId": 8615, - "states": [], - "drops": [ - 406 - ], - "boundingBox": "block" - }, - { - "id": 433, - "name": "cyan_carpet", - "displayName": "Cyan Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8616, - "minStateId": 8616, - "maxStateId": 8616, - "states": [], - "drops": [ - 407 - ], - "boundingBox": "block" - }, - { - "id": 434, - "name": "purple_carpet", - "displayName": "Purple Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8617, - "minStateId": 8617, - "maxStateId": 8617, - "states": [], - "drops": [ - 408 - ], - "boundingBox": "block" - }, - { - "id": 435, - "name": "blue_carpet", - "displayName": "Blue Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8618, - "minStateId": 8618, - "maxStateId": 8618, - "states": [], - "drops": [ - 409 - ], - "boundingBox": "block" - }, - { - "id": 436, - "name": "brown_carpet", - "displayName": "Brown Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8619, - "minStateId": 8619, - "maxStateId": 8619, - "states": [], - "drops": [ - 410 - ], - "boundingBox": "block" - }, - { - "id": 437, - "name": "green_carpet", - "displayName": "Green Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8620, - "minStateId": 8620, - "maxStateId": 8620, - "states": [], - "drops": [ - 411 - ], - "boundingBox": "block" - }, - { - "id": 438, - "name": "red_carpet", - "displayName": "Red Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8621, - "minStateId": 8621, - "maxStateId": 8621, - "states": [], - "drops": [ - 412 - ], - "boundingBox": "block" - }, - { - "id": 439, - "name": "black_carpet", - "displayName": "Black Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8622, - "minStateId": 8622, - "maxStateId": 8622, - "states": [], - "drops": [ - 413 - ], - "boundingBox": "block" - }, - { - "id": 440, - "name": "terracotta", - "displayName": "Terracotta", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8623, - "minStateId": 8623, - "maxStateId": 8623, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 414 - ], - "boundingBox": "block" - }, - { - "id": 441, - "name": "coal_block", - "displayName": "Block of Coal", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8624, - "minStateId": 8624, - "maxStateId": 8624, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 62 - ], - "boundingBox": "block" - }, - { - "id": 442, - "name": "packed_ice", - "displayName": "Packed Ice", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8625, - "minStateId": 8625, - "maxStateId": 8625, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 443, - "name": "sunflower", - "displayName": "Sunflower", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8627, - "minStateId": 8626, - "maxStateId": 8627, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [ - 417 - ], - "boundingBox": "empty" - }, - { - "id": 444, - "name": "lilac", - "displayName": "Lilac", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8629, - "minStateId": 8628, - "maxStateId": 8629, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [ - 418 - ], - "boundingBox": "empty" - }, - { - "id": 445, - "name": "rose_bush", - "displayName": "Rose Bush", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8631, - "minStateId": 8630, - "maxStateId": 8631, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [ - 419 - ], - "boundingBox": "empty" - }, - { - "id": 446, - "name": "peony", - "displayName": "Peony", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8633, - "minStateId": 8632, - "maxStateId": 8633, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [ - 420 - ], - "boundingBox": "empty" - }, - { - "id": 447, - "name": "tall_grass", - "displayName": "Tall Grass", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8635, - "minStateId": 8634, - "maxStateId": 8635, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 448, - "name": "large_fern", - "displayName": "Large Fern", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8637, - "minStateId": 8636, - "maxStateId": 8637, - "states": [ - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 449, - "name": "white_banner", - "displayName": "White Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8638, - "minStateId": 8638, - "maxStateId": 8653, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1025 - ], - "boundingBox": "empty" - }, - { - "id": 450, - "name": "orange_banner", - "displayName": "Orange Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8654, - "minStateId": 8654, - "maxStateId": 8669, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1026 - ], - "boundingBox": "empty" - }, - { - "id": 451, - "name": "magenta_banner", - "displayName": "Magenta Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8670, - "minStateId": 8670, - "maxStateId": 8685, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1027 - ], - "boundingBox": "empty" - }, - { - "id": 452, - "name": "light_blue_banner", - "displayName": "Light Blue Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8686, - "minStateId": 8686, - "maxStateId": 8701, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1028 - ], - "boundingBox": "empty" - }, - { - "id": 453, - "name": "yellow_banner", - "displayName": "Yellow Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8702, - "minStateId": 8702, - "maxStateId": 8717, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1029 - ], - "boundingBox": "empty" - }, - { - "id": 454, - "name": "lime_banner", - "displayName": "Lime Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8718, - "minStateId": 8718, - "maxStateId": 8733, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1030 - ], - "boundingBox": "empty" - }, - { - "id": 455, - "name": "pink_banner", - "displayName": "Pink Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8734, - "minStateId": 8734, - "maxStateId": 8749, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1031 - ], - "boundingBox": "empty" - }, - { - "id": 456, - "name": "gray_banner", - "displayName": "Gray Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8750, - "minStateId": 8750, - "maxStateId": 8765, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1032 - ], - "boundingBox": "empty" - }, - { - "id": 457, - "name": "light_gray_banner", - "displayName": "Light Gray Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8766, - "minStateId": 8766, - "maxStateId": 8781, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1033 - ], - "boundingBox": "empty" - }, - { - "id": 458, - "name": "cyan_banner", - "displayName": "Cyan Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8782, - "minStateId": 8782, - "maxStateId": 8797, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1034 - ], - "boundingBox": "empty" - }, - { - "id": 459, - "name": "purple_banner", - "displayName": "Purple Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8798, - "minStateId": 8798, - "maxStateId": 8813, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1035 - ], - "boundingBox": "empty" - }, - { - "id": 460, - "name": "blue_banner", - "displayName": "Blue Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8814, - "minStateId": 8814, - "maxStateId": 8829, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1036 - ], - "boundingBox": "empty" - }, - { - "id": 461, - "name": "brown_banner", - "displayName": "Brown Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8830, - "minStateId": 8830, - "maxStateId": 8845, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1037 - ], - "boundingBox": "empty" - }, - { - "id": 462, - "name": "green_banner", - "displayName": "Green Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8846, - "minStateId": 8846, - "maxStateId": 8861, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1038 - ], - "boundingBox": "empty" - }, - { - "id": 463, - "name": "red_banner", - "displayName": "Red Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8862, - "minStateId": 8862, - "maxStateId": 8877, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1039 - ], - "boundingBox": "empty" - }, - { - "id": 464, - "name": "black_banner", - "displayName": "Black Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8878, - "minStateId": 8878, - "maxStateId": 8893, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 1040 - ], - "boundingBox": "empty" - }, - { - "id": 465, - "name": "white_wall_banner", - "displayName": "White Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8894, - "minStateId": 8894, - "maxStateId": 8897, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1025 - ], - "boundingBox": "empty" - }, - { - "id": 466, - "name": "orange_wall_banner", - "displayName": "Orange Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8898, - "minStateId": 8898, - "maxStateId": 8901, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1026 - ], - "boundingBox": "empty" - }, - { - "id": 467, - "name": "magenta_wall_banner", - "displayName": "Magenta Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8902, - "minStateId": 8902, - "maxStateId": 8905, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1027 - ], - "boundingBox": "empty" - }, - { - "id": 468, - "name": "light_blue_wall_banner", - "displayName": "Light Blue Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8906, - "minStateId": 8906, - "maxStateId": 8909, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1028 - ], - "boundingBox": "empty" - }, - { - "id": 469, - "name": "yellow_wall_banner", - "displayName": "Yellow Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8910, - "minStateId": 8910, - "maxStateId": 8913, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1029 - ], - "boundingBox": "empty" - }, - { - "id": 470, - "name": "lime_wall_banner", - "displayName": "Lime Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8914, - "minStateId": 8914, - "maxStateId": 8917, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1030 - ], - "boundingBox": "empty" - }, - { - "id": 471, - "name": "pink_wall_banner", - "displayName": "Pink Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8918, - "minStateId": 8918, - "maxStateId": 8921, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1031 - ], - "boundingBox": "empty" - }, - { - "id": 472, - "name": "gray_wall_banner", - "displayName": "Gray Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8922, - "minStateId": 8922, - "maxStateId": 8925, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1032 - ], - "boundingBox": "empty" - }, - { - "id": 473, - "name": "light_gray_wall_banner", - "displayName": "Light Gray Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8926, - "minStateId": 8926, - "maxStateId": 8929, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1033 - ], - "boundingBox": "empty" - }, - { - "id": 474, - "name": "cyan_wall_banner", - "displayName": "Cyan Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8930, - "minStateId": 8930, - "maxStateId": 8933, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1034 - ], - "boundingBox": "empty" - }, - { - "id": 475, - "name": "purple_wall_banner", - "displayName": "Purple Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8934, - "minStateId": 8934, - "maxStateId": 8937, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1035 - ], - "boundingBox": "empty" - }, - { - "id": 476, - "name": "blue_wall_banner", - "displayName": "Blue Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8938, - "minStateId": 8938, - "maxStateId": 8941, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1036 - ], - "boundingBox": "empty" - }, - { - "id": 477, - "name": "brown_wall_banner", - "displayName": "Brown Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8942, - "minStateId": 8942, - "maxStateId": 8945, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1037 - ], - "boundingBox": "empty" - }, - { - "id": 478, - "name": "green_wall_banner", - "displayName": "Green Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8946, - "minStateId": 8946, - "maxStateId": 8949, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1038 - ], - "boundingBox": "empty" - }, - { - "id": 479, - "name": "red_wall_banner", - "displayName": "Red Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8950, - "minStateId": 8950, - "maxStateId": 8953, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1039 - ], - "boundingBox": "empty" - }, - { - "id": 480, - "name": "black_wall_banner", - "displayName": "Black Banner", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8954, - "minStateId": 8954, - "maxStateId": 8957, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1040 - ], - "boundingBox": "empty" - }, - { - "id": 481, - "name": "red_sandstone", - "displayName": "Red Sandstone", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8958, - "minStateId": 8958, - "maxStateId": 8958, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 462 - ], - "boundingBox": "block" - }, - { - "id": 482, - "name": "chiseled_red_sandstone", - "displayName": "Chiseled Red Sandstone", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8959, - "minStateId": 8959, - "maxStateId": 8959, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 463 - ], - "boundingBox": "block" - }, - { - "id": 483, - "name": "cut_red_sandstone", - "displayName": "Cut Red Sandstone", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 8960, - "minStateId": 8960, - "maxStateId": 8960, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 464 - ], - "boundingBox": "block" - }, - { - "id": 484, - "name": "red_sandstone_stairs", - "displayName": "Red Sandstone Stairs", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 8972, - "minStateId": 8961, - "maxStateId": 9040, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 465 - ], - "boundingBox": "block" - }, - { - "id": 485, - "name": "oak_slab", - "displayName": "Oak Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9044, - "minStateId": 9041, - "maxStateId": 9046, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 214 - ], - "boundingBox": "block" - }, - { - "id": 486, - "name": "spruce_slab", - "displayName": "Spruce Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9050, - "minStateId": 9047, - "maxStateId": 9052, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 215 - ], - "boundingBox": "block" - }, - { - "id": 487, - "name": "birch_slab", - "displayName": "Birch Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9056, - "minStateId": 9053, - "maxStateId": 9058, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 216 - ], - "boundingBox": "block" - }, - { - "id": 488, - "name": "jungle_slab", - "displayName": "Jungle Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9062, - "minStateId": 9059, - "maxStateId": 9064, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 217 - ], - "boundingBox": "block" - }, - { - "id": 489, - "name": "acacia_slab", - "displayName": "Acacia Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9068, - "minStateId": 9065, - "maxStateId": 9070, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 218 - ], - "boundingBox": "block" - }, - { - "id": 490, - "name": "dark_oak_slab", - "displayName": "Dark Oak Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9074, - "minStateId": 9071, - "maxStateId": 9076, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 219 - ], - "boundingBox": "block" - }, - { - "id": 491, - "name": "mangrove_slab", - "displayName": "Mangrove Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9080, - "minStateId": 9077, - "maxStateId": 9082, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 220 - ], - "boundingBox": "block" - }, - { - "id": 492, - "name": "stone_slab", - "displayName": "Stone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9086, - "minStateId": 9083, - "maxStateId": 9088, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 223 - ], - "boundingBox": "block" - }, - { - "id": 493, - "name": "smooth_stone_slab", - "displayName": "Smooth Stone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9092, - "minStateId": 9089, - "maxStateId": 9094, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 224 - ], - "boundingBox": "block" - }, - { - "id": 494, - "name": "sandstone_slab", - "displayName": "Sandstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9098, - "minStateId": 9095, - "maxStateId": 9100, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 225 - ], - "boundingBox": "block" - }, - { - "id": 495, - "name": "cut_sandstone_slab", - "displayName": "Cut Sandstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9104, - "minStateId": 9101, - "maxStateId": 9106, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 226 - ], - "boundingBox": "block" - }, - { - "id": 496, - "name": "petrified_oak_slab", - "displayName": "Petrified Oak Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9110, - "minStateId": 9107, - "maxStateId": 9112, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 227 - ], - "boundingBox": "block" - }, - { - "id": 497, - "name": "cobblestone_slab", - "displayName": "Cobblestone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9116, - "minStateId": 9113, - "maxStateId": 9118, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 228 - ], - "boundingBox": "block" - }, - { - "id": 498, - "name": "brick_slab", - "displayName": "Brick Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9122, - "minStateId": 9119, - "maxStateId": 9124, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 229 - ], - "boundingBox": "block" - }, - { - "id": 499, - "name": "stone_brick_slab", - "displayName": "Stone Brick Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9128, - "minStateId": 9125, - "maxStateId": 9130, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 230 - ], - "boundingBox": "block" - }, - { - "id": 500, - "name": "mud_brick_slab", - "displayName": "Mud Brick Slab", - "hardness": 1.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9134, - "minStateId": 9131, - "maxStateId": 9136, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 231 - ], - "boundingBox": "block" - }, - { - "id": 501, - "name": "nether_brick_slab", - "displayName": "Nether Brick Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9140, - "minStateId": 9137, - "maxStateId": 9142, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 232 - ], - "boundingBox": "block" - }, - { - "id": 502, - "name": "quartz_slab", - "displayName": "Quartz Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9146, - "minStateId": 9143, - "maxStateId": 9148, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 233 - ], - "boundingBox": "block" - }, - { - "id": 503, - "name": "red_sandstone_slab", - "displayName": "Red Sandstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9152, - "minStateId": 9149, - "maxStateId": 9154, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 234 - ], - "boundingBox": "block" - }, - { - "id": 504, - "name": "cut_red_sandstone_slab", - "displayName": "Cut Red Sandstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9158, - "minStateId": 9155, - "maxStateId": 9160, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 235 - ], - "boundingBox": "block" - }, - { - "id": 505, - "name": "purpur_slab", - "displayName": "Purpur Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9164, - "minStateId": 9161, - "maxStateId": 9166, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 236 - ], - "boundingBox": "block" - }, - { - "id": 506, - "name": "smooth_stone", - "displayName": "Smooth Stone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 9167, - "minStateId": 9167, - "maxStateId": 9167, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 243 - ], - "boundingBox": "block" - }, - { - "id": 507, - "name": "smooth_sandstone", - "displayName": "Smooth Sandstone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 9168, - "minStateId": 9168, - "maxStateId": 9168, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 242 - ], - "boundingBox": "block" - }, - { - "id": 508, - "name": "smooth_quartz", - "displayName": "Smooth Quartz Block", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 9169, - "minStateId": 9169, - "maxStateId": 9169, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 240 - ], - "boundingBox": "block" - }, - { - "id": 509, - "name": "smooth_red_sandstone", - "displayName": "Smooth Red Sandstone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 9170, - "minStateId": 9170, - "maxStateId": 9170, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 241 - ], - "boundingBox": "block" - }, - { - "id": 510, - "name": "spruce_fence_gate", - "displayName": "Spruce Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9178, - "minStateId": 9171, - "maxStateId": 9202, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 677 - ], - "boundingBox": "block" - }, - { - "id": 511, - "name": "birch_fence_gate", - "displayName": "Birch Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9210, - "minStateId": 9203, - "maxStateId": 9234, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 678 - ], - "boundingBox": "block" - }, - { - "id": 512, - "name": "jungle_fence_gate", - "displayName": "Jungle Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9242, - "minStateId": 9235, - "maxStateId": 9266, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 679 - ], - "boundingBox": "block" - }, - { - "id": 513, - "name": "acacia_fence_gate", - "displayName": "Acacia Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9274, - "minStateId": 9267, - "maxStateId": 9298, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 680 - ], - "boundingBox": "block" - }, - { - "id": 514, - "name": "dark_oak_fence_gate", - "displayName": "Dark Oak Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9306, - "minStateId": 9299, - "maxStateId": 9330, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 681 - ], - "boundingBox": "block" - }, - { - "id": 515, - "name": "mangrove_fence_gate", - "displayName": "Mangrove Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9338, - "minStateId": 9331, - "maxStateId": 9362, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 682 - ], - "boundingBox": "block" - }, - { - "id": 516, - "name": "spruce_fence", - "displayName": "Spruce Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9394, - "minStateId": 9363, - "maxStateId": 9394, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 269 - ], - "boundingBox": "block" - }, - { - "id": 517, - "name": "birch_fence", - "displayName": "Birch Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9426, - "minStateId": 9395, - "maxStateId": 9426, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 270 - ], - "boundingBox": "block" - }, - { - "id": 518, - "name": "jungle_fence", - "displayName": "Jungle Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9458, - "minStateId": 9427, - "maxStateId": 9458, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 271 - ], - "boundingBox": "block" - }, - { - "id": 519, - "name": "acacia_fence", - "displayName": "Acacia Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9490, - "minStateId": 9459, - "maxStateId": 9490, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 272 - ], - "boundingBox": "block" - }, - { - "id": 520, - "name": "dark_oak_fence", - "displayName": "Dark Oak Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9522, - "minStateId": 9491, - "maxStateId": 9522, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 273 - ], - "boundingBox": "block" - }, - { - "id": 521, - "name": "mangrove_fence", - "displayName": "Mangrove Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9554, - "minStateId": 9523, - "maxStateId": 9554, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 274 - ], - "boundingBox": "block" - }, - { - "id": 522, - "name": "spruce_door", - "displayName": "Spruce Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9566, - "minStateId": 9555, - "maxStateId": 9618, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 658 - ], - "boundingBox": "block" - }, - { - "id": 523, - "name": "birch_door", - "displayName": "Birch Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9630, - "minStateId": 9619, - "maxStateId": 9682, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 659 - ], - "boundingBox": "block" - }, - { - "id": 524, - "name": "jungle_door", - "displayName": "Jungle Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9694, - "minStateId": 9683, - "maxStateId": 9746, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 660 - ], - "boundingBox": "block" - }, - { - "id": 525, - "name": "acacia_door", - "displayName": "Acacia Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9758, - "minStateId": 9747, - "maxStateId": 9810, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 661 - ], - "boundingBox": "block" - }, - { - "id": 526, - "name": "dark_oak_door", - "displayName": "Dark Oak Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9822, - "minStateId": 9811, - "maxStateId": 9874, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 662 - ], - "boundingBox": "block" - }, - { - "id": 527, - "name": "mangrove_door", - "displayName": "Mangrove Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 9886, - "minStateId": 9875, - "maxStateId": 9938, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 663 - ], - "boundingBox": "block" - }, - { - "id": 528, - "name": "end_rod", - "displayName": "End Rod", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 14, - "filterLight": 0, - "defaultState": 9943, - "minStateId": 9939, - "maxStateId": 9944, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 249 - ], - "boundingBox": "block" - }, - { - "id": 529, - "name": "chorus_plant", - "displayName": "Chorus Plant", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10008, - "minStateId": 9945, - "maxStateId": 10008, - "states": [ - { - "name": "down", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 0 - ], - "boundingBox": "block" - }, - { - "id": 530, - "name": "chorus_flower", - "displayName": "Chorus Flower", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10009, - "minStateId": 10009, - "maxStateId": 10014, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 6, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 531, - "name": "purpur_block", - "displayName": "Purpur Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10015, - "minStateId": 10015, - "maxStateId": 10015, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 252 - ], - "boundingBox": "block" - }, - { - "id": 532, - "name": "purpur_pillar", - "displayName": "Purpur Pillar", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10017, - "minStateId": 10016, - "maxStateId": 10018, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 253 - ], - "boundingBox": "block" - }, - { - "id": 533, - "name": "purpur_stairs", - "displayName": "Purpur Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10030, - "minStateId": 10019, - "maxStateId": 10098, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 254 - ], - "boundingBox": "block" - }, - { - "id": 534, - "name": "end_stone_bricks", - "displayName": "End Stone Bricks", - "hardness": 3.0, - "resistance": 9.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10099, - "minStateId": 10099, - "maxStateId": 10099, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 333 - ], - "boundingBox": "block" - }, - { - "id": 535, - "name": "beetroots", - "displayName": "Beetroots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10100, - "minStateId": 10100, - "maxStateId": 10103, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 4, - "values": [ - "0", - "1", - "2", - "3" - ] - } - ], - "drops": [ - 1045 - ], - "boundingBox": "empty" - }, - { - "id": 536, - "name": "dirt_path", - "displayName": "Dirt Path", - "hardness": 0.65, - "resistance": 0.65, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10104, - "minStateId": 10104, - "maxStateId": 10104, - "states": [], - "drops": [ - 15 - ], - "boundingBox": "block" - }, - { - "id": 537, - "name": "end_gateway", - "displayName": "End Gateway", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 15, - "filterLight": 1, - "defaultState": 10105, - "minStateId": 10105, - "maxStateId": 10105, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 538, - "name": "repeating_command_block", - "displayName": "Repeating Command Block", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10112, - "minStateId": 10106, - "maxStateId": 10117, - "states": [ - { - "name": "conditional", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "harvestTools": {}, - "drops": [], - "boundingBox": "block" - }, - { - "id": 539, - "name": "chain_command_block", - "displayName": "Chain Command Block", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10124, - "minStateId": 10118, - "maxStateId": 10129, - "states": [ - { - "name": "conditional", - "type": "bool", - "num_values": 2 - }, - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "harvestTools": {}, - "drops": [], - "boundingBox": "block" - }, - { - "id": 540, - "name": "frosted_ice", - "displayName": "Frosted Ice", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10130, - "minStateId": 10130, - "maxStateId": 10133, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 4, - "values": [ - "0", - "1", - "2", - "3" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 541, - "name": "magma_block", - "displayName": "Magma Block", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 3, - "filterLight": 15, - "defaultState": 10134, - "minStateId": 10134, - "maxStateId": 10134, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 468 - ], - "boundingBox": "block" - }, - { - "id": 542, - "name": "nether_wart_block", - "displayName": "Nether Wart Block", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10135, - "minStateId": 10135, - "maxStateId": 10135, - "states": [], - "drops": [ - 469 - ], - "boundingBox": "block" - }, - { - "id": 543, - "name": "red_nether_bricks", - "displayName": "Red Nether Bricks", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10136, - "minStateId": 10136, - "maxStateId": 10136, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 471 - ], - "boundingBox": "block" - }, - { - "id": 544, - "name": "bone_block", - "displayName": "Bone Block", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10138, - "minStateId": 10137, - "maxStateId": 10139, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 472 - ], - "boundingBox": "block" - }, - { - "id": 545, - "name": "structure_void", - "displayName": "Structure Void", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10140, - "minStateId": 10140, - "maxStateId": 10140, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 546, - "name": "observer", - "displayName": "Observer", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10146, - "minStateId": 10141, - "maxStateId": 10152, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 617 - ], - "boundingBox": "block" - }, - { - "id": 547, - "name": "shulker_box", - "displayName": "Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10157, - "minStateId": 10153, - "maxStateId": 10158, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 474 - ], - "boundingBox": "block" - }, - { - "id": 548, - "name": "white_shulker_box", - "displayName": "White Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10163, - "minStateId": 10159, - "maxStateId": 10164, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 475 - ], - "boundingBox": "block" - }, - { - "id": 549, - "name": "orange_shulker_box", - "displayName": "Orange Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10169, - "minStateId": 10165, - "maxStateId": 10170, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 476 - ], - "boundingBox": "block" - }, - { - "id": 550, - "name": "magenta_shulker_box", - "displayName": "Magenta Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10175, - "minStateId": 10171, - "maxStateId": 10176, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 477 - ], - "boundingBox": "block" - }, - { - "id": 551, - "name": "light_blue_shulker_box", - "displayName": "Light Blue Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10181, - "minStateId": 10177, - "maxStateId": 10182, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 478 - ], - "boundingBox": "block" - }, - { - "id": 552, - "name": "yellow_shulker_box", - "displayName": "Yellow Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10187, - "minStateId": 10183, - "maxStateId": 10188, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 479 - ], - "boundingBox": "block" - }, - { - "id": 553, - "name": "lime_shulker_box", - "displayName": "Lime Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10193, - "minStateId": 10189, - "maxStateId": 10194, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 480 - ], - "boundingBox": "block" - }, - { - "id": 554, - "name": "pink_shulker_box", - "displayName": "Pink Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10199, - "minStateId": 10195, - "maxStateId": 10200, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 481 - ], - "boundingBox": "block" - }, - { - "id": 555, - "name": "gray_shulker_box", - "displayName": "Gray Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10205, - "minStateId": 10201, - "maxStateId": 10206, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 482 - ], - "boundingBox": "block" - }, - { - "id": 556, - "name": "light_gray_shulker_box", - "displayName": "Light Gray Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10211, - "minStateId": 10207, - "maxStateId": 10212, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 483 - ], - "boundingBox": "block" - }, - { - "id": 557, - "name": "cyan_shulker_box", - "displayName": "Cyan Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10217, - "minStateId": 10213, - "maxStateId": 10218, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 484 - ], - "boundingBox": "block" - }, - { - "id": 558, - "name": "purple_shulker_box", - "displayName": "Purple Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10223, - "minStateId": 10219, - "maxStateId": 10224, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 485 - ], - "boundingBox": "block" - }, - { - "id": 559, - "name": "blue_shulker_box", - "displayName": "Blue Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10229, - "minStateId": 10225, - "maxStateId": 10230, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 486 - ], - "boundingBox": "block" - }, - { - "id": 560, - "name": "brown_shulker_box", - "displayName": "Brown Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10235, - "minStateId": 10231, - "maxStateId": 10236, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 487 - ], - "boundingBox": "block" - }, - { - "id": 561, - "name": "green_shulker_box", - "displayName": "Green Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10241, - "minStateId": 10237, - "maxStateId": 10242, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 488 - ], - "boundingBox": "block" - }, - { - "id": 562, - "name": "red_shulker_box", - "displayName": "Red Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10247, - "minStateId": 10243, - "maxStateId": 10248, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 489 - ], - "boundingBox": "block" - }, - { - "id": 563, - "name": "black_shulker_box", - "displayName": "Black Shulker Box", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 1, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10253, - "minStateId": 10249, - "maxStateId": 10254, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "drops": [ - 490 - ], - "boundingBox": "block" - }, - { - "id": 564, - "name": "white_glazed_terracotta", - "displayName": "White Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10255, - "minStateId": 10255, - "maxStateId": 10258, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 491 - ], - "boundingBox": "block" - }, - { - "id": 565, - "name": "orange_glazed_terracotta", - "displayName": "Orange Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10259, - "minStateId": 10259, - "maxStateId": 10262, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 492 - ], - "boundingBox": "block" - }, - { - "id": 566, - "name": "magenta_glazed_terracotta", - "displayName": "Magenta Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10263, - "minStateId": 10263, - "maxStateId": 10266, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 493 - ], - "boundingBox": "block" - }, - { - "id": 567, - "name": "light_blue_glazed_terracotta", - "displayName": "Light Blue Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10267, - "minStateId": 10267, - "maxStateId": 10270, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 494 - ], - "boundingBox": "block" - }, - { - "id": 568, - "name": "yellow_glazed_terracotta", - "displayName": "Yellow Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10271, - "minStateId": 10271, - "maxStateId": 10274, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 495 - ], - "boundingBox": "block" - }, - { - "id": 569, - "name": "lime_glazed_terracotta", - "displayName": "Lime Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10275, - "minStateId": 10275, - "maxStateId": 10278, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 496 - ], - "boundingBox": "block" - }, - { - "id": 570, - "name": "pink_glazed_terracotta", - "displayName": "Pink Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10279, - "minStateId": 10279, - "maxStateId": 10282, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 497 - ], - "boundingBox": "block" - }, - { - "id": 571, - "name": "gray_glazed_terracotta", - "displayName": "Gray Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10283, - "minStateId": 10283, - "maxStateId": 10286, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 498 - ], - "boundingBox": "block" - }, - { - "id": 572, - "name": "light_gray_glazed_terracotta", - "displayName": "Light Gray Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10287, - "minStateId": 10287, - "maxStateId": 10290, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 499 - ], - "boundingBox": "block" - }, - { - "id": 573, - "name": "cyan_glazed_terracotta", - "displayName": "Cyan Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10291, - "minStateId": 10291, - "maxStateId": 10294, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 500 - ], - "boundingBox": "block" - }, - { - "id": 574, - "name": "purple_glazed_terracotta", - "displayName": "Purple Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10295, - "minStateId": 10295, - "maxStateId": 10298, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 501 - ], - "boundingBox": "block" - }, - { - "id": 575, - "name": "blue_glazed_terracotta", - "displayName": "Blue Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10299, - "minStateId": 10299, - "maxStateId": 10302, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 502 - ], - "boundingBox": "block" - }, - { - "id": 576, - "name": "brown_glazed_terracotta", - "displayName": "Brown Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10303, - "minStateId": 10303, - "maxStateId": 10306, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 503 - ], - "boundingBox": "block" - }, - { - "id": 577, - "name": "green_glazed_terracotta", - "displayName": "Green Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10307, - "minStateId": 10307, - "maxStateId": 10310, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 504 - ], - "boundingBox": "block" - }, - { - "id": 578, - "name": "red_glazed_terracotta", - "displayName": "Red Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10311, - "minStateId": 10311, - "maxStateId": 10314, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 505 - ], - "boundingBox": "block" - }, - { - "id": 579, - "name": "black_glazed_terracotta", - "displayName": "Black Glazed Terracotta", - "hardness": 1.4, - "resistance": 1.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10315, - "minStateId": 10315, - "maxStateId": 10318, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 506 - ], - "boundingBox": "block" - }, - { - "id": 580, - "name": "white_concrete", - "displayName": "White Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10319, - "minStateId": 10319, - "maxStateId": 10319, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 507 - ], - "boundingBox": "block" - }, - { - "id": 581, - "name": "orange_concrete", - "displayName": "Orange Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10320, - "minStateId": 10320, - "maxStateId": 10320, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 508 - ], - "boundingBox": "block" - }, - { - "id": 582, - "name": "magenta_concrete", - "displayName": "Magenta Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10321, - "minStateId": 10321, - "maxStateId": 10321, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 509 - ], - "boundingBox": "block" - }, - { - "id": 583, - "name": "light_blue_concrete", - "displayName": "Light Blue Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10322, - "minStateId": 10322, - "maxStateId": 10322, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 510 - ], - "boundingBox": "block" - }, - { - "id": 584, - "name": "yellow_concrete", - "displayName": "Yellow Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10323, - "minStateId": 10323, - "maxStateId": 10323, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 511 - ], - "boundingBox": "block" - }, - { - "id": 585, - "name": "lime_concrete", - "displayName": "Lime Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10324, - "minStateId": 10324, - "maxStateId": 10324, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 512 - ], - "boundingBox": "block" - }, - { - "id": 586, - "name": "pink_concrete", - "displayName": "Pink Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10325, - "minStateId": 10325, - "maxStateId": 10325, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 513 - ], - "boundingBox": "block" - }, - { - "id": 587, - "name": "gray_concrete", - "displayName": "Gray Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10326, - "minStateId": 10326, - "maxStateId": 10326, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 514 - ], - "boundingBox": "block" - }, - { - "id": 588, - "name": "light_gray_concrete", - "displayName": "Light Gray Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10327, - "minStateId": 10327, - "maxStateId": 10327, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 515 - ], - "boundingBox": "block" - }, - { - "id": 589, - "name": "cyan_concrete", - "displayName": "Cyan Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10328, - "minStateId": 10328, - "maxStateId": 10328, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 516 - ], - "boundingBox": "block" - }, - { - "id": 590, - "name": "purple_concrete", - "displayName": "Purple Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10329, - "minStateId": 10329, - "maxStateId": 10329, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 517 - ], - "boundingBox": "block" - }, - { - "id": 591, - "name": "blue_concrete", - "displayName": "Blue Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10330, - "minStateId": 10330, - "maxStateId": 10330, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 518 - ], - "boundingBox": "block" - }, - { - "id": 592, - "name": "brown_concrete", - "displayName": "Brown Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10331, - "minStateId": 10331, - "maxStateId": 10331, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 519 - ], - "boundingBox": "block" - }, - { - "id": 593, - "name": "green_concrete", - "displayName": "Green Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10332, - "minStateId": 10332, - "maxStateId": 10332, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 520 - ], - "boundingBox": "block" - }, - { - "id": 594, - "name": "red_concrete", - "displayName": "Red Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10333, - "minStateId": 10333, - "maxStateId": 10333, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 521 - ], - "boundingBox": "block" - }, - { - "id": 595, - "name": "black_concrete", - "displayName": "Black Concrete", - "hardness": 1.8, - "resistance": 1.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10334, - "minStateId": 10334, - "maxStateId": 10334, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 522 - ], - "boundingBox": "block" - }, - { - "id": 596, - "name": "white_concrete_powder", - "displayName": "White Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10335, - "minStateId": 10335, - "maxStateId": 10335, - "states": [], - "drops": [ - 523 - ], - "boundingBox": "block" - }, - { - "id": 597, - "name": "orange_concrete_powder", - "displayName": "Orange Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10336, - "minStateId": 10336, - "maxStateId": 10336, - "states": [], - "drops": [ - 524 - ], - "boundingBox": "block" - }, - { - "id": 598, - "name": "magenta_concrete_powder", - "displayName": "Magenta Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10337, - "minStateId": 10337, - "maxStateId": 10337, - "states": [], - "drops": [ - 525 - ], - "boundingBox": "block" - }, - { - "id": 599, - "name": "light_blue_concrete_powder", - "displayName": "Light Blue Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10338, - "minStateId": 10338, - "maxStateId": 10338, - "states": [], - "drops": [ - 526 - ], - "boundingBox": "block" - }, - { - "id": 600, - "name": "yellow_concrete_powder", - "displayName": "Yellow Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10339, - "minStateId": 10339, - "maxStateId": 10339, - "states": [], - "drops": [ - 527 - ], - "boundingBox": "block" - }, - { - "id": 601, - "name": "lime_concrete_powder", - "displayName": "Lime Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10340, - "minStateId": 10340, - "maxStateId": 10340, - "states": [], - "drops": [ - 528 - ], - "boundingBox": "block" - }, - { - "id": 602, - "name": "pink_concrete_powder", - "displayName": "Pink Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10341, - "minStateId": 10341, - "maxStateId": 10341, - "states": [], - "drops": [ - 529 - ], - "boundingBox": "block" - }, - { - "id": 603, - "name": "gray_concrete_powder", - "displayName": "Gray Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10342, - "minStateId": 10342, - "maxStateId": 10342, - "states": [], - "drops": [ - 530 - ], - "boundingBox": "block" - }, - { - "id": 604, - "name": "light_gray_concrete_powder", - "displayName": "Light Gray Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10343, - "minStateId": 10343, - "maxStateId": 10343, - "states": [], - "drops": [ - 531 - ], - "boundingBox": "block" - }, - { - "id": 605, - "name": "cyan_concrete_powder", - "displayName": "Cyan Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10344, - "minStateId": 10344, - "maxStateId": 10344, - "states": [], - "drops": [ - 532 - ], - "boundingBox": "block" - }, - { - "id": 606, - "name": "purple_concrete_powder", - "displayName": "Purple Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10345, - "minStateId": 10345, - "maxStateId": 10345, - "states": [], - "drops": [ - 533 - ], - "boundingBox": "block" - }, - { - "id": 607, - "name": "blue_concrete_powder", - "displayName": "Blue Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10346, - "minStateId": 10346, - "maxStateId": 10346, - "states": [], - "drops": [ - 534 - ], - "boundingBox": "block" - }, - { - "id": 608, - "name": "brown_concrete_powder", - "displayName": "Brown Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10347, - "minStateId": 10347, - "maxStateId": 10347, - "states": [], - "drops": [ - 535 - ], - "boundingBox": "block" - }, - { - "id": 609, - "name": "green_concrete_powder", - "displayName": "Green Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10348, - "minStateId": 10348, - "maxStateId": 10348, - "states": [], - "drops": [ - 536 - ], - "boundingBox": "block" - }, - { - "id": 610, - "name": "red_concrete_powder", - "displayName": "Red Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10349, - "minStateId": 10349, - "maxStateId": 10349, - "states": [], - "drops": [ - 537 - ], - "boundingBox": "block" - }, - { - "id": 611, - "name": "black_concrete_powder", - "displayName": "Black Concrete Powder", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10350, - "minStateId": 10350, - "maxStateId": 10350, - "states": [], - "drops": [ - 538 - ], - "boundingBox": "block" - }, - { - "id": 612, - "name": "kelp", - "displayName": "Kelp", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10351, - "minStateId": 10351, - "maxStateId": 10376, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 26, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - } - ], - "drops": [ - 207 - ], - "boundingBox": "empty" - }, - { - "id": 613, - "name": "kelp_plant", - "displayName": "Kelp Plant", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10377, - "minStateId": 10377, - "maxStateId": 10377, - "states": [], - "drops": [ - 207 - ], - "boundingBox": "empty" - }, - { - "id": 614, - "name": "dried_kelp_block", - "displayName": "Dried Kelp Block", - "hardness": 0.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10378, - "minStateId": 10378, - "maxStateId": 10378, - "states": [], - "drops": [ - 828 - ], - "boundingBox": "block" - }, - { - "id": 615, - "name": "turtle_egg", - "displayName": "Turtle Egg", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10379, - "minStateId": 10379, - "maxStateId": 10390, - "states": [ - { - "name": "eggs", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "hatch", - "type": "int", - "num_values": 3, - "values": [ - "0", - "1", - "2" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 616, - "name": "dead_tube_coral_block", - "displayName": "Dead Tube Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10391, - "minStateId": 10391, - "maxStateId": 10391, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 540 - ], - "boundingBox": "block" - }, - { - "id": 617, - "name": "dead_brain_coral_block", - "displayName": "Dead Brain Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10392, - "minStateId": 10392, - "maxStateId": 10392, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 541 - ], - "boundingBox": "block" - }, - { - "id": 618, - "name": "dead_bubble_coral_block", - "displayName": "Dead Bubble Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10393, - "minStateId": 10393, - "maxStateId": 10393, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 542 - ], - "boundingBox": "block" - }, - { - "id": 619, - "name": "dead_fire_coral_block", - "displayName": "Dead Fire Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10394, - "minStateId": 10394, - "maxStateId": 10394, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 543 - ], - "boundingBox": "block" - }, - { - "id": 620, - "name": "dead_horn_coral_block", - "displayName": "Dead Horn Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10395, - "minStateId": 10395, - "maxStateId": 10395, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 544 - ], - "boundingBox": "block" - }, - { - "id": 621, - "name": "tube_coral_block", - "displayName": "Tube Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10396, - "minStateId": 10396, - "maxStateId": 10396, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 540 - ], - "boundingBox": "block" - }, - { - "id": 622, - "name": "brain_coral_block", - "displayName": "Brain Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10397, - "minStateId": 10397, - "maxStateId": 10397, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 541 - ], - "boundingBox": "block" - }, - { - "id": 623, - "name": "bubble_coral_block", - "displayName": "Bubble Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10398, - "minStateId": 10398, - "maxStateId": 10398, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 542 - ], - "boundingBox": "block" - }, - { - "id": 624, - "name": "fire_coral_block", - "displayName": "Fire Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10399, - "minStateId": 10399, - "maxStateId": 10399, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 543 - ], - "boundingBox": "block" - }, - { - "id": 625, - "name": "horn_coral_block", - "displayName": "Horn Coral Block", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10400, - "minStateId": 10400, - "maxStateId": 10400, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 544 - ], - "boundingBox": "block" - }, - { - "id": 626, - "name": "dead_tube_coral", - "displayName": "Dead Tube Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10401, - "minStateId": 10401, - "maxStateId": 10402, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 627, - "name": "dead_brain_coral", - "displayName": "Dead Brain Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10403, - "minStateId": 10403, - "maxStateId": 10404, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 628, - "name": "dead_bubble_coral", - "displayName": "Dead Bubble Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10405, - "minStateId": 10405, - "maxStateId": 10406, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 629, - "name": "dead_fire_coral", - "displayName": "Dead Fire Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10407, - "minStateId": 10407, - "maxStateId": 10408, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 630, - "name": "dead_horn_coral", - "displayName": "Dead Horn Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10409, - "minStateId": 10409, - "maxStateId": 10410, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 631, - "name": "tube_coral", - "displayName": "Tube Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10411, - "minStateId": 10411, - "maxStateId": 10412, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 632, - "name": "brain_coral", - "displayName": "Brain Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10413, - "minStateId": 10413, - "maxStateId": 10414, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 633, - "name": "bubble_coral", - "displayName": "Bubble Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10415, - "minStateId": 10415, - "maxStateId": 10416, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 634, - "name": "fire_coral", - "displayName": "Fire Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10417, - "minStateId": 10417, - "maxStateId": 10418, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 635, - "name": "horn_coral", - "displayName": "Horn Coral", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10419, - "minStateId": 10419, - "maxStateId": 10420, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 636, - "name": "dead_tube_coral_fan", - "displayName": "Dead Tube Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10421, - "minStateId": 10421, - "maxStateId": 10422, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 637, - "name": "dead_brain_coral_fan", - "displayName": "Dead Brain Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10423, - "minStateId": 10423, - "maxStateId": 10424, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 638, - "name": "dead_bubble_coral_fan", - "displayName": "Dead Bubble Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10425, - "minStateId": 10425, - "maxStateId": 10426, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 639, - "name": "dead_fire_coral_fan", - "displayName": "Dead Fire Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10427, - "minStateId": 10427, - "maxStateId": 10428, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 640, - "name": "dead_horn_coral_fan", - "displayName": "Dead Horn Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10429, - "minStateId": 10429, - "maxStateId": 10430, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 641, - "name": "tube_coral_fan", - "displayName": "Tube Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10431, - "minStateId": 10431, - "maxStateId": 10432, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 642, - "name": "brain_coral_fan", - "displayName": "Brain Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10433, - "minStateId": 10433, - "maxStateId": 10434, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 643, - "name": "bubble_coral_fan", - "displayName": "Bubble Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10435, - "minStateId": 10435, - "maxStateId": 10436, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 644, - "name": "fire_coral_fan", - "displayName": "Fire Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10437, - "minStateId": 10437, - "maxStateId": 10438, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 645, - "name": "horn_coral_fan", - "displayName": "Horn Coral Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10439, - "minStateId": 10439, - "maxStateId": 10440, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 646, - "name": "dead_tube_coral_wall_fan", - "displayName": "Dead Tube Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10441, - "minStateId": 10441, - "maxStateId": 10448, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 647, - "name": "dead_brain_coral_wall_fan", - "displayName": "Dead Brain Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10449, - "minStateId": 10449, - "maxStateId": 10456, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 648, - "name": "dead_bubble_coral_wall_fan", - "displayName": "Dead Bubble Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10457, - "minStateId": 10457, - "maxStateId": 10464, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 649, - "name": "dead_fire_coral_wall_fan", - "displayName": "Dead Fire Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10465, - "minStateId": 10465, - "maxStateId": 10472, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 650, - "name": "dead_horn_coral_wall_fan", - "displayName": "Dead Horn Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10473, - "minStateId": 10473, - "maxStateId": 10480, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "empty" - }, - { - "id": 651, - "name": "tube_coral_wall_fan", - "displayName": "Tube Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10481, - "minStateId": 10481, - "maxStateId": 10488, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 652, - "name": "brain_coral_wall_fan", - "displayName": "Brain Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10489, - "minStateId": 10489, - "maxStateId": 10496, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 653, - "name": "bubble_coral_wall_fan", - "displayName": "Bubble Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10497, - "minStateId": 10497, - "maxStateId": 10504, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 654, - "name": "fire_coral_wall_fan", - "displayName": "Fire Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10505, - "minStateId": 10505, - "maxStateId": 10512, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 655, - "name": "horn_coral_wall_fan", - "displayName": "Horn Coral Wall Fan", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10513, - "minStateId": 10513, - "maxStateId": 10520, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 656, - "name": "sea_pickle", - "displayName": "Sea Pickle", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 6, - "filterLight": 1, - "defaultState": 10521, - "minStateId": 10521, - "maxStateId": 10528, - "states": [ - { - "name": "pickles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 166 - ], - "boundingBox": "block" - }, - { - "id": 657, - "name": "blue_ice", - "displayName": "Blue Ice", - "hardness": 2.8, - "resistance": 2.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 10529, - "minStateId": 10529, - "maxStateId": 10529, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 658, - "name": "conduit", - "displayName": "Conduit", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 15, - "filterLight": 1, - "defaultState": 10530, - "minStateId": 10530, - "maxStateId": 10531, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 571 - ], - "boundingBox": "block" - }, - { - "id": 659, - "name": "bamboo_sapling", - "displayName": "Bamboo Shoot", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10532, - "minStateId": 10532, - "maxStateId": 10532, - "states": [], - "drops": [ - 213 - ], - "boundingBox": "empty" - }, - { - "id": 660, - "name": "bamboo", - "displayName": "Bamboo", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10533, - "minStateId": 10533, - "maxStateId": 10544, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - }, - { - "name": "leaves", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "small", - "large" - ] - }, - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], - "drops": [ - 213 - ], - "boundingBox": "block" - }, - { - "id": 661, - "name": "potted_bamboo", - "displayName": "Potted Bamboo", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10545, - "minStateId": 10545, - "maxStateId": 10545, - "states": [], - "drops": [ - 989, - 213 - ], - "boundingBox": "block" - }, - { - "id": 662, - "name": "void_air", - "displayName": "Void Air", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10546, - "minStateId": 10546, - "maxStateId": 10546, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 663, - "name": "cave_air", - "displayName": "Cave Air", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10547, - "minStateId": 10547, - "maxStateId": 10547, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 664, - "name": "bubble_column", - "displayName": "Bubble Column", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 10548, - "minStateId": 10548, - "maxStateId": 10549, - "states": [ - { - "name": "drag", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 665, - "name": "polished_granite_stairs", - "displayName": "Polished Granite Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10561, - "minStateId": 10550, - "maxStateId": 10629, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 572 - ], - "boundingBox": "block" - }, - { - "id": 666, - "name": "smooth_red_sandstone_stairs", - "displayName": "Smooth Red Sandstone Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10641, - "minStateId": 10630, - "maxStateId": 10709, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 573 - ], - "boundingBox": "block" - }, - { - "id": 667, - "name": "mossy_stone_brick_stairs", - "displayName": "Mossy Stone Brick Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10721, - "minStateId": 10710, - "maxStateId": 10789, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 574 - ], - "boundingBox": "block" - }, - { - "id": 668, - "name": "polished_diorite_stairs", - "displayName": "Polished Diorite Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10801, - "minStateId": 10790, - "maxStateId": 10869, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 575 - ], - "boundingBox": "block" - }, - { - "id": 669, - "name": "mossy_cobblestone_stairs", - "displayName": "Mossy Cobblestone Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10881, - "minStateId": 10870, - "maxStateId": 10949, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 576 - ], - "boundingBox": "block" - }, - { - "id": 670, - "name": "end_stone_brick_stairs", - "displayName": "End Stone Brick Stairs", - "hardness": 3.0, - "resistance": 9.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 10961, - "minStateId": 10950, - "maxStateId": 11029, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 577 - ], - "boundingBox": "block" - }, - { - "id": 671, - "name": "stone_stairs", - "displayName": "Stone Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11041, - "minStateId": 11030, - "maxStateId": 11109, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 578 - ], - "boundingBox": "block" - }, - { - "id": 672, - "name": "smooth_sandstone_stairs", - "displayName": "Smooth Sandstone Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11121, - "minStateId": 11110, - "maxStateId": 11189, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 579 - ], - "boundingBox": "block" - }, - { - "id": 673, - "name": "smooth_quartz_stairs", - "displayName": "Smooth Quartz Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11201, - "minStateId": 11190, - "maxStateId": 11269, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 580 - ], - "boundingBox": "block" - }, - { - "id": 674, - "name": "granite_stairs", - "displayName": "Granite Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11281, - "minStateId": 11270, - "maxStateId": 11349, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 581 - ], - "boundingBox": "block" - }, - { - "id": 675, - "name": "andesite_stairs", - "displayName": "Andesite Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11361, - "minStateId": 11350, - "maxStateId": 11429, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 582 - ], - "boundingBox": "block" - }, - { - "id": 676, - "name": "red_nether_brick_stairs", - "displayName": "Red Nether Brick Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11441, - "minStateId": 11430, - "maxStateId": 11509, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 583 - ], - "boundingBox": "block" - }, - { - "id": 677, - "name": "polished_andesite_stairs", - "displayName": "Polished Andesite Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11521, - "minStateId": 11510, - "maxStateId": 11589, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 584 - ], - "boundingBox": "block" - }, - { - "id": 678, - "name": "diorite_stairs", - "displayName": "Diorite Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11601, - "minStateId": 11590, - "maxStateId": 11669, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 585 - ], - "boundingBox": "block" - }, - { - "id": 679, - "name": "polished_granite_slab", - "displayName": "Polished Granite Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11673, - "minStateId": 11670, - "maxStateId": 11675, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 590 - ], - "boundingBox": "block" - }, - { - "id": 680, - "name": "smooth_red_sandstone_slab", - "displayName": "Smooth Red Sandstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11679, - "minStateId": 11676, - "maxStateId": 11681, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 591 - ], - "boundingBox": "block" - }, - { - "id": 681, - "name": "mossy_stone_brick_slab", - "displayName": "Mossy Stone Brick Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11685, - "minStateId": 11682, - "maxStateId": 11687, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 592 - ], - "boundingBox": "block" - }, - { - "id": 682, - "name": "polished_diorite_slab", - "displayName": "Polished Diorite Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11691, - "minStateId": 11688, - "maxStateId": 11693, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 593 - ], - "boundingBox": "block" - }, - { - "id": 683, - "name": "mossy_cobblestone_slab", - "displayName": "Mossy Cobblestone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11697, - "minStateId": 11694, - "maxStateId": 11699, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 594 - ], - "boundingBox": "block" - }, - { - "id": 684, - "name": "end_stone_brick_slab", - "displayName": "End Stone Brick Slab", - "hardness": 3.0, - "resistance": 9.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11703, - "minStateId": 11700, - "maxStateId": 11705, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 595 - ], - "boundingBox": "block" - }, - { - "id": 685, - "name": "smooth_sandstone_slab", - "displayName": "Smooth Sandstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11709, - "minStateId": 11706, - "maxStateId": 11711, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 596 - ], - "boundingBox": "block" - }, - { - "id": 686, - "name": "smooth_quartz_slab", - "displayName": "Smooth Quartz Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11715, - "minStateId": 11712, - "maxStateId": 11717, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 597 - ], - "boundingBox": "block" - }, - { - "id": 687, - "name": "granite_slab", - "displayName": "Granite Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11721, - "minStateId": 11718, - "maxStateId": 11723, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 598 - ], - "boundingBox": "block" - }, - { - "id": 688, - "name": "andesite_slab", - "displayName": "Andesite Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11727, - "minStateId": 11724, - "maxStateId": 11729, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 599 - ], - "boundingBox": "block" - }, - { - "id": 689, - "name": "red_nether_brick_slab", - "displayName": "Red Nether Brick Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11733, - "minStateId": 11730, - "maxStateId": 11735, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 600 - ], - "boundingBox": "block" - }, - { - "id": 690, - "name": "polished_andesite_slab", - "displayName": "Polished Andesite Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11739, - "minStateId": 11736, - "maxStateId": 11741, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 601 - ], - "boundingBox": "block" - }, - { - "id": 691, - "name": "diorite_slab", - "displayName": "Diorite Slab", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11745, - "minStateId": 11742, - "maxStateId": 11747, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 602 - ], - "boundingBox": "block" - }, - { - "id": 692, - "name": "brick_wall", - "displayName": "Brick Wall", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 11751, - "minStateId": 11748, - "maxStateId": 12071, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 351 - ], - "boundingBox": "block" - }, - { - "id": 693, - "name": "prismarine_wall", - "displayName": "Prismarine Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 12075, - "minStateId": 12072, - "maxStateId": 12395, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 352 - ], - "boundingBox": "block" - }, - { - "id": 694, - "name": "red_sandstone_wall", - "displayName": "Red Sandstone Wall", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 12399, - "minStateId": 12396, - "maxStateId": 12719, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 353 - ], - "boundingBox": "block" - }, - { - "id": 695, - "name": "mossy_stone_brick_wall", - "displayName": "Mossy Stone Brick Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 12723, - "minStateId": 12720, - "maxStateId": 13043, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 354 - ], - "boundingBox": "block" - }, - { - "id": 696, - "name": "granite_wall", - "displayName": "Granite Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 13047, - "minStateId": 13044, - "maxStateId": 13367, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 355 - ], - "boundingBox": "block" - }, - { - "id": 697, - "name": "stone_brick_wall", - "displayName": "Stone Brick Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 13371, - "minStateId": 13368, - "maxStateId": 13691, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 356 - ], - "boundingBox": "block" - }, - { - "id": 698, - "name": "mud_brick_wall", - "displayName": "Mud Brick Wall", - "hardness": 1.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 13695, - "minStateId": 13692, - "maxStateId": 14015, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 357 - ], - "boundingBox": "block" - }, - { - "id": 699, - "name": "nether_brick_wall", - "displayName": "Nether Brick Wall", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 14019, - "minStateId": 14016, - "maxStateId": 14339, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 358 - ], - "boundingBox": "block" - }, - { - "id": 700, - "name": "andesite_wall", - "displayName": "Andesite Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 14343, - "minStateId": 14340, - "maxStateId": 14663, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 359 - ], - "boundingBox": "block" - }, - { - "id": 701, - "name": "red_nether_brick_wall", - "displayName": "Red Nether Brick Wall", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 14667, - "minStateId": 14664, - "maxStateId": 14987, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 360 - ], - "boundingBox": "block" - }, - { - "id": 702, - "name": "sandstone_wall", - "displayName": "Sandstone Wall", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 14991, - "minStateId": 14988, - "maxStateId": 15311, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 361 - ], - "boundingBox": "block" - }, - { - "id": 703, - "name": "end_stone_brick_wall", - "displayName": "End Stone Brick Wall", - "hardness": 3.0, - "resistance": 9.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 15315, - "minStateId": 15312, - "maxStateId": 15635, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 362 - ], - "boundingBox": "block" - }, - { - "id": 704, - "name": "diorite_wall", - "displayName": "Diorite Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 15639, - "minStateId": 15636, - "maxStateId": 15959, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 363 - ], - "boundingBox": "block" - }, - { - "id": 705, - "name": "scaffolding", - "displayName": "Scaffolding", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 15991, - "minStateId": 15960, - "maxStateId": 15991, - "states": [ - { - "name": "bottom", - "type": "bool", - "num_values": 2 - }, - { - "name": "distance", - "type": "int", - "num_values": 8, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 607 - ], - "boundingBox": "block" - }, - { - "id": 706, - "name": "loom", - "displayName": "Loom", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 15992, - "minStateId": 15992, - "maxStateId": 15995, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "drops": [ - 1080 - ], - "boundingBox": "block" - }, - { - "id": 707, - "name": "barrel", - "displayName": "Barrel", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 15997, - "minStateId": 15996, - "maxStateId": 16007, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1089 - ], - "boundingBox": "block" - }, - { - "id": 708, - "name": "smoker", - "displayName": "Smoker", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16009, - "minStateId": 16008, - "maxStateId": 16015, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1090 - ], - "boundingBox": "block" - }, - { - "id": 709, - "name": "blast_furnace", - "displayName": "Blast Furnace", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16017, - "minStateId": 16016, - "maxStateId": 16023, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1091 - ], - "boundingBox": "block" - }, - { - "id": 710, - "name": "cartography_table", - "displayName": "Cartography Table", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16024, - "minStateId": 16024, - "maxStateId": 16024, - "states": [], - "drops": [ - 1092 - ], - "boundingBox": "block" - }, - { - "id": 711, - "name": "fletching_table", - "displayName": "Fletching Table", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16025, - "minStateId": 16025, - "maxStateId": 16025, - "states": [], - "drops": [ - 1093 - ], - "boundingBox": "block" - }, - { - "id": 712, - "name": "grindstone", - "displayName": "Grindstone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16030, - "minStateId": 16026, - "maxStateId": 16037, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1094 - ], - "boundingBox": "block" - }, - { - "id": 713, - "name": "lectern", - "displayName": "Lectern", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16041, - "minStateId": 16038, - "maxStateId": 16053, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "has_book", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 621 - ], - "boundingBox": "block" - }, - { - "id": 714, - "name": "smithing_table", - "displayName": "Smithing Table", - "hardness": 2.5, - "resistance": 2.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16054, - "minStateId": 16054, - "maxStateId": 16054, - "states": [], - "drops": [ - 1095 - ], - "boundingBox": "block" - }, - { - "id": 715, - "name": "stonecutter", - "displayName": "Stonecutter", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16055, - "minStateId": 16055, - "maxStateId": 16058, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1096 - ], - "boundingBox": "block" - }, - { - "id": 716, - "name": "bell", - "displayName": "Bell", - "hardness": 5.0, - "resistance": 5.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16060, - "minStateId": 16059, - "maxStateId": 16090, - "states": [ - { - "name": "attachment", - "type": "enum", - "num_values": 4, - "values": [ - "floor", - "ceiling", - "single_wall", - "double_wall" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1097 - ], - "boundingBox": "block" - }, - { - "id": 717, - "name": "lantern", - "displayName": "Lantern", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 15, - "filterLight": 0, - "defaultState": 16094, - "minStateId": 16091, - "maxStateId": 16094, - "states": [ - { - "name": "hanging", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1098 - ], - "boundingBox": "block" - }, - { - "id": 718, - "name": "soul_lantern", - "displayName": "Soul Lantern", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 10, - "filterLight": 0, - "defaultState": 16098, - "minStateId": 16095, - "maxStateId": 16098, - "states": [ - { - "name": "hanging", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1099 - ], - "boundingBox": "block" - }, - { - "id": 719, - "name": "campfire", - "displayName": "Campfire", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 15, - "filterLight": 0, - "defaultState": 16102, - "minStateId": 16099, - "maxStateId": 16130, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "signal_fire", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 721 - ], - "boundingBox": "block" - }, - { - "id": 720, - "name": "soul_campfire", - "displayName": "Soul Campfire", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 10, - "filterLight": 0, - "defaultState": 16134, - "minStateId": 16131, - "maxStateId": 16162, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "signal_fire", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 282 - ], - "boundingBox": "block" - }, - { - "id": 721, - "name": "sweet_berry_bush", - "displayName": "Sweet Berry Bush", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16163, - "minStateId": 16163, - "maxStateId": 16166, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 4, - "values": [ - "0", - "1", - "2", - "3" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 722, - "name": "warped_stem", - "displayName": "Warped Stem", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16168, - "minStateId": 16167, - "maxStateId": 16169, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 114 - ], - "boundingBox": "block" - }, - { - "id": 723, - "name": "stripped_warped_stem", - "displayName": "Stripped Warped Stem", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16171, - "minStateId": 16170, - "maxStateId": 16172, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 123 - ], - "boundingBox": "block" - }, - { - "id": 724, - "name": "warped_hyphae", - "displayName": "Warped Hyphae", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16174, - "minStateId": 16173, - "maxStateId": 16175, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 141 - ], - "boundingBox": "block" - }, - { - "id": 725, - "name": "stripped_warped_hyphae", - "displayName": "Stripped Warped Hyphae", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16177, - "minStateId": 16176, - "maxStateId": 16178, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 132 - ], - "boundingBox": "block" - }, - { - "id": 726, - "name": "warped_nylium", - "displayName": "Warped Nylium", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16179, - "minStateId": 16179, - "maxStateId": 16179, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 280 - ], - "boundingBox": "block" - }, - { - "id": 727, - "name": "warped_fungus", - "displayName": "Warped Fungus", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16180, - "minStateId": 16180, - "maxStateId": 16180, - "states": [], - "drops": [ - 200 - ], - "boundingBox": "empty" - }, - { - "id": 728, - "name": "warped_wart_block", - "displayName": "Warped Wart Block", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16181, - "minStateId": 16181, - "maxStateId": 16181, - "states": [], - "drops": [ - 470 - ], - "boundingBox": "block" - }, - { - "id": 729, - "name": "warped_roots", - "displayName": "Warped Roots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16182, - "minStateId": 16182, - "maxStateId": 16182, - "states": [], - "drops": [ - 202 - ], - "boundingBox": "empty" - }, - { - "id": 730, - "name": "nether_sprouts", - "displayName": "Nether Sprouts", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16183, - "minStateId": 16183, - "maxStateId": 16183, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 731, - "name": "crimson_stem", - "displayName": "Crimson Stem", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16185, - "minStateId": 16184, - "maxStateId": 16186, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 113 - ], - "boundingBox": "block" - }, - { - "id": 732, - "name": "stripped_crimson_stem", - "displayName": "Stripped Crimson Stem", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16188, - "minStateId": 16187, - "maxStateId": 16189, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 122 - ], - "boundingBox": "block" - }, - { - "id": 733, - "name": "crimson_hyphae", - "displayName": "Crimson Hyphae", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16191, - "minStateId": 16190, - "maxStateId": 16192, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 140 - ], - "boundingBox": "block" - }, - { - "id": 734, - "name": "stripped_crimson_hyphae", - "displayName": "Stripped Crimson Hyphae", - "hardness": 2.0, - "resistance": 2.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16194, - "minStateId": 16193, - "maxStateId": 16195, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 131 - ], - "boundingBox": "block" - }, - { - "id": 735, - "name": "crimson_nylium", - "displayName": "Crimson Nylium", - "hardness": 0.4, - "resistance": 0.4, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16196, - "minStateId": 16196, - "maxStateId": 16196, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 280 - ], - "boundingBox": "block" - }, - { - "id": 736, - "name": "crimson_fungus", - "displayName": "Crimson Fungus", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16197, - "minStateId": 16197, - "maxStateId": 16197, - "states": [], - "drops": [ - 199 - ], - "boundingBox": "empty" - }, - { - "id": 737, - "name": "shroomlight", - "displayName": "Shroomlight", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 16198, - "minStateId": 16198, - "maxStateId": 16198, - "states": [], - "drops": [ - 1104 - ], - "boundingBox": "block" - }, - { - "id": 738, - "name": "weeping_vines", - "displayName": "Weeping Vines", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16199, - "minStateId": 16199, - "maxStateId": 16224, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 26, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 739, - "name": "weeping_vines_plant", - "displayName": "Weeping Vines Plant", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16225, - "minStateId": 16225, - "maxStateId": 16225, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 740, - "name": "twisting_vines", - "displayName": "Twisting Vines", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16226, - "minStateId": 16226, - "maxStateId": 16251, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 26, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 741, - "name": "twisting_vines_plant", - "displayName": "Twisting Vines Plant", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16252, - "minStateId": 16252, - "maxStateId": 16252, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 742, - "name": "crimson_roots", - "displayName": "Crimson Roots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16253, - "minStateId": 16253, - "maxStateId": 16253, - "states": [], - "drops": [ - 201 - ], - "boundingBox": "empty" - }, - { - "id": 743, - "name": "crimson_planks", - "displayName": "Crimson Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16254, - "minStateId": 16254, - "maxStateId": 16254, - "states": [], - "drops": [ - 30 - ], - "boundingBox": "block" - }, - { - "id": 744, - "name": "warped_planks", - "displayName": "Warped Planks", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16255, - "minStateId": 16255, - "maxStateId": 16255, - "states": [], - "drops": [ - 31 - ], - "boundingBox": "block" - }, - { - "id": 745, - "name": "crimson_slab", - "displayName": "Crimson Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16259, - "minStateId": 16256, - "maxStateId": 16261, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 221 - ], - "boundingBox": "block" - }, - { - "id": 746, - "name": "warped_slab", - "displayName": "Warped Slab", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16265, - "minStateId": 16262, - "maxStateId": 16267, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 222 - ], - "boundingBox": "block" - }, - { - "id": 747, - "name": "crimson_pressure_plate", - "displayName": "Crimson Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16269, - "minStateId": 16268, - "maxStateId": 16269, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 654 - ], - "boundingBox": "empty" - }, - { - "id": 748, - "name": "warped_pressure_plate", - "displayName": "Warped Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16271, - "minStateId": 16270, - "maxStateId": 16271, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 655 - ], - "boundingBox": "empty" - }, - { - "id": 749, - "name": "crimson_fence", - "displayName": "Crimson Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16303, - "minStateId": 16272, - "maxStateId": 16303, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 275 - ], - "boundingBox": "block" - }, - { - "id": 750, - "name": "warped_fence", - "displayName": "Warped Fence", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16335, - "minStateId": 16304, - "maxStateId": 16335, - "states": [ - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 276 - ], - "boundingBox": "block" - }, - { - "id": 751, - "name": "crimson_trapdoor", - "displayName": "Crimson Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16351, - "minStateId": 16336, - "maxStateId": 16399, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 674 - ], - "boundingBox": "block" - }, - { - "id": 752, - "name": "warped_trapdoor", - "displayName": "Warped Trapdoor", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16415, - "minStateId": 16400, - "maxStateId": 16463, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 675 - ], - "boundingBox": "block" - }, - { - "id": 753, - "name": "crimson_fence_gate", - "displayName": "Crimson Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16471, - "minStateId": 16464, - "maxStateId": 16495, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 683 - ], - "boundingBox": "block" - }, - { - "id": 754, - "name": "warped_fence_gate", - "displayName": "Warped Fence Gate", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16503, - "minStateId": 16496, - "maxStateId": 16527, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "in_wall", - "type": "bool", - "num_values": 2 - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 684 - ], - "boundingBox": "block" - }, - { - "id": 755, - "name": "crimson_stairs", - "displayName": "Crimson Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16539, - "minStateId": 16528, - "maxStateId": 16607, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 345 - ], - "boundingBox": "block" - }, - { - "id": 756, - "name": "warped_stairs", - "displayName": "Warped Stairs", - "hardness": 2.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16619, - "minStateId": 16608, - "maxStateId": 16687, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 346 - ], - "boundingBox": "block" - }, - { - "id": 757, - "name": "crimson_button", - "displayName": "Crimson Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16697, - "minStateId": 16688, - "maxStateId": 16711, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 641 - ], - "boundingBox": "empty" - }, - { - "id": 758, - "name": "warped_button", - "displayName": "Warped Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16721, - "minStateId": 16712, - "maxStateId": 16735, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 642 - ], - "boundingBox": "empty" - }, - { - "id": 759, - "name": "crimson_door", - "displayName": "Crimson Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16747, - "minStateId": 16736, - "maxStateId": 16799, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 664 - ], - "boundingBox": "block" - }, - { - "id": 760, - "name": "warped_door", - "displayName": "Warped Door", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16811, - "minStateId": 16800, - "maxStateId": 16863, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "type": "enum", - "num_values": 2, - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "type": "bool", - "num_values": 2 - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 665 - ], - "boundingBox": "block" - }, - { - "id": 761, - "name": "crimson_sign", - "displayName": "Crimson Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16865, - "minStateId": 16864, - "maxStateId": 16895, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 811 - ], - "boundingBox": "empty" - }, - { - "id": 762, - "name": "warped_sign", - "displayName": "Warped Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16897, - "minStateId": 16896, - "maxStateId": 16927, - "states": [ - { - "name": "rotation", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 812 - ], - "boundingBox": "empty" - }, - { - "id": 763, - "name": "crimson_wall_sign", - "displayName": "Crimson Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16929, - "minStateId": 16928, - "maxStateId": 16935, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 811 - ], - "boundingBox": "empty" - }, - { - "id": 764, - "name": "warped_wall_sign", - "displayName": "Warped Sign", - "hardness": 1.0, - "resistance": 1.0, - "stackSize": 16, - "diggable": true, - "material": "mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16937, - "minStateId": 16936, - "maxStateId": 16943, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 812 - ], - "boundingBox": "empty" - }, - { - "id": 765, - "name": "structure_block", - "displayName": "Structure Block", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16945, - "minStateId": 16944, - "maxStateId": 16947, - "states": [ - { - "name": "mode", - "type": "enum", - "num_values": 4, - "values": [ - "save", - "load", - "corner", - "data" - ] - } - ], - "harvestTools": {}, - "drops": [], - "boundingBox": "block" - }, - { - "id": 766, - "name": "jigsaw", - "displayName": "Jigsaw Block", - "hardness": -1.0, - "resistance": 3600000.0, - "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16958, - "minStateId": 16948, - "maxStateId": 16959, - "states": [ - { - "name": "orientation", - "type": "enum", - "num_values": 12, - "values": [ - "down_east", - "down_north", - "down_south", - "down_west", - "up_east", - "up_north", - "up_south", - "up_west", - "west_up", - "east_up", - "north_up", - "south_up" - ] - } - ], - "harvestTools": {}, - "drops": [], - "boundingBox": "block" - }, - { - "id": 767, - "name": "composter", - "displayName": "Composter", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 16960, - "minStateId": 16960, - "maxStateId": 16968, - "states": [ - { - "name": "level", - "type": "int", - "num_values": 9, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - } - ], - "drops": [ - 1088 - ], - "boundingBox": "block" - }, - { - "id": 768, - "name": "target", - "displayName": "Target", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16969, - "minStateId": 16969, - "maxStateId": 16984, - "states": [ - { - "name": "power", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "drops": [ - 622 - ], - "boundingBox": "block" - }, - { - "id": 769, - "name": "bee_nest", - "displayName": "Bee Nest", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 16985, - "minStateId": 16985, - "maxStateId": 17008, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "honey_level", - "type": "int", - "num_values": 6, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 770, - "name": "beehive", - "displayName": "Beehive", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17009, - "minStateId": 17009, - "maxStateId": 17032, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "honey_level", - "type": "int", - "num_values": 6, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - } - ], - "drops": [ - 1107 - ], - "boundingBox": "block" - }, - { - "id": 771, - "name": "honey_block", - "displayName": "Honey Block", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 17033, - "minStateId": 17033, - "maxStateId": 17033, - "states": [], - "drops": [ - 616 - ], - "boundingBox": "block" - }, - { - "id": 772, - "name": "honeycomb_block", - "displayName": "Honeycomb Block", - "hardness": 0.6, - "resistance": 0.6, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17034, - "minStateId": 17034, - "maxStateId": 17034, - "states": [], - "drops": [ - 1109 - ], - "boundingBox": "block" - }, - { - "id": 773, - "name": "netherite_block", - "displayName": "Block of Netherite", - "hardness": 50.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17035, - "minStateId": 17035, - "maxStateId": 17035, - "states": [], - "harvestTools": { - "757": true, - "762": true - }, - "drops": [ - 72 - ], - "boundingBox": "block" - }, - { - "id": 774, - "name": "ancient_debris", - "displayName": "Ancient Debris", - "hardness": 30.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17036, - "minStateId": 17036, - "maxStateId": 17036, - "states": [], - "harvestTools": { - "757": true, - "762": true - }, - "drops": [ - 61 - ], - "boundingBox": "block" - }, - { - "id": 775, - "name": "crying_obsidian", - "displayName": "Crying Obsidian", - "hardness": 50.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 10, - "filterLight": 15, - "defaultState": 17037, - "minStateId": 17037, - "maxStateId": 17037, - "states": [], - "harvestTools": { - "757": true, - "762": true - }, - "drops": [ - 1111 - ], - "boundingBox": "block" - }, - { - "id": 776, - "name": "respawn_anchor", - "displayName": "Respawn Anchor", - "hardness": 50.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17038, - "minStateId": 17038, - "maxStateId": 17042, - "states": [ - { - "name": "charges", - "type": "int", - "num_values": 5, - "values": [ - "0", - "1", - "2", - "3", - "4" - ] - } - ], - "harvestTools": { - "757": true, - "762": true - }, - "drops": [ - 1124 - ], - "boundingBox": "block" - }, - { - "id": 777, - "name": "potted_crimson_fungus", - "displayName": "Potted Crimson Fungus", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17043, - "minStateId": 17043, - "maxStateId": 17043, - "states": [], - "drops": [ - 989, - 199 - ], - "boundingBox": "block" - }, - { - "id": 778, - "name": "potted_warped_fungus", - "displayName": "Potted Warped Fungus", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17044, - "minStateId": 17044, - "maxStateId": 17044, - "states": [], - "drops": [ - 989, - 200 - ], - "boundingBox": "block" - }, - { - "id": 779, - "name": "potted_crimson_roots", - "displayName": "Potted Crimson Roots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17045, - "minStateId": 17045, - "maxStateId": 17045, - "states": [], - "drops": [ - 989, - 201 - ], - "boundingBox": "block" - }, - { - "id": 780, - "name": "potted_warped_roots", - "displayName": "Potted Warped Roots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17046, - "minStateId": 17046, - "maxStateId": 17046, - "states": [], - "drops": [ - 989, - 202 - ], - "boundingBox": "block" - }, - { - "id": 781, - "name": "lodestone", - "displayName": "Lodestone", - "hardness": 3.5, - "resistance": 3.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17047, - "minStateId": 17047, - "maxStateId": 17047, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1110 - ], - "boundingBox": "block" - }, - { - "id": 782, - "name": "blackstone", - "displayName": "Blackstone", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17048, - "minStateId": 17048, - "maxStateId": 17048, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1112 - ], - "boundingBox": "block" - }, - { - "id": 783, - "name": "blackstone_stairs", - "displayName": "Blackstone Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17060, - "minStateId": 17049, - "maxStateId": 17128, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1114 - ], - "boundingBox": "block" - }, - { - "id": 784, - "name": "blackstone_wall", - "displayName": "Blackstone Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17132, - "minStateId": 17129, - "maxStateId": 17452, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 364 - ], - "boundingBox": "block" - }, - { - "id": 785, - "name": "blackstone_slab", - "displayName": "Blackstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17456, - "minStateId": 17453, - "maxStateId": 17458, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1113 - ], - "boundingBox": "block" - }, - { - "id": 786, - "name": "polished_blackstone", - "displayName": "Polished Blackstone", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17459, - "minStateId": 17459, - "maxStateId": 17459, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1116 - ], - "boundingBox": "block" - }, - { - "id": 787, - "name": "polished_blackstone_bricks", - "displayName": "Polished Blackstone Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17460, - "minStateId": 17460, - "maxStateId": 17460, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1120 - ], - "boundingBox": "block" - }, - { - "id": 788, - "name": "cracked_polished_blackstone_bricks", - "displayName": "Cracked Polished Blackstone Bricks", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17461, - "minStateId": 17461, - "maxStateId": 17461, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1123 - ], - "boundingBox": "block" - }, - { - "id": 789, - "name": "chiseled_polished_blackstone", - "displayName": "Chiseled Polished Blackstone", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17462, - "minStateId": 17462, - "maxStateId": 17462, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1119 - ], - "boundingBox": "block" - }, - { - "id": 790, - "name": "polished_blackstone_brick_slab", - "displayName": "Polished Blackstone Brick Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17466, - "minStateId": 17463, - "maxStateId": 17468, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1121 - ], - "boundingBox": "block" - }, - { - "id": 791, - "name": "polished_blackstone_brick_stairs", - "displayName": "Polished Blackstone Brick Stairs", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17480, - "minStateId": 17469, - "maxStateId": 17548, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1122 - ], - "boundingBox": "block" - }, - { - "id": 792, - "name": "polished_blackstone_brick_wall", - "displayName": "Polished Blackstone Brick Wall", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17552, - "minStateId": 17549, - "maxStateId": 17872, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 366 - ], - "boundingBox": "block" - }, - { - "id": 793, - "name": "gilded_blackstone", - "displayName": "Gilded Blackstone", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 17873, - "minStateId": 17873, - "maxStateId": 17873, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1115 - ], - "boundingBox": "block" - }, - { - "id": 794, - "name": "polished_blackstone_stairs", - "displayName": "Polished Blackstone Stairs", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17885, - "minStateId": 17874, - "maxStateId": 17953, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1118 - ], - "boundingBox": "block" - }, - { - "id": 795, - "name": "polished_blackstone_slab", - "displayName": "Polished Blackstone Slab", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17957, - "minStateId": 17954, - "maxStateId": 17959, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 1117 - ], - "boundingBox": "block" - }, - { - "id": 796, - "name": "polished_blackstone_pressure_plate", - "displayName": "Polished Blackstone Pressure Plate", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17961, - "minStateId": 17960, - "maxStateId": 17961, - "states": [ - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 644 - ], - "boundingBox": "empty" - }, - { - "id": 797, - "name": "polished_blackstone_button", - "displayName": "Polished Blackstone Button", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17971, - "minStateId": 17962, - "maxStateId": 17985, - "states": [ - { - "name": "face", - "type": "enum", - "num_values": 3, - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 633 - ], - "boundingBox": "empty" - }, - { - "id": 798, - "name": "polished_blackstone_wall", - "displayName": "Polished Blackstone Wall", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 17989, - "minStateId": 17986, - "maxStateId": 18309, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 365 - ], - "boundingBox": "block" - }, - { - "id": 799, - "name": "chiseled_nether_bricks", - "displayName": "Chiseled Nether Bricks", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18310, - "minStateId": 18310, - "maxStateId": 18310, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 323 - ], - "boundingBox": "block" - }, - { - "id": 800, - "name": "cracked_nether_bricks", - "displayName": "Cracked Nether Bricks", - "hardness": 2.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18311, - "minStateId": 18311, - "maxStateId": 18311, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 322 - ], - "boundingBox": "block" - }, - { - "id": 801, - "name": "quartz_bricks", - "displayName": "Quartz Bricks", - "hardness": 0.8, - "resistance": 0.8, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18312, - "minStateId": 18312, - "maxStateId": 18312, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 376 - ], - "boundingBox": "block" - }, - { - "id": 802, - "name": "candle", - "displayName": "Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18316, - "minStateId": 18313, - "maxStateId": 18328, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1125 - ], - "boundingBox": "block" - }, - { - "id": 803, - "name": "white_candle", - "displayName": "White Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18332, - "minStateId": 18329, - "maxStateId": 18344, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1126 - ], - "boundingBox": "block" - }, - { - "id": 804, - "name": "orange_candle", - "displayName": "Orange Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18348, - "minStateId": 18345, - "maxStateId": 18360, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1127 - ], - "boundingBox": "block" - }, - { - "id": 805, - "name": "magenta_candle", - "displayName": "Magenta Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18364, - "minStateId": 18361, - "maxStateId": 18376, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1128 - ], - "boundingBox": "block" - }, - { - "id": 806, - "name": "light_blue_candle", - "displayName": "Light Blue Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18380, - "minStateId": 18377, - "maxStateId": 18392, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1129 - ], - "boundingBox": "block" - }, - { - "id": 807, - "name": "yellow_candle", - "displayName": "Yellow Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18396, - "minStateId": 18393, - "maxStateId": 18408, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1130 - ], - "boundingBox": "block" - }, - { - "id": 808, - "name": "lime_candle", - "displayName": "Lime Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18412, - "minStateId": 18409, - "maxStateId": 18424, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1131 - ], - "boundingBox": "block" - }, - { - "id": 809, - "name": "pink_candle", - "displayName": "Pink Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18428, - "minStateId": 18425, - "maxStateId": 18440, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1132 - ], - "boundingBox": "block" - }, - { - "id": 810, - "name": "gray_candle", - "displayName": "Gray Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18444, - "minStateId": 18441, - "maxStateId": 18456, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1133 - ], - "boundingBox": "block" - }, - { - "id": 811, - "name": "light_gray_candle", - "displayName": "Light Gray Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18460, - "minStateId": 18457, - "maxStateId": 18472, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1134 - ], - "boundingBox": "block" - }, - { - "id": 812, - "name": "cyan_candle", - "displayName": "Cyan Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18476, - "minStateId": 18473, - "maxStateId": 18488, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1135 - ], - "boundingBox": "block" - }, - { - "id": 813, - "name": "purple_candle", - "displayName": "Purple Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18492, - "minStateId": 18489, - "maxStateId": 18504, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1136 - ], - "boundingBox": "block" - }, - { - "id": 814, - "name": "blue_candle", - "displayName": "Blue Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18508, - "minStateId": 18505, - "maxStateId": 18520, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1137 - ], - "boundingBox": "block" - }, - { - "id": 815, - "name": "brown_candle", - "displayName": "Brown Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18524, - "minStateId": 18521, - "maxStateId": 18536, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1138 - ], - "boundingBox": "block" - }, - { - "id": 816, - "name": "green_candle", - "displayName": "Green Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18540, - "minStateId": 18537, - "maxStateId": 18552, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1139 - ], - "boundingBox": "block" - }, - { - "id": 817, - "name": "red_candle", - "displayName": "Red Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18556, - "minStateId": 18553, - "maxStateId": 18568, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1140 - ], - "boundingBox": "block" - }, - { - "id": 818, - "name": "black_candle", - "displayName": "Black Candle", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18572, - "minStateId": 18569, - "maxStateId": 18584, - "states": [ - { - "name": "candles", - "type": "int", - "num_values": 4, - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1141 - ], - "boundingBox": "block" - }, - { - "id": 819, - "name": "candle_cake", - "displayName": "Cake with Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18586, - "minStateId": 18585, - "maxStateId": 18586, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1125 - ], - "boundingBox": "block" - }, - { - "id": 820, - "name": "white_candle_cake", - "displayName": "Cake with White Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18588, - "minStateId": 18587, - "maxStateId": 18588, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1126 - ], - "boundingBox": "block" - }, - { - "id": 821, - "name": "orange_candle_cake", - "displayName": "Cake with Orange Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18590, - "minStateId": 18589, - "maxStateId": 18590, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1127 - ], - "boundingBox": "block" - }, - { - "id": 822, - "name": "magenta_candle_cake", - "displayName": "Cake with Magenta Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18592, - "minStateId": 18591, - "maxStateId": 18592, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1128 - ], - "boundingBox": "block" - }, - { - "id": 823, - "name": "light_blue_candle_cake", - "displayName": "Cake with Light Blue Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18594, - "minStateId": 18593, - "maxStateId": 18594, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1129 - ], - "boundingBox": "block" - }, - { - "id": 824, - "name": "yellow_candle_cake", - "displayName": "Cake with Yellow Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18596, - "minStateId": 18595, - "maxStateId": 18596, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1130 - ], - "boundingBox": "block" - }, - { - "id": 825, - "name": "lime_candle_cake", - "displayName": "Cake with Lime Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18598, - "minStateId": 18597, - "maxStateId": 18598, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1131 - ], - "boundingBox": "block" - }, - { - "id": 826, - "name": "pink_candle_cake", - "displayName": "Cake with Pink Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18600, - "minStateId": 18599, - "maxStateId": 18600, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1132 - ], - "boundingBox": "block" - }, - { - "id": 827, - "name": "gray_candle_cake", - "displayName": "Cake with Gray Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18602, - "minStateId": 18601, - "maxStateId": 18602, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1133 - ], - "boundingBox": "block" - }, - { - "id": 828, - "name": "light_gray_candle_cake", - "displayName": "Cake with Light Gray Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18604, - "minStateId": 18603, - "maxStateId": 18604, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1134 - ], - "boundingBox": "block" - }, - { - "id": 829, - "name": "cyan_candle_cake", - "displayName": "Cake with Cyan Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18606, - "minStateId": 18605, - "maxStateId": 18606, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1135 - ], - "boundingBox": "block" - }, - { - "id": 830, - "name": "purple_candle_cake", - "displayName": "Cake with Purple Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18608, - "minStateId": 18607, - "maxStateId": 18608, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1136 - ], - "boundingBox": "block" - }, - { - "id": 831, - "name": "blue_candle_cake", - "displayName": "Cake with Blue Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18610, - "minStateId": 18609, - "maxStateId": 18610, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1137 - ], - "boundingBox": "block" - }, - { - "id": 832, - "name": "brown_candle_cake", - "displayName": "Cake with Brown Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18612, - "minStateId": 18611, - "maxStateId": 18612, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1138 - ], - "boundingBox": "block" - }, - { - "id": 833, - "name": "green_candle_cake", - "displayName": "Cake with Green Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18614, - "minStateId": 18613, - "maxStateId": 18614, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1139 - ], - "boundingBox": "block" - }, - { - "id": 834, - "name": "red_candle_cake", - "displayName": "Cake with Red Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18616, - "minStateId": 18615, - "maxStateId": 18616, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1140 - ], - "boundingBox": "block" - }, - { - "id": 835, - "name": "black_candle_cake", - "displayName": "Cake with Black Candle", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18618, - "minStateId": 18617, - "maxStateId": 18618, - "states": [ - { - "name": "lit", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1141 - ], - "boundingBox": "block" - }, - { - "id": 836, - "name": "amethyst_block", - "displayName": "Block of Amethyst", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18619, - "minStateId": 18619, - "maxStateId": 18619, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 66 - ], - "boundingBox": "block" - }, - { - "id": 837, - "name": "budding_amethyst", - "displayName": "Budding Amethyst", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18620, - "minStateId": 18620, - "maxStateId": 18620, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [], - "boundingBox": "block" - }, - { - "id": 838, - "name": "amethyst_cluster", - "displayName": "Amethyst Cluster", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 5, - "filterLight": 0, - "defaultState": 18630, - "minStateId": 18621, - "maxStateId": 18632, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 726 - ], - "boundingBox": "block" - }, - { - "id": 839, - "name": "large_amethyst_bud", - "displayName": "Large Amethyst Bud", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 4, - "filterLight": 0, - "defaultState": 18642, - "minStateId": 18633, - "maxStateId": 18644, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 840, - "name": "medium_amethyst_bud", - "displayName": "Medium Amethyst Bud", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 2, - "filterLight": 0, - "defaultState": 18654, - "minStateId": 18645, - "maxStateId": 18656, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 841, - "name": "small_amethyst_bud", - "displayName": "Small Amethyst Bud", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 1, - "filterLight": 0, - "defaultState": 18666, - "minStateId": 18657, - "maxStateId": 18668, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 842, - "name": "tuff", - "displayName": "Tuff", - "hardness": 1.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18669, - "minStateId": 18669, - "maxStateId": 18669, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 12 - ], - "boundingBox": "block" - }, - { - "id": 843, - "name": "calcite", - "displayName": "Calcite", - "hardness": 0.75, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18670, - "minStateId": 18670, - "maxStateId": 18670, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 11 - ], - "boundingBox": "block" - }, - { - "id": 844, - "name": "tinted_glass", - "displayName": "Tinted Glass", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18671, - "minStateId": 18671, - "maxStateId": 18671, - "states": [], - "drops": [ - 154 - ], - "boundingBox": "block" - }, - { - "id": 845, - "name": "powder_snow", - "displayName": "Powder Snow", - "hardness": 0.25, - "resistance": 0.25, - "stackSize": 1, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 1, - "defaultState": 18672, - "minStateId": 18672, - "maxStateId": 18672, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 846, - "name": "sculk_sensor", - "displayName": "Sculk Sensor", - "hardness": 1.5, - "resistance": 1.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 1, - "filterLight": 0, - "defaultState": 18674, - "minStateId": 18673, - "maxStateId": 18768, - "states": [ - { - "name": "power", - "type": "int", - "num_values": 16, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - { - "name": "sculk_sensor_phase", - "type": "enum", - "num_values": 3, - "values": [ - "inactive", - "active", - "cooldown" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 847, - "name": "sculk", - "displayName": "Sculk", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18769, - "minStateId": 18769, - "maxStateId": 18769, - "states": [], - "drops": [], - "boundingBox": "block" - }, - { - "id": 848, - "name": "sculk_vein", - "displayName": "Sculk Vein", - "hardness": 0.2, - "resistance": 0.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": true, - "emitLight": 0, - "filterLight": 1, - "defaultState": 18897, - "minStateId": 18770, - "maxStateId": 18897, - "states": [ - { - "name": "down", - "type": "bool", - "num_values": 2 - }, - { - "name": "east", - "type": "bool", - "num_values": 2 - }, - { - "name": "north", - "type": "bool", - "num_values": 2 - }, - { - "name": "south", - "type": "bool", - "num_values": 2 - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 849, - "name": "sculk_catalyst", - "displayName": "Sculk Catalyst", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 6, - "filterLight": 15, - "defaultState": 18899, - "minStateId": 18898, - "maxStateId": 18899, - "states": [ - { - "name": "bloom", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 850, - "name": "sculk_shrieker", - "displayName": "Sculk Shrieker", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 1, - "defaultState": 18907, - "minStateId": 18900, - "maxStateId": 18907, - "states": [ - { - "name": "can_summon", - "type": "bool", - "num_values": 2 - }, - { - "name": "shrieking", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 851, - "name": "oxidized_copper", - "displayName": "Oxidized Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18908, - "minStateId": 18908, - "maxStateId": 18908, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 75 - ], - "boundingBox": "block" - }, - { - "id": 852, - "name": "weathered_copper", - "displayName": "Weathered Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18909, - "minStateId": 18909, - "maxStateId": 18909, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 74 - ], - "boundingBox": "block" - }, - { - "id": 853, - "name": "exposed_copper", - "displayName": "Exposed Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18910, - "minStateId": 18910, - "maxStateId": 18910, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 73 - ], - "boundingBox": "block" - }, - { - "id": 854, - "name": "copper_block", - "displayName": "Block of Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18911, - "minStateId": 18911, - "maxStateId": 18911, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 69 - ], - "boundingBox": "block" - }, - { - "id": 855, - "name": "copper_ore", - "displayName": "Copper Ore", - "hardness": 3.0, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18912, - "minStateId": 18912, - "maxStateId": 18912, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 729 - ], - "boundingBox": "block" - }, - { - "id": 856, - "name": "deepslate_copper_ore", - "displayName": "Deepslate Copper Ore", - "hardness": 4.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18913, - "minStateId": 18913, - "maxStateId": 18913, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 729 - ], - "boundingBox": "block" - }, - { - "id": 857, - "name": "oxidized_cut_copper", - "displayName": "Oxidized Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18914, - "minStateId": 18914, - "maxStateId": 18914, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 79 - ], - "boundingBox": "block" - }, - { - "id": 858, - "name": "weathered_cut_copper", - "displayName": "Weathered Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18915, - "minStateId": 18915, - "maxStateId": 18915, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 78 - ], - "boundingBox": "block" - }, - { - "id": 859, - "name": "exposed_cut_copper", - "displayName": "Exposed Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18916, - "minStateId": 18916, - "maxStateId": 18916, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 77 - ], - "boundingBox": "block" - }, - { - "id": 860, - "name": "cut_copper", - "displayName": "Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 18917, - "minStateId": 18917, - "maxStateId": 18917, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 76 - ], - "boundingBox": "block" - }, - { - "id": 861, - "name": "oxidized_cut_copper_stairs", - "displayName": "Oxidized Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 18929, - "minStateId": 18918, - "maxStateId": 18997, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 83 - ], - "boundingBox": "block" - }, - { - "id": 862, - "name": "weathered_cut_copper_stairs", - "displayName": "Weathered Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19009, - "minStateId": 18998, - "maxStateId": 19077, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 82 - ], - "boundingBox": "block" - }, - { - "id": 863, - "name": "exposed_cut_copper_stairs", - "displayName": "Exposed Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19089, - "minStateId": 19078, - "maxStateId": 19157, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 81 - ], - "boundingBox": "block" - }, - { - "id": 864, - "name": "cut_copper_stairs", - "displayName": "Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19169, - "minStateId": 19158, - "maxStateId": 19237, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 80 - ], - "boundingBox": "block" - }, - { - "id": 865, - "name": "oxidized_cut_copper_slab", - "displayName": "Oxidized Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19241, - "minStateId": 19238, - "maxStateId": 19243, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 87 - ], - "boundingBox": "block" - }, - { - "id": 866, - "name": "weathered_cut_copper_slab", - "displayName": "Weathered Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19247, - "minStateId": 19244, - "maxStateId": 19249, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 86 - ], - "boundingBox": "block" - }, - { - "id": 867, - "name": "exposed_cut_copper_slab", - "displayName": "Exposed Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19253, - "minStateId": 19250, - "maxStateId": 19255, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 85 - ], - "boundingBox": "block" - }, - { - "id": 868, - "name": "cut_copper_slab", - "displayName": "Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19259, - "minStateId": 19256, - "maxStateId": 19261, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 84 - ], - "boundingBox": "block" - }, - { - "id": 869, - "name": "waxed_copper_block", - "displayName": "Waxed Block of Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19262, - "minStateId": 19262, - "maxStateId": 19262, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 88 - ], - "boundingBox": "block" - }, - { - "id": 870, - "name": "waxed_weathered_copper", - "displayName": "Waxed Weathered Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19263, - "minStateId": 19263, - "maxStateId": 19263, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 90 - ], - "boundingBox": "block" - }, - { - "id": 871, - "name": "waxed_exposed_copper", - "displayName": "Waxed Exposed Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19264, - "minStateId": 19264, - "maxStateId": 19264, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 89 - ], - "boundingBox": "block" - }, - { - "id": 872, - "name": "waxed_oxidized_copper", - "displayName": "Waxed Oxidized Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19265, - "minStateId": 19265, - "maxStateId": 19265, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 91 - ], - "boundingBox": "block" - }, - { - "id": 873, - "name": "waxed_oxidized_cut_copper", - "displayName": "Waxed Oxidized Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19266, - "minStateId": 19266, - "maxStateId": 19266, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 95 - ], - "boundingBox": "block" - }, - { - "id": 874, - "name": "waxed_weathered_cut_copper", - "displayName": "Waxed Weathered Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19267, - "minStateId": 19267, - "maxStateId": 19267, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 94 - ], - "boundingBox": "block" - }, - { - "id": 875, - "name": "waxed_exposed_cut_copper", - "displayName": "Waxed Exposed Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19268, - "minStateId": 19268, - "maxStateId": 19268, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 93 - ], - "boundingBox": "block" - }, - { - "id": 876, - "name": "waxed_cut_copper", - "displayName": "Waxed Cut Copper", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19269, - "minStateId": 19269, - "maxStateId": 19269, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 92 - ], - "boundingBox": "block" - }, - { - "id": 877, - "name": "waxed_oxidized_cut_copper_stairs", - "displayName": "Waxed Oxidized Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19281, - "minStateId": 19270, - "maxStateId": 19349, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 99 - ], - "boundingBox": "block" - }, - { - "id": 878, - "name": "waxed_weathered_cut_copper_stairs", - "displayName": "Waxed Weathered Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19361, - "minStateId": 19350, - "maxStateId": 19429, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 98 - ], - "boundingBox": "block" - }, - { - "id": 879, - "name": "waxed_exposed_cut_copper_stairs", - "displayName": "Waxed Exposed Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19441, - "minStateId": 19430, - "maxStateId": 19509, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 97 - ], - "boundingBox": "block" - }, - { - "id": 880, - "name": "waxed_cut_copper_stairs", - "displayName": "Waxed Cut Copper Stairs", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19521, - "minStateId": 19510, - "maxStateId": 19589, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 96 - ], - "boundingBox": "block" - }, - { - "id": 881, - "name": "waxed_oxidized_cut_copper_slab", - "displayName": "Waxed Oxidized Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19593, - "minStateId": 19590, - "maxStateId": 19595, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 103 - ], - "boundingBox": "block" - }, - { - "id": 882, - "name": "waxed_weathered_cut_copper_slab", - "displayName": "Waxed Weathered Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19599, - "minStateId": 19596, - "maxStateId": 19601, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 102 - ], - "boundingBox": "block" - }, - { - "id": 883, - "name": "waxed_exposed_cut_copper_slab", - "displayName": "Waxed Exposed Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19605, - "minStateId": 19602, - "maxStateId": 19607, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 101 - ], - "boundingBox": "block" - }, - { - "id": 884, - "name": "waxed_cut_copper_slab", - "displayName": "Waxed Cut Copper Slab", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19611, - "minStateId": 19608, - "maxStateId": 19613, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 100 - ], - "boundingBox": "block" - }, - { - "id": 885, - "name": "lightning_rod", - "displayName": "Lightning Rod", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19633, - "minStateId": 19614, - "maxStateId": 19637, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 6, - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "powered", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 624 - ], - "boundingBox": "block" - }, - { - "id": 886, - "name": "pointed_dripstone", - "displayName": "Pointed Dripstone", - "hardness": 1.5, - "resistance": 3.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19643, - "minStateId": 19638, - "maxStateId": 19657, - "states": [ - { - "name": "thickness", - "type": "enum", - "num_values": 5, - "values": [ - "tip_merge", - "tip", - "frustum", - "middle", - "base" - ] - }, - { - "name": "vertical_direction", - "type": "enum", - "num_values": 2, - "values": [ - "up", - "down" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 1146 - ], - "boundingBox": "block" - }, - { - "id": 887, - "name": "dripstone_block", - "displayName": "Dripstone Block", - "hardness": 1.5, - "resistance": 1.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19658, - "minStateId": 19658, - "maxStateId": 19658, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 13 - ], - "boundingBox": "block" - }, - { - "id": 888, - "name": "cave_vines", - "displayName": "Cave Vines", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19660, - "minStateId": 19659, - "maxStateId": 19710, - "states": [ - { - "name": "age", - "type": "int", - "num_values": 26, - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - { - "name": "berries", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 889, - "name": "cave_vines_plant", - "displayName": "Cave Vines Plant", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19712, - "minStateId": 19711, - "maxStateId": 19712, - "states": [ - { - "name": "berries", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 890, - "name": "spore_blossom", - "displayName": "Spore Blossom", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19713, - "minStateId": 19713, - "maxStateId": 19713, - "states": [], - "drops": [ - 196 - ], - "boundingBox": "empty" - }, - { - "id": 891, - "name": "azalea", - "displayName": "Azalea", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19714, - "minStateId": 19714, - "maxStateId": 19714, - "states": [], - "drops": [ - 162 - ], - "boundingBox": "block" - }, - { - "id": 892, - "name": "flowering_azalea", - "displayName": "Flowering Azalea", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19715, - "minStateId": 19715, - "maxStateId": 19715, - "states": [], - "drops": [ - 163 - ], - "boundingBox": "block" - }, - { - "id": 893, - "name": "moss_carpet", - "displayName": "Moss Carpet", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "plant", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19716, - "minStateId": 19716, - "maxStateId": 19716, - "states": [], - "drops": [ - 208 - ], - "boundingBox": "block" - }, - { - "id": 894, - "name": "moss_block", - "displayName": "Moss Block", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "mineable/hoe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19717, - "minStateId": 19717, - "maxStateId": 19717, - "states": [], - "drops": [ - 209 - ], - "boundingBox": "block" - }, - { - "id": 895, - "name": "big_dripleaf", - "displayName": "Big Dripleaf", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19719, - "minStateId": 19718, - "maxStateId": 19749, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "tilt", - "type": "enum", - "num_values": 4, - "values": [ - "none", - "unstable", - "partial", - "full" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 211 - ], - "boundingBox": "block" - }, - { - "id": 896, - "name": "big_dripleaf_stem", - "displayName": "Big Dripleaf Stem", - "hardness": 0.1, - "resistance": 0.1, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19751, - "minStateId": 19750, - "maxStateId": 19757, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [ - 211 - ], - "boundingBox": "empty" - }, - { - "id": 897, - "name": "small_dripleaf", - "displayName": "Small Dripleaf", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19761, - "minStateId": 19758, - "maxStateId": 19773, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "upper", - "lower" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 898, - "name": "hanging_roots", - "displayName": "Hanging Roots", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19775, - "minStateId": 19774, - "maxStateId": 19775, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 899, - "name": "rooted_dirt", - "displayName": "Rooted Dirt", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19776, - "minStateId": 19776, - "maxStateId": 19776, - "states": [], - "drops": [ - 18 - ], - "boundingBox": "block" - }, - { - "id": 900, - "name": "mud", - "displayName": "Mud", - "hardness": 0.5, - "resistance": 0.5, - "stackSize": 64, - "diggable": true, - "material": "mineable/shovel", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19777, - "minStateId": 19777, - "maxStateId": 19777, - "states": [], - "drops": [ - 19 - ], - "boundingBox": "block" - }, - { - "id": 901, - "name": "deepslate", - "displayName": "Deepslate", - "hardness": 3.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19779, - "minStateId": 19778, - "maxStateId": 19780, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 9 - ], - "boundingBox": "block" - }, - { - "id": 902, - "name": "cobbled_deepslate", - "displayName": "Cobbled Deepslate", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 19781, - "minStateId": 19781, - "maxStateId": 19781, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 9 - ], - "boundingBox": "block" - }, - { - "id": 903, - "name": "cobbled_deepslate_stairs", - "displayName": "Cobbled Deepslate Stairs", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19793, - "minStateId": 19782, - "maxStateId": 19861, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 586 - ], - "boundingBox": "block" - }, - { - "id": 904, - "name": "cobbled_deepslate_slab", - "displayName": "Cobbled Deepslate Slab", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19865, - "minStateId": 19862, - "maxStateId": 19867, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 603 - ], - "boundingBox": "block" - }, - { - "id": 905, - "name": "cobbled_deepslate_wall", - "displayName": "Cobbled Deepslate Wall", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 19871, - "minStateId": 19868, - "maxStateId": 20191, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 367 - ], - "boundingBox": "block" - }, - { - "id": 906, - "name": "polished_deepslate", - "displayName": "Polished Deepslate", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 20192, - "minStateId": 20192, - "maxStateId": 20192, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 10 - ], - "boundingBox": "block" - }, - { - "id": 907, - "name": "polished_deepslate_stairs", - "displayName": "Polished Deepslate Stairs", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 20204, - "minStateId": 20193, - "maxStateId": 20272, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 587 - ], - "boundingBox": "block" - }, - { - "id": 908, - "name": "polished_deepslate_slab", - "displayName": "Polished Deepslate Slab", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 20276, - "minStateId": 20273, - "maxStateId": 20278, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 604 - ], - "boundingBox": "block" - }, - { - "id": 909, - "name": "polished_deepslate_wall", - "displayName": "Polished Deepslate Wall", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 20282, - "minStateId": 20279, - "maxStateId": 20602, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 368 - ], - "boundingBox": "block" - }, - { - "id": 910, - "name": "deepslate_tiles", - "displayName": "Deepslate Tiles", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 20603, - "minStateId": 20603, - "maxStateId": 20603, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 303 - ], - "boundingBox": "block" - }, - { - "id": 911, - "name": "deepslate_tile_stairs", - "displayName": "Deepslate Tile Stairs", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 20615, - "minStateId": 20604, - "maxStateId": 20683, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 589 - ], - "boundingBox": "block" - }, - { - "id": 912, - "name": "deepslate_tile_slab", - "displayName": "Deepslate Tile Slab", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 20687, - "minStateId": 20684, - "maxStateId": 20689, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 606 - ], - "boundingBox": "block" - }, - { - "id": 913, - "name": "deepslate_tile_wall", - "displayName": "Deepslate Tile Wall", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 20693, - "minStateId": 20690, - "maxStateId": 21013, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 370 - ], - "boundingBox": "block" - }, - { - "id": 914, - "name": "deepslate_bricks", - "displayName": "Deepslate Bricks", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21014, - "minStateId": 21014, - "maxStateId": 21014, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 301 - ], - "boundingBox": "block" - }, - { - "id": 915, - "name": "deepslate_brick_stairs", - "displayName": "Deepslate Brick Stairs", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 21026, - "minStateId": 21015, - "maxStateId": 21094, - "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "type": "enum", - "num_values": 2, - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "type": "enum", - "num_values": 5, - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 588 - ], - "boundingBox": "block" - }, - { - "id": 916, - "name": "deepslate_brick_slab", - "displayName": "Deepslate Brick Slab", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 21098, - "minStateId": 21095, - "maxStateId": 21100, - "states": [ - { - "name": "type", - "type": "enum", - "num_values": 3, - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 605 - ], - "boundingBox": "block" - }, - { - "id": 917, - "name": "deepslate_brick_wall", - "displayName": "Deepslate Brick Wall", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 0, - "defaultState": 21104, - "minStateId": 21101, - "maxStateId": 21424, - "states": [ - { - "name": "east", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "type": "bool", - "num_values": 2 - }, - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - }, - { - "name": "west", - "type": "enum", - "num_values": 3, - "values": [ - "none", - "low", - "tall" - ] - } - ], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 369 - ], - "boundingBox": "block" - }, - { - "id": 918, - "name": "chiseled_deepslate", - "displayName": "Chiseled Deepslate", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21425, - "minStateId": 21425, - "maxStateId": 21425, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 305 - ], - "boundingBox": "block" - }, - { - "id": 919, - "name": "cracked_deepslate_bricks", - "displayName": "Cracked Deepslate Bricks", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21426, - "minStateId": 21426, - "maxStateId": 21426, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 302 - ], - "boundingBox": "block" - }, - { - "id": 920, - "name": "cracked_deepslate_tiles", - "displayName": "Cracked Deepslate Tiles", - "hardness": 3.5, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21427, - "minStateId": 21427, - "maxStateId": 21427, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 304 - ], - "boundingBox": "block" - }, - { - "id": 921, - "name": "infested_deepslate", - "displayName": "Infested Deepslate", - "hardness": 1.5, - "resistance": 0.75, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21429, - "minStateId": 21428, - "maxStateId": 21430, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [], - "boundingBox": "block" - }, - { - "id": 922, - "name": "smooth_basalt", - "displayName": "Smooth Basalt", - "hardness": 1.25, - "resistance": 4.2, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21431, - "minStateId": 21431, - "maxStateId": 21431, - "states": [], - "harvestTools": { - "737": true, - "742": true, - "747": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 285 - ], - "boundingBox": "block" - }, - { - "id": 923, - "name": "raw_iron_block", - "displayName": "Block of Raw Iron", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21432, - "minStateId": 21432, - "maxStateId": 21432, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 63 - ], - "boundingBox": "block" - }, - { - "id": 924, - "name": "raw_copper_block", - "displayName": "Block of Raw Copper", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21433, - "minStateId": 21433, - "maxStateId": 21433, - "states": [], - "harvestTools": { - "742": true, - "752": true, - "757": true, - "762": true - }, - "drops": [ - 64 - ], - "boundingBox": "block" - }, - { - "id": 925, - "name": "raw_gold_block", - "displayName": "Block of Raw Gold", - "hardness": 5.0, - "resistance": 6.0, - "stackSize": 64, - "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21434, - "minStateId": 21434, - "maxStateId": 21434, - "states": [], - "harvestTools": { - "752": true, - "757": true, - "762": true - }, - "drops": [ - 65 - ], - "boundingBox": "block" - }, - { - "id": 926, - "name": "potted_azalea_bush", - "displayName": "Potted Azalea", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 21435, - "minStateId": 21435, - "maxStateId": 21435, - "states": [], - "drops": [ - 989, - 162 - ], - "boundingBox": "block" - }, - { - "id": 927, - "name": "potted_flowering_azalea_bush", - "displayName": "Potted Flowering Azalea", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 21436, - "minStateId": 21436, - "maxStateId": 21436, - "states": [], - "drops": [ - 989, - 163 - ], - "boundingBox": "block" - }, - { - "id": 928, - "name": "ochre_froglight", - "displayName": "Ochre Froglight", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 21438, - "minStateId": 21437, - "maxStateId": 21439, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 1147 - ], - "boundingBox": "block" - }, - { - "id": 929, - "name": "verdant_froglight", - "displayName": "Verdant Froglight", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 21441, - "minStateId": 21440, - "maxStateId": 21442, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 1148 - ], - "boundingBox": "block" - }, - { - "id": 930, - "name": "pearlescent_froglight", - "displayName": "Pearlescent Froglight", - "hardness": 0.3, - "resistance": 0.3, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 15, - "filterLight": 15, - "defaultState": 21444, - "minStateId": 21443, - "maxStateId": 21445, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], - "drops": [ - 1149 - ], - "boundingBox": "block" - }, - { - "id": 931, - "name": "frogspawn", - "displayName": "Frogspawn", - "hardness": 0.0, - "resistance": 0.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": true, - "emitLight": 0, - "filterLight": 0, - "defaultState": 21446, - "minStateId": 21446, - "maxStateId": 21446, - "states": [], - "drops": [], - "boundingBox": "empty" - }, - { - "id": 932, - "name": "reinforced_deepslate", - "displayName": "Reinforced Deepslate", - "hardness": 55.0, - "resistance": 1200.0, - "stackSize": 64, - "diggable": true, - "material": "default", - "transparent": false, - "emitLight": 0, - "filterLight": 15, - "defaultState": 21447, - "minStateId": 21447, - "maxStateId": 21447, - "states": [], - "drops": [], - "boundingBox": "block" - } -] \ No newline at end of file diff --git a/data/entities.json b/data/entities.json deleted file mode 100644 index f9d4e40..0000000 --- a/data/entities.json +++ /dev/null @@ -1,1182 +0,0 @@ -[ - { - "id": 0, - "internalId": 0, - "name": "allay", - "displayName": "Allay", - "width": 0.35, - "height": 0.6, - "type": "mob", - "category": "Passive mobs" - }, - { - "id": 1, - "internalId": 1, - "name": "area_effect_cloud", - "displayName": "Area Effect Cloud", - "width": 6.0, - "height": 0.5, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 2, - "internalId": 2, - "name": "armor_stand", - "displayName": "Armor Stand", - "width": 0.5, - "height": 1.975, - "type": "living", - "category": "Immobile" - }, - { - "id": 3, - "internalId": 3, - "name": "arrow", - "displayName": "Arrow", - "width": 0.5, - "height": 0.5, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 4, - "internalId": 4, - "name": "axolotl", - "displayName": "Axolotl", - "width": 0.75, - "height": 0.42, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 5, - "internalId": 5, - "name": "bat", - "displayName": "Bat", - "width": 0.5, - "height": 0.9, - "type": "ambient", - "category": "Passive mobs" - }, - { - "id": 6, - "internalId": 6, - "name": "bee", - "displayName": "Bee", - "width": 0.7, - "height": 0.6, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 7, - "internalId": 7, - "name": "blaze", - "displayName": "Blaze", - "width": 0.6, - "height": 1.8, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 8, - "internalId": 8, - "name": "boat", - "displayName": "Boat", - "width": 1.375, - "height": 0.5625, - "type": "other", - "category": "Vehicles" - }, - { - "id": 9, - "internalId": 9, - "name": "chest_boat", - "displayName": "Boat with Chest", - "width": 1.375, - "height": 0.5625, - "type": "other", - "category": "Vehicles" - }, - { - "id": 10, - "internalId": 10, - "name": "cat", - "displayName": "Cat", - "width": 0.6, - "height": 0.7, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 11, - "internalId": 11, - "name": "cave_spider", - "displayName": "Cave Spider", - "width": 0.7, - "height": 0.5, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 12, - "internalId": 12, - "name": "chicken", - "displayName": "Chicken", - "width": 0.4, - "height": 0.7, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 13, - "internalId": 13, - "name": "cod", - "displayName": "Cod", - "width": 0.5, - "height": 0.3, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 14, - "internalId": 14, - "name": "cow", - "displayName": "Cow", - "width": 0.9, - "height": 1.4, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 15, - "internalId": 15, - "name": "creeper", - "displayName": "Creeper", - "width": 0.6, - "height": 1.7, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 16, - "internalId": 16, - "name": "dolphin", - "displayName": "Dolphin", - "width": 0.9, - "height": 0.6, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 17, - "internalId": 17, - "name": "donkey", - "displayName": "Donkey", - "width": 1.3964844, - "height": 1.5, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 18, - "internalId": 18, - "name": "dragon_fireball", - "displayName": "Dragon Fireball", - "width": 1.0, - "height": 1.0, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 19, - "internalId": 19, - "name": "drowned", - "displayName": "Drowned", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 20, - "internalId": 20, - "name": "elder_guardian", - "displayName": "Elder Guardian", - "width": 1.9975, - "height": 1.9975, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 21, - "internalId": 21, - "name": "end_crystal", - "displayName": "End Crystal", - "width": 2.0, - "height": 2.0, - "type": "other", - "category": "Immobile" - }, - { - "id": 22, - "internalId": 22, - "name": "ender_dragon", - "displayName": "Ender Dragon", - "width": 16.0, - "height": 8.0, - "type": "mob", - "category": "Hostile mobs" - }, - { - "id": 23, - "internalId": 23, - "name": "enderman", - "displayName": "Enderman", - "width": 0.6, - "height": 2.9, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 24, - "internalId": 24, - "name": "endermite", - "displayName": "Endermite", - "width": 0.4, - "height": 0.3, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 25, - "internalId": 25, - "name": "evoker", - "displayName": "Evoker", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 26, - "internalId": 26, - "name": "evoker_fangs", - "displayName": "Evoker Fangs", - "width": 0.5, - "height": 0.8, - "type": "other", - "category": "Hostile mobs" - }, - { - "id": 27, - "internalId": 27, - "name": "experience_orb", - "displayName": "Experience Orb", - "width": 0.5, - "height": 0.5, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 28, - "internalId": 28, - "name": "eye_of_ender", - "displayName": "Eye of Ender", - "width": 0.25, - "height": 0.25, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 29, - "internalId": 29, - "name": "falling_block", - "displayName": "Falling Block", - "width": 0.98, - "height": 0.98, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 30, - "internalId": 30, - "name": "firework_rocket", - "displayName": "Firework Rocket", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 31, - "internalId": 31, - "name": "fox", - "displayName": "Fox", - "width": 0.6, - "height": 0.7, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 32, - "internalId": 32, - "name": "frog", - "displayName": "Frog", - "width": 0.5, - "height": 0.5, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 33, - "internalId": 33, - "name": "ghast", - "displayName": "Ghast", - "width": 4.0, - "height": 4.0, - "type": "mob", - "category": "Hostile mobs" - }, - { - "id": 34, - "internalId": 34, - "name": "giant", - "displayName": "Giant", - "width": 3.6, - "height": 12.0, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 35, - "internalId": 35, - "name": "glow_item_frame", - "displayName": "Glow Item Frame", - "width": 0.5, - "height": 0.5, - "type": "other", - "category": "Immobile" - }, - { - "id": 36, - "internalId": 36, - "name": "glow_squid", - "displayName": "Glow Squid", - "width": 0.8, - "height": 0.8, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 37, - "internalId": 37, - "name": "goat", - "displayName": "Goat", - "width": 0.9, - "height": 1.3, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 38, - "internalId": 38, - "name": "guardian", - "displayName": "Guardian", - "width": 0.85, - "height": 0.85, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 39, - "internalId": 39, - "name": "hoglin", - "displayName": "Hoglin", - "width": 1.3964844, - "height": 1.4, - "type": "animal", - "category": "Hostile mobs" - }, - { - "id": 40, - "internalId": 40, - "name": "horse", - "displayName": "Horse", - "width": 1.3964844, - "height": 1.6, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 41, - "internalId": 41, - "name": "husk", - "displayName": "Husk", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 42, - "internalId": 42, - "name": "illusioner", - "displayName": "Illusioner", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 43, - "internalId": 43, - "name": "iron_golem", - "displayName": "Iron Golem", - "width": 1.4, - "height": 2.7, - "type": "mob", - "category": "Passive mobs" - }, - { - "id": 44, - "internalId": 44, - "name": "item", - "displayName": "Item", - "width": 0.25, - "height": 0.25, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 45, - "internalId": 45, - "name": "item_frame", - "displayName": "Item Frame", - "width": 0.5, - "height": 0.5, - "type": "other", - "category": "Immobile" - }, - { - "id": 46, - "internalId": 46, - "name": "fireball", - "displayName": "Fireball", - "width": 1.0, - "height": 1.0, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 47, - "internalId": 47, - "name": "leash_knot", - "displayName": "Leash Knot", - "width": 0.375, - "height": 0.5, - "type": "other", - "category": "Immobile" - }, - { - "id": 48, - "internalId": 48, - "name": "lightning_bolt", - "displayName": "Lightning Bolt", - "width": 0.0, - "height": 0.0, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 49, - "internalId": 49, - "name": "llama", - "displayName": "Llama", - "width": 0.9, - "height": 1.87, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 50, - "internalId": 50, - "name": "llama_spit", - "displayName": "Llama Spit", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 51, - "internalId": 51, - "name": "magma_cube", - "displayName": "Magma Cube", - "width": 2.04, - "height": 2.04, - "type": "mob", - "category": "Hostile mobs" - }, - { - "id": 52, - "internalId": 52, - "name": "marker", - "displayName": "Marker", - "width": 0.0, - "height": 0.0, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 53, - "internalId": 53, - "name": "minecart", - "displayName": "Minecart", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 54, - "internalId": 54, - "name": "chest_minecart", - "displayName": "Minecart with Chest", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 55, - "internalId": 55, - "name": "command_block_minecart", - "displayName": "Minecart with Command Block", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 56, - "internalId": 56, - "name": "furnace_minecart", - "displayName": "Minecart with Furnace", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 57, - "internalId": 57, - "name": "hopper_minecart", - "displayName": "Minecart with Hopper", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 58, - "internalId": 58, - "name": "spawner_minecart", - "displayName": "Minecart with Spawner", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 59, - "internalId": 59, - "name": "tnt_minecart", - "displayName": "Minecart with TNT", - "width": 0.98, - "height": 0.7, - "type": "other", - "category": "Vehicles" - }, - { - "id": 60, - "internalId": 60, - "name": "mule", - "displayName": "Mule", - "width": 1.3964844, - "height": 1.6, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 61, - "internalId": 61, - "name": "mooshroom", - "displayName": "Mooshroom", - "width": 0.9, - "height": 1.4, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 62, - "internalId": 62, - "name": "ocelot", - "displayName": "Ocelot", - "width": 0.6, - "height": 0.7, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 63, - "internalId": 63, - "name": "painting", - "displayName": "Painting", - "width": 0.5, - "height": 0.5, - "type": "other", - "category": "Immobile" - }, - { - "id": 64, - "internalId": 64, - "name": "panda", - "displayName": "Panda", - "width": 1.3, - "height": 1.25, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 65, - "internalId": 65, - "name": "parrot", - "displayName": "Parrot", - "width": 0.5, - "height": 0.9, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 66, - "internalId": 66, - "name": "phantom", - "displayName": "Phantom", - "width": 0.9, - "height": 0.5, - "type": "mob", - "category": "Hostile mobs" - }, - { - "id": 67, - "internalId": 67, - "name": "pig", - "displayName": "Pig", - "width": 0.9, - "height": 0.9, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 68, - "internalId": 68, - "name": "piglin", - "displayName": "Piglin", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 69, - "internalId": 69, - "name": "piglin_brute", - "displayName": "Piglin Brute", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 70, - "internalId": 70, - "name": "pillager", - "displayName": "Pillager", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 71, - "internalId": 71, - "name": "polar_bear", - "displayName": "Polar Bear", - "width": 1.4, - "height": 1.4, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 72, - "internalId": 72, - "name": "tnt", - "displayName": "Primed TNT", - "width": 0.98, - "height": 0.98, - "type": "other", - "category": "UNKNOWN" - }, - { - "id": 73, - "internalId": 73, - "name": "pufferfish", - "displayName": "Pufferfish", - "width": 0.7, - "height": 0.7, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 74, - "internalId": 74, - "name": "rabbit", - "displayName": "Rabbit", - "width": 0.4, - "height": 0.5, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 75, - "internalId": 75, - "name": "ravager", - "displayName": "Ravager", - "width": 1.95, - "height": 2.2, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 76, - "internalId": 76, - "name": "salmon", - "displayName": "Salmon", - "width": 0.7, - "height": 0.4, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 77, - "internalId": 77, - "name": "sheep", - "displayName": "Sheep", - "width": 0.9, - "height": 1.3, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 78, - "internalId": 78, - "name": "shulker", - "displayName": "Shulker", - "width": 1.0, - "height": 1.0, - "type": "mob", - "category": "Hostile mobs" - }, - { - "id": 79, - "internalId": 79, - "name": "shulker_bullet", - "displayName": "Shulker Bullet", - "width": 0.3125, - "height": 0.3125, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 80, - "internalId": 80, - "name": "silverfish", - "displayName": "Silverfish", - "width": 0.4, - "height": 0.3, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 81, - "internalId": 81, - "name": "skeleton", - "displayName": "Skeleton", - "width": 0.6, - "height": 1.99, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 82, - "internalId": 82, - "name": "skeleton_horse", - "displayName": "Skeleton Horse", - "width": 1.3964844, - "height": 1.6, - "type": "animal", - "category": "Hostile mobs" - }, - { - "id": 83, - "internalId": 83, - "name": "slime", - "displayName": "Slime", - "width": 2.04, - "height": 2.04, - "type": "mob", - "category": "Hostile mobs" - }, - { - "id": 84, - "internalId": 84, - "name": "small_fireball", - "displayName": "Small Fireball", - "width": 0.3125, - "height": 0.3125, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 85, - "internalId": 85, - "name": "snow_golem", - "displayName": "Snow Golem", - "width": 0.7, - "height": 1.9, - "type": "mob", - "category": "Passive mobs" - }, - { - "id": 86, - "internalId": 86, - "name": "snowball", - "displayName": "Snowball", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 87, - "internalId": 87, - "name": "spectral_arrow", - "displayName": "Spectral Arrow", - "width": 0.5, - "height": 0.5, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 88, - "internalId": 88, - "name": "spider", - "displayName": "Spider", - "width": 1.4, - "height": 0.9, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 89, - "internalId": 89, - "name": "squid", - "displayName": "Squid", - "width": 0.8, - "height": 0.8, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 90, - "internalId": 90, - "name": "stray", - "displayName": "Stray", - "width": 0.6, - "height": 1.99, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 91, - "internalId": 91, - "name": "strider", - "displayName": "Strider", - "width": 0.9, - "height": 1.7, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 92, - "internalId": 92, - "name": "tadpole", - "displayName": "Tadpole", - "width": 0.4, - "height": 0.3, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 93, - "internalId": 93, - "name": "egg", - "displayName": "Thrown Egg", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 94, - "internalId": 94, - "name": "ender_pearl", - "displayName": "Thrown Ender Pearl", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 95, - "internalId": 95, - "name": "experience_bottle", - "displayName": "Thrown Bottle o' Enchanting", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 96, - "internalId": 96, - "name": "potion", - "displayName": "Potion", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 97, - "internalId": 97, - "name": "trident", - "displayName": "Trident", - "width": 0.5, - "height": 0.5, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 98, - "internalId": 98, - "name": "trader_llama", - "displayName": "Trader Llama", - "width": 0.9, - "height": 1.87, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 99, - "internalId": 99, - "name": "tropical_fish", - "displayName": "Tropical Fish", - "width": 0.5, - "height": 0.4, - "type": "water_creature", - "category": "Passive mobs" - }, - { - "id": 100, - "internalId": 100, - "name": "turtle", - "displayName": "Turtle", - "width": 1.2, - "height": 0.4, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 101, - "internalId": 101, - "name": "vex", - "displayName": "Vex", - "width": 0.4, - "height": 0.8, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 102, - "internalId": 102, - "name": "villager", - "displayName": "Villager", - "width": 0.6, - "height": 1.95, - "type": "passive", - "category": "Passive mobs" - }, - { - "id": 103, - "internalId": 103, - "name": "vindicator", - "displayName": "Vindicator", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 104, - "internalId": 104, - "name": "wandering_trader", - "displayName": "Wandering Trader", - "width": 0.6, - "height": 1.95, - "type": "passive", - "category": "Passive mobs" - }, - { - "id": 105, - "internalId": 105, - "name": "warden", - "displayName": "Warden", - "width": 0.9, - "height": 2.9, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 106, - "internalId": 106, - "name": "witch", - "displayName": "Witch", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 107, - "internalId": 107, - "name": "wither", - "displayName": "Wither", - "width": 0.9, - "height": 3.5, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 108, - "internalId": 108, - "name": "wither_skeleton", - "displayName": "Wither Skeleton", - "width": 0.7, - "height": 2.4, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 109, - "internalId": 109, - "name": "wither_skull", - "displayName": "Wither Skull", - "width": 0.3125, - "height": 0.3125, - "type": "projectile", - "category": "Projectiles" - }, - { - "id": 110, - "internalId": 110, - "name": "wolf", - "displayName": "Wolf", - "width": 0.6, - "height": 0.85, - "type": "animal", - "category": "Passive mobs" - }, - { - "id": 111, - "internalId": 111, - "name": "zoglin", - "displayName": "Zoglin", - "width": 1.3964844, - "height": 1.4, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 112, - "internalId": 112, - "name": "zombie", - "displayName": "Zombie", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 113, - "internalId": 113, - "name": "zombie_horse", - "displayName": "Zombie Horse", - "width": 1.3964844, - "height": 1.6, - "type": "animal", - "category": "Hostile mobs" - }, - { - "id": 114, - "internalId": 114, - "name": "zombie_villager", - "displayName": "Zombie Villager", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 115, - "internalId": 115, - "name": "zombified_piglin", - "displayName": "Zombified Piglin", - "width": 0.6, - "height": 1.95, - "type": "hostile", - "category": "Hostile mobs" - }, - { - "id": 116, - "internalId": 116, - "name": "player", - "displayName": "Player", - "width": 0.6, - "height": 1.8, - "type": "player", - "category": "UNKNOWN" - }, - { - "id": 117, - "internalId": 117, - "name": "fishing_bobber", - "displayName": "Fishing Bobber", - "width": 0.25, - "height": 0.25, - "type": "projectile", - "category": "Projectiles" - } -] \ No newline at end of file diff --git a/extracted/blocks.json b/extracted/blocks.json new file mode 100644 index 0000000..a3c1749 --- /dev/null +++ b/extracted/blocks.json @@ -0,0 +1,209412 @@ +{ + "collision_shapes": [ + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.1875, + "max_y": 0.5625, + "max_z": 0.1875 + }, + { + "min_x": 0.8125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 0.1875 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.5625, + "max_z": 0.1875 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.8125, + "max_x": 0.1875, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.8125, + "min_y": 0.0, + "min_z": 0.8125, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.8125, + "max_x": 0.8125, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 0.1875 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.8125, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.8125, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 0.8125 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.75, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.25, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.25 + }, + { + "min_x": 0.375, + "min_y": 0.375, + "min_z": 0.25, + "max_x": 0.625, + "max_y": 0.625, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.375, + "min_z": 0.25, + "max_x": 0.625, + "max_y": 0.625, + "max_z": 1.25 + }, + { + "min_x": 0.75, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.375, + "min_z": 0.375, + "max_x": 0.75, + "max_y": 0.625, + "max_z": 0.625 + }, + { + "min_x": -0.25, + "min_y": 0.375, + "min_z": 0.375, + "max_x": 0.75, + "max_y": 0.625, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.75, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.375, + "min_z": 0.0, + "max_x": 0.625, + "max_y": 0.625, + "max_z": 0.75 + }, + { + "min_x": 0.375, + "min_y": 0.375, + "min_z": -0.25, + "max_x": 0.625, + "max_y": 0.625, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.25, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.25, + "min_y": 0.375, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 0.625, + "max_z": 0.625 + }, + { + "min_x": 0.25, + "min_y": 0.375, + "min_z": 0.375, + "max_x": 1.25, + "max_y": 0.625, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.75, + "min_z": 0.0, + "max_x": 0.375, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.75, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.375 + }, + { + "min_x": 0.375, + "min_y": 0.75, + "min_z": 0.625, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.625, + "min_y": 0.75, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": -0.25, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.25, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.25, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.25, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.25, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.5, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.5, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.5, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5 + }, + { + "min_x": 0.5, + "min_y": 0.5, + "min_z": 0.5, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.5, + "min_y": 0.0, + "min_z": 0.5, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.5, + "max_x": 0.5, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.5, + "max_y": 1.0, + "max_z": 0.5 + }, + { + "min_x": 0.5, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 0.5, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.5, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 0.5, + "max_y": 1.0, + "max_z": 0.5 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.5, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.5, + "max_x": 0.5, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.5, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.5, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.875, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 1.0, + "max_y": 0.875, + "max_z": 0.9375 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.875, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.9375, + "max_y": 0.875, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.875, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.9375, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.1875, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.8125, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.8125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.1875 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.125, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.375, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.625, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.875, + "max_z": 1.0 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.9375, + "max_z": 0.9375 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 0.375 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.625, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.625, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 1.5, + "max_z": 0.625 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.5625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.6875, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.8125, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.5, + "max_z": 0.9375 + }, + { + "min_x": 0.0, + "min_y": 0.8125, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.1875, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.4375 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.5625, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.5625, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.0, + "min_y": 0.40625, + "min_z": 0.40625, + "max_x": 1.0, + "max_y": 0.59375, + "max_z": 0.59375 + }, + { + "min_x": 0.40625, + "min_y": 0.0, + "min_z": 0.40625, + "max_x": 0.59375, + "max_y": 1.0, + "max_z": 0.59375 + }, + { + "min_x": 0.40625, + "min_y": 0.40625, + "min_z": 0.0, + "max_x": 0.59375, + "max_y": 0.59375, + "max_z": 1.0 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.09375, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.125, + "max_z": 0.9375 + }, + { + "min_x": 0.4375, + "min_y": 0.125, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 0.875, + "max_z": 0.5625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 0.25 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.75, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.25, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.875, + "max_x": 0.25, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.75, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.75, + "min_y": 0.0, + "min_z": 0.875, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.875, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.25 + }, + { + "min_x": 0.875, + "min_y": 0.0, + "min_z": 0.75, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.875 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 0.25, + "max_z": 0.75 + }, + { + "min_x": 0.125, + "min_y": 0.1875, + "min_z": 0.125, + "max_x": 0.875, + "max_y": 0.25, + "max_z": 0.25 + }, + { + "min_x": 0.125, + "min_y": 0.1875, + "min_z": 0.75, + "max_x": 0.875, + "max_y": 0.25, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.25, + "min_y": 0.1875, + "min_z": 0.875, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.875, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.25, + "min_y": 0.8125, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 1.0, + "max_z": 0.9375 + }, + { + "min_x": 0.375, + "min_y": 0.4375, + "min_z": 0.0625, + "max_x": 0.625, + "max_y": 0.75, + "max_z": 0.3125 + }, + { + "min_x": 0.375, + "min_y": 0.4375, + "min_z": 0.6875, + "max_x": 0.625, + "max_y": 0.75, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.4375, + "min_z": 0.375, + "max_x": 0.3125, + "max_y": 0.75, + "max_z": 0.625 + }, + { + "min_x": 0.6875, + "min_y": 0.4375, + "min_z": 0.375, + "max_x": 0.9375, + "max_y": 0.75, + "max_z": 0.625 + }, + { + "min_x": 0.3125, + "min_y": 0.3125, + "min_z": 0.0625, + "max_x": 0.6875, + "max_y": 0.75, + "max_z": 0.4375 + }, + { + "min_x": 0.3125, + "min_y": 0.3125, + "min_z": 0.5625, + "max_x": 0.6875, + "max_y": 0.75, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.3125, + "min_z": 0.3125, + "max_x": 0.4375, + "max_y": 0.75, + "max_z": 0.6875 + }, + { + "min_x": 0.5625, + "min_y": 0.3125, + "min_z": 0.3125, + "max_x": 0.9375, + "max_y": 0.75, + "max_z": 0.6875 + }, + { + "min_x": 0.25, + "min_y": 0.1875, + "min_z": 0.0625, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 0.5625 + }, + { + "min_x": 0.25, + "min_y": 0.1875, + "min_z": 0.4375, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 0.9375 + }, + { + "min_x": 0.0625, + "min_y": 0.1875, + "min_z": 0.25, + "max_x": 0.5625, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.4375, + "min_y": 0.1875, + "min_z": 0.25, + "max_x": 0.9375, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 1.5, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 0.75, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 1.5, + "max_z": 0.3125 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.6875, + "max_x": 0.75, + "max_y": 1.5, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.75, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.6875, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 0.25 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 0.3125 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.6875, + "max_y": 1.5, + "max_z": 1.0 + }, + { + "min_x": 0.75, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.6875, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 1.0, + "max_y": 1.5, + "max_z": 0.6875 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.375, + "max_z": 0.6875 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.5, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.5, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 1.0 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 0.5 + }, + { + "min_x": 0.5, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.5, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.875, + "max_y": 0.25, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.1875, + "max_x": 0.75, + "max_y": 0.3125, + "max_z": 0.8125 + }, + { + "min_x": 0.375, + "min_y": 0.3125, + "min_z": 0.25, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.1875, + "min_y": 0.625, + "min_z": 0.0, + "max_x": 0.375, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.625, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.25 + }, + { + "min_x": 0.375, + "min_y": 0.625, + "min_z": 0.75, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.625, + "min_y": 0.625, + "min_z": 0.25, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.1875, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.8125, + "max_y": 0.3125, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.3125, + "min_z": 0.375, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.625, + "min_z": 0.1875, + "max_x": 0.25, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.25, + "min_y": 0.625, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.375 + }, + { + "min_x": 0.25, + "min_y": 0.625, + "min_z": 0.625, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.75, + "min_y": 0.625, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 0.6875, + "max_z": 0.625 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.375, + "max_y": 0.6875, + "max_z": 0.75 + }, + { + "min_x": 0.375, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.375 + }, + { + "min_x": 0.375, + "min_y": 0.25, + "min_z": 0.625, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.75 + }, + { + "min_x": 0.625, + "min_y": 0.25, + "min_z": 0.375, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.625, + "min_z": 0.0, + "max_x": 0.25, + "max_y": 0.6875, + "max_z": 1.0 + }, + { + "min_x": 0.25, + "min_y": 0.625, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.6875, + "max_z": 0.25 + }, + { + "min_x": 0.25, + "min_y": 0.625, + "min_z": 0.75, + "max_x": 1.0, + "max_y": 0.6875, + "max_z": 1.0 + }, + { + "min_x": 0.75, + "min_y": 0.625, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 0.6875, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.6875, + "min_z": 0.0, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.125, + "min_y": 0.6875, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.125, + "min_y": 0.6875, + "min_z": 0.875, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.875, + "min_y": 0.6875, + "min_z": 0.125, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.75 + }, + { + "min_x": 0.375, + "min_y": 0.25, + "min_z": 0.0, + "max_x": 0.625, + "max_y": 0.5, + "max_z": 0.25 + }, + { + "min_x": 0.375, + "min_y": 0.25, + "min_z": 0.75, + "max_x": 0.625, + "max_y": 0.5, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.25, + "min_z": 0.375, + "max_x": 0.75, + "max_y": 0.5, + "max_z": 0.625 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.375 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.625, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.5, + "min_z": 0.375, + "max_x": 0.75, + "max_y": 0.6875, + "max_z": 0.625 + }, + { + "min_x": 0.75, + "min_y": 0.25, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 0.5, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.0625, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.375, + "min_z": 0.0, + "max_x": 0.625, + "max_y": 0.625, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.375, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 0.625, + "max_z": 0.625 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.1875, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.1875 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.8125, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.8125, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.8125, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.75, + "max_y": 0.4375, + "max_z": 0.75 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.9375, + "max_y": 0.4375, + "max_z": 0.9375 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 0.375, + "max_z": 0.625 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.375, + "max_z": 0.8125 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.875, + "max_y": 0.375, + "max_z": 0.875 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.875, + "max_y": 0.4375, + "max_z": 0.875 + }, + { + "min_x": 0.3125, + "min_y": 0.3125, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.6875, + "max_z": 0.6875 + }, + { + "min_x": 0.15625, + "min_y": 0.0, + "min_z": 0.15625, + "max_x": 0.34375, + "max_y": 1.0, + "max_z": 0.34375 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.875, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.875, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.875, + "min_y": 0.0, + "min_z": 0.875, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.875, + "min_z": 0.125, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.875 + }, + { + "min_x": 0.125, + "min_y": 0.875, + "min_z": 0.0, + "max_x": 0.875, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.125, + "min_y": 0.875, + "min_z": 0.875, + "max_x": 0.875, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.25, + "max_y": 0.8125, + "max_z": 0.625 + }, + { + "min_x": 0.75, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.875, + "max_y": 0.8125, + "max_z": 0.625 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.125, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 0.875 + }, + { + "min_x": 0.125, + "min_y": 0.4375, + "min_z": 0.3125, + "max_x": 0.25, + "max_y": 0.8125, + "max_z": 0.375 + }, + { + "min_x": 0.125, + "min_y": 0.4375, + "min_z": 0.625, + "max_x": 0.25, + "max_y": 0.8125, + "max_z": 0.6875 + }, + { + "min_x": 0.75, + "min_y": 0.4375, + "min_z": 0.3125, + "max_x": 0.875, + "max_y": 0.8125, + "max_z": 0.375 + }, + { + "min_x": 0.75, + "min_y": 0.4375, + "min_z": 0.625, + "max_x": 0.875, + "max_y": 0.8125, + "max_z": 0.6875 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.625, + "max_y": 0.8125, + "max_z": 0.25 + }, + { + "min_x": 0.375, + "min_y": 0.0, + "min_z": 0.75, + "max_x": 0.625, + "max_y": 0.8125, + "max_z": 0.875 + }, + { + "min_x": 0.125, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.875, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.3125, + "min_y": 0.4375, + "min_z": 0.125, + "max_x": 0.375, + "max_y": 0.8125, + "max_z": 0.25 + }, + { + "min_x": 0.3125, + "min_y": 0.4375, + "min_z": 0.75, + "max_x": 0.375, + "max_y": 0.8125, + "max_z": 0.875 + }, + { + "min_x": 0.625, + "min_y": 0.4375, + "min_z": 0.125, + "max_x": 0.6875, + "max_y": 0.8125, + "max_z": 0.25 + }, + { + "min_x": 0.625, + "min_y": 0.4375, + "min_z": 0.75, + "max_x": 0.6875, + "max_y": 0.8125, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.125, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 0.875, + "max_z": 0.75 + }, + { + "min_x": 0.125, + "min_y": 0.3125, + "min_z": 0.1875, + "max_x": 0.25, + "max_y": 0.6875, + "max_z": 0.5625 + }, + { + "min_x": 0.75, + "min_y": 0.3125, + "min_z": 0.1875, + "max_x": 0.875, + "max_y": 0.6875, + "max_z": 0.5625 + }, + { + "min_x": 0.125, + "min_y": 0.375, + "min_z": 0.5625, + "max_x": 0.25, + "max_y": 0.625, + "max_z": 1.0 + }, + { + "min_x": 0.75, + "min_y": 0.375, + "min_z": 0.5625, + "max_x": 0.875, + "max_y": 0.625, + "max_z": 1.0 + }, + { + "min_x": 0.25, + "min_y": 0.125, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.875, + "max_z": 1.0 + }, + { + "min_x": 0.125, + "min_y": 0.3125, + "min_z": 0.4375, + "max_x": 0.25, + "max_y": 0.6875, + "max_z": 0.8125 + }, + { + "min_x": 0.75, + "min_y": 0.3125, + "min_z": 0.4375, + "max_x": 0.875, + "max_y": 0.6875, + "max_z": 0.8125 + }, + { + "min_x": 0.125, + "min_y": 0.375, + "min_z": 0.0, + "max_x": 0.25, + "max_y": 0.625, + "max_z": 0.4375 + }, + { + "min_x": 0.75, + "min_y": 0.375, + "min_z": 0.0, + "max_x": 0.875, + "max_y": 0.625, + "max_z": 0.4375 + }, + { + "min_x": 0.0, + "min_y": 0.125, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.875, + "max_z": 0.75 + }, + { + "min_x": 0.1875, + "min_y": 0.3125, + "min_z": 0.125, + "max_x": 0.5625, + "max_y": 0.6875, + "max_z": 0.25 + }, + { + "min_x": 0.1875, + "min_y": 0.3125, + "min_z": 0.75, + "max_x": 0.5625, + "max_y": 0.6875, + "max_z": 0.875 + }, + { + "min_x": 0.5625, + "min_y": 0.375, + "min_z": 0.125, + "max_x": 1.0, + "max_y": 0.625, + "max_z": 0.25 + }, + { + "min_x": 0.5625, + "min_y": 0.375, + "min_z": 0.75, + "max_x": 1.0, + "max_y": 0.625, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.125, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 0.875, + "max_z": 0.75 + }, + { + "min_x": 0.4375, + "min_y": 0.3125, + "min_z": 0.125, + "max_x": 0.8125, + "max_y": 0.6875, + "max_z": 0.25 + }, + { + "min_x": 0.4375, + "min_y": 0.3125, + "min_z": 0.75, + "max_x": 0.8125, + "max_y": 0.6875, + "max_z": 0.875 + }, + { + "min_x": 0.0, + "min_y": 0.375, + "min_z": 0.125, + "max_x": 0.4375, + "max_y": 0.625, + "max_z": 0.25 + }, + { + "min_x": 0.0, + "min_y": 0.375, + "min_z": 0.75, + "max_x": 0.4375, + "max_y": 0.625, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 0.875 + }, + { + "min_x": 0.125, + "min_y": 0.1875, + "min_z": 0.3125, + "max_x": 0.25, + "max_y": 0.5625, + "max_z": 0.6875 + }, + { + "min_x": 0.75, + "min_y": 0.1875, + "min_z": 0.3125, + "max_x": 0.875, + "max_y": 0.5625, + "max_z": 0.6875 + }, + { + "min_x": 0.125, + "min_y": 0.5625, + "min_z": 0.375, + "max_x": 0.25, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.75, + "min_y": 0.5625, + "min_z": 0.375, + "max_x": 0.875, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 0.875, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.3125, + "min_y": 0.1875, + "min_z": 0.125, + "max_x": 0.6875, + "max_y": 0.5625, + "max_z": 0.25 + }, + { + "min_x": 0.3125, + "min_y": 0.1875, + "min_z": 0.75, + "max_x": 0.6875, + "max_y": 0.5625, + "max_z": 0.875 + }, + { + "min_x": 0.375, + "min_y": 0.5625, + "min_z": 0.125, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.25 + }, + { + "min_x": 0.375, + "min_y": 0.5625, + "min_z": 0.75, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.875 + }, + { + "min_x": 0.25, + "min_y": 0.125, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.875, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.5625, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.375, + "max_z": 0.75 + }, + { + "min_x": 0.3125, + "min_y": 0.375, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.8125, + "max_z": 0.6875 + }, + { + "min_x": 0.4375, + "min_y": 0.8125, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.4375, + "min_y": 0.8125, + "min_z": 0.0, + "max_x": 0.5625, + "max_y": 0.9375, + "max_z": 0.8125 + }, + { + "min_x": 0.4375, + "min_y": 0.8125, + "min_z": 0.1875, + "max_x": 0.5625, + "max_y": 0.9375, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.8125, + "min_z": 0.4375, + "max_x": 0.8125, + "max_y": 0.9375, + "max_z": 0.5625 + }, + { + "min_x": 0.1875, + "min_y": 0.8125, + "min_z": 0.4375, + "max_x": 1.0, + "max_y": 0.9375, + "max_z": 0.5625 + }, + { + "min_x": 0.4375, + "min_y": 0.8125, + "min_z": 0.0, + "max_x": 0.5625, + "max_y": 0.9375, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.8125, + "min_z": 0.4375, + "max_x": 1.0, + "max_y": 0.9375, + "max_z": 0.5625 + }, + { + "min_x": 0.3125, + "min_y": 0.0625, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.5, + "max_z": 0.6875 + }, + { + "min_x": 0.375, + "min_y": 0.5, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 0.625, + "max_z": 0.625 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.4375, + "max_z": 0.6875 + }, + { + "min_x": 0.375, + "min_y": 0.4375, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 0.5625, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.4375, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.125, + "min_z": 0.0, + "max_x": 0.125, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.125, + "min_y": 0.125, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.125 + }, + { + "min_x": 0.125, + "min_y": 0.125, + "min_z": 0.875, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.875, + "min_y": 0.125, + "min_z": 0.125, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.875 + }, + { + "min_x": 0.4375, + "min_y": 0.0, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 0.375, + "max_z": 0.5625 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.6875, + "max_y": 0.375, + "max_z": 0.5625 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.375, + "max_x": 0.625, + "max_y": 0.375, + "max_z": 0.6875 + }, + { + "min_x": 0.3125, + "min_y": 0.0, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.375, + "max_z": 0.625 + }, + { + "min_x": 0.4375, + "min_y": 0.5, + "min_z": 0.4375, + "max_x": 0.5625, + "max_y": 0.875, + "max_z": 0.5625 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.5625, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.4375, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.4375 + }, + { + "min_x": 0.5625, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.4375, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.5625, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.6875, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.3125, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.3125 + }, + { + "min_x": 0.6875, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.3125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.6875, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.75, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 0.25, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.1875, + "min_z": 0.0, + "max_x": 0.8125, + "max_y": 0.8125, + "max_z": 0.25 + }, + { + "min_x": 0.75, + "min_y": 0.1875, + "min_z": 0.1875, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.25, + "max_z": 0.8125 + }, + { + "min_x": 0.1875, + "min_y": 0.75, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 1.0, + "max_z": 0.8125 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.8125, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 0.1875, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.25, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 0.75, + "max_z": 0.1875 + }, + { + "min_x": 0.8125, + "min_y": 0.25, + "min_z": 0.25, + "max_x": 1.0, + "max_y": 0.75, + "max_z": 0.75 + }, + { + "min_x": 0.25, + "min_y": 0.0, + "min_z": 0.25, + "max_x": 0.75, + "max_y": 0.1875, + "max_z": 0.75 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.1875, + "min_y": 0.0, + "min_z": 0.1875, + "max_x": 0.5625, + "max_y": 0.6875, + "max_z": 0.5625 + }, + { + "min_x": 0.1875, + "min_y": 0.3125, + "min_z": 0.1875, + "max_x": 0.5625, + "max_y": 1.0, + "max_z": 0.5625 + }, + { + "min_x": 0.125, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.625, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.0625, + "max_x": 0.6875, + "max_y": 1.0, + "max_z": 0.6875 + }, + { + "min_x": 0.0, + "min_y": 0.0, + "min_z": 0.0, + "max_x": 0.75, + "max_y": 1.0, + "max_z": 0.75 + }, + { + "min_x": 0.0, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 0.375, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.375, + "min_y": 0.5, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.375 + }, + { + "min_x": 0.375, + "min_y": 0.5, + "min_z": 0.625, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 1.0 + }, + { + "min_x": 0.625, + "min_y": 0.5, + "min_z": 0.375, + "max_x": 1.0, + "max_y": 1.0, + "max_z": 0.625 + }, + { + "min_x": 0.0, + "min_y": 0.6875, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.9375, + "max_z": 1.0 + }, + { + "min_x": 0.0, + "min_y": 0.6875, + "min_z": 0.0, + "max_x": 1.0, + "max_y": 0.8125, + "max_z": 1.0 + } + ], + "blocks": [ + { + "id": 0, + "name": "air", + "translation_key": "block.minecraft.air", + "properties": [], + "default_state_id": 0, + "states": [ + { + "id": 0, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 1, + "name": "stone", + "translation_key": "block.minecraft.stone", + "properties": [], + "default_state_id": 1, + "states": [ + { + "id": 1, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 2, + "name": "granite", + "translation_key": "block.minecraft.granite", + "properties": [], + "default_state_id": 2, + "states": [ + { + "id": 2, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 3, + "name": "polished_granite", + "translation_key": "block.minecraft.polished_granite", + "properties": [], + "default_state_id": 3, + "states": [ + { + "id": 3, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 4, + "name": "diorite", + "translation_key": "block.minecraft.diorite", + "properties": [], + "default_state_id": 4, + "states": [ + { + "id": 4, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 5, + "name": "polished_diorite", + "translation_key": "block.minecraft.polished_diorite", + "properties": [], + "default_state_id": 5, + "states": [ + { + "id": 5, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 6, + "name": "andesite", + "translation_key": "block.minecraft.andesite", + "properties": [], + "default_state_id": 6, + "states": [ + { + "id": 6, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 7, + "name": "polished_andesite", + "translation_key": "block.minecraft.polished_andesite", + "properties": [], + "default_state_id": 7, + "states": [ + { + "id": 7, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 8, + "name": "grass_block", + "translation_key": "block.minecraft.grass_block", + "properties": [ + { + "name": "snowy", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9, + "states": [ + { + "id": 8, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 9, + "name": "dirt", + "translation_key": "block.minecraft.dirt", + "properties": [], + "default_state_id": 10, + "states": [ + { + "id": 10, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 10, + "name": "coarse_dirt", + "translation_key": "block.minecraft.coarse_dirt", + "properties": [], + "default_state_id": 11, + "states": [ + { + "id": 11, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 11, + "name": "podzol", + "translation_key": "block.minecraft.podzol", + "properties": [ + { + "name": "snowy", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 13, + "states": [ + { + "id": 12, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 13, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 12, + "name": "cobblestone", + "translation_key": "block.minecraft.cobblestone", + "properties": [], + "default_state_id": 14, + "states": [ + { + "id": 14, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 13, + "name": "oak_planks", + "translation_key": "block.minecraft.oak_planks", + "properties": [], + "default_state_id": 15, + "states": [ + { + "id": 15, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 14, + "name": "spruce_planks", + "translation_key": "block.minecraft.spruce_planks", + "properties": [], + "default_state_id": 16, + "states": [ + { + "id": 16, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 15, + "name": "birch_planks", + "translation_key": "block.minecraft.birch_planks", + "properties": [], + "default_state_id": 17, + "states": [ + { + "id": 17, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 16, + "name": "jungle_planks", + "translation_key": "block.minecraft.jungle_planks", + "properties": [], + "default_state_id": 18, + "states": [ + { + "id": 18, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 17, + "name": "acacia_planks", + "translation_key": "block.minecraft.acacia_planks", + "properties": [], + "default_state_id": 19, + "states": [ + { + "id": 19, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 18, + "name": "dark_oak_planks", + "translation_key": "block.minecraft.dark_oak_planks", + "properties": [], + "default_state_id": 20, + "states": [ + { + "id": 20, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 19, + "name": "mangrove_planks", + "translation_key": "block.minecraft.mangrove_planks", + "properties": [], + "default_state_id": 21, + "states": [ + { + "id": 21, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 20, + "name": "oak_sapling", + "translation_key": "block.minecraft.oak_sapling", + "properties": [ + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 22, + "states": [ + { + "id": 22, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 23, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 21, + "name": "spruce_sapling", + "translation_key": "block.minecraft.spruce_sapling", + "properties": [ + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 24, + "states": [ + { + "id": 24, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 25, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 22, + "name": "birch_sapling", + "translation_key": "block.minecraft.birch_sapling", + "properties": [ + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 26, + "states": [ + { + "id": 26, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 27, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 23, + "name": "jungle_sapling", + "translation_key": "block.minecraft.jungle_sapling", + "properties": [ + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 28, + "states": [ + { + "id": 28, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 29, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 24, + "name": "acacia_sapling", + "translation_key": "block.minecraft.acacia_sapling", + "properties": [ + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 30, + "states": [ + { + "id": 30, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 31, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 25, + "name": "dark_oak_sapling", + "translation_key": "block.minecraft.dark_oak_sapling", + "properties": [ + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 32, + "states": [ + { + "id": 32, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 33, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 26, + "name": "mangrove_propagule", + "translation_key": "block.minecraft.mangrove_propagule", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + { + "name": "hanging", + "values": [ + "true", + "false" + ] + }, + { + "name": "stage", + "values": [ + "0", + "1" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 39, + "states": [ + { + "id": 34, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 35, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 36, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 37, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 38, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 39, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 40, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 41, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 42, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 43, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 44, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 45, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 46, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 47, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 48, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 49, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 50, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 51, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 52, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 53, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 54, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 55, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 56, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 57, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 58, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 59, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 60, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 61, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 62, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 63, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 64, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 65, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 66, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 67, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 68, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 69, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 70, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 71, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 72, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 73, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 27, + "name": "bedrock", + "translation_key": "block.minecraft.bedrock", + "properties": [], + "default_state_id": 74, + "states": [ + { + "id": 74, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 28, + "name": "water", + "translation_key": "block.minecraft.water", + "properties": [ + { + "name": "level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 75, + "states": [ + { + "id": 75, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 76, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 77, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 78, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 79, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 80, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 81, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 82, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 83, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 84, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 85, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 86, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 87, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 88, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 89, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 90, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 29, + "name": "lava", + "translation_key": "block.minecraft.lava", + "properties": [ + { + "name": "level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 91, + "states": [ + { + "id": 91, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 92, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 93, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 94, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 95, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 96, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 97, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 98, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 99, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 100, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 101, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 102, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 103, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 104, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 105, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 106, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 30, + "name": "sand", + "translation_key": "block.minecraft.sand", + "properties": [], + "default_state_id": 107, + "states": [ + { + "id": 107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 31, + "name": "red_sand", + "translation_key": "block.minecraft.red_sand", + "properties": [], + "default_state_id": 108, + "states": [ + { + "id": 108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 32, + "name": "gravel", + "translation_key": "block.minecraft.gravel", + "properties": [], + "default_state_id": 109, + "states": [ + { + "id": 109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 33, + "name": "gold_ore", + "translation_key": "block.minecraft.gold_ore", + "properties": [], + "default_state_id": 110, + "states": [ + { + "id": 110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 34, + "name": "deepslate_gold_ore", + "translation_key": "block.minecraft.deepslate_gold_ore", + "properties": [], + "default_state_id": 111, + "states": [ + { + "id": 111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 35, + "name": "iron_ore", + "translation_key": "block.minecraft.iron_ore", + "properties": [], + "default_state_id": 112, + "states": [ + { + "id": 112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 36, + "name": "deepslate_iron_ore", + "translation_key": "block.minecraft.deepslate_iron_ore", + "properties": [], + "default_state_id": 113, + "states": [ + { + "id": 113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 37, + "name": "coal_ore", + "translation_key": "block.minecraft.coal_ore", + "properties": [], + "default_state_id": 114, + "states": [ + { + "id": 114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 38, + "name": "deepslate_coal_ore", + "translation_key": "block.minecraft.deepslate_coal_ore", + "properties": [], + "default_state_id": 115, + "states": [ + { + "id": 115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 39, + "name": "nether_gold_ore", + "translation_key": "block.minecraft.nether_gold_ore", + "properties": [], + "default_state_id": 116, + "states": [ + { + "id": 116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 40, + "name": "oak_log", + "translation_key": "block.minecraft.oak_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 118, + "states": [ + { + "id": 117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 41, + "name": "spruce_log", + "translation_key": "block.minecraft.spruce_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 121, + "states": [ + { + "id": 120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 42, + "name": "birch_log", + "translation_key": "block.minecraft.birch_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 124, + "states": [ + { + "id": 123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 43, + "name": "jungle_log", + "translation_key": "block.minecraft.jungle_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 127, + "states": [ + { + "id": 126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 44, + "name": "acacia_log", + "translation_key": "block.minecraft.acacia_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 130, + "states": [ + { + "id": 129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 45, + "name": "dark_oak_log", + "translation_key": "block.minecraft.dark_oak_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 133, + "states": [ + { + "id": 132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 46, + "name": "mangrove_log", + "translation_key": "block.minecraft.mangrove_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 136, + "states": [ + { + "id": 135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 47, + "name": "mangrove_roots", + "translation_key": "block.minecraft.mangrove_roots", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 139, + "states": [ + { + "id": 138, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 139, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 48, + "name": "muddy_mangrove_roots", + "translation_key": "block.minecraft.muddy_mangrove_roots", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 141, + "states": [ + { + "id": 140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 49, + "name": "stripped_spruce_log", + "translation_key": "block.minecraft.stripped_spruce_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 144, + "states": [ + { + "id": 143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 50, + "name": "stripped_birch_log", + "translation_key": "block.minecraft.stripped_birch_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 147, + "states": [ + { + "id": 146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 51, + "name": "stripped_jungle_log", + "translation_key": "block.minecraft.stripped_jungle_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 150, + "states": [ + { + "id": 149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 52, + "name": "stripped_acacia_log", + "translation_key": "block.minecraft.stripped_acacia_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 153, + "states": [ + { + "id": 152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 53, + "name": "stripped_dark_oak_log", + "translation_key": "block.minecraft.stripped_dark_oak_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 156, + "states": [ + { + "id": 155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 54, + "name": "stripped_oak_log", + "translation_key": "block.minecraft.stripped_oak_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 159, + "states": [ + { + "id": 158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 55, + "name": "stripped_mangrove_log", + "translation_key": "block.minecraft.stripped_mangrove_log", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 162, + "states": [ + { + "id": 161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 56, + "name": "oak_wood", + "translation_key": "block.minecraft.oak_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 165, + "states": [ + { + "id": 164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 57, + "name": "spruce_wood", + "translation_key": "block.minecraft.spruce_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 168, + "states": [ + { + "id": 167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 58, + "name": "birch_wood", + "translation_key": "block.minecraft.birch_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 171, + "states": [ + { + "id": 170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 59, + "name": "jungle_wood", + "translation_key": "block.minecraft.jungle_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 174, + "states": [ + { + "id": 173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 60, + "name": "acacia_wood", + "translation_key": "block.minecraft.acacia_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 177, + "states": [ + { + "id": 176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 61, + "name": "dark_oak_wood", + "translation_key": "block.minecraft.dark_oak_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 180, + "states": [ + { + "id": 179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 62, + "name": "mangrove_wood", + "translation_key": "block.minecraft.mangrove_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 183, + "states": [ + { + "id": 182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 63, + "name": "stripped_oak_wood", + "translation_key": "block.minecraft.stripped_oak_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 186, + "states": [ + { + "id": 185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 64, + "name": "stripped_spruce_wood", + "translation_key": "block.minecraft.stripped_spruce_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 189, + "states": [ + { + "id": 188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 65, + "name": "stripped_birch_wood", + "translation_key": "block.minecraft.stripped_birch_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 192, + "states": [ + { + "id": 191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 66, + "name": "stripped_jungle_wood", + "translation_key": "block.minecraft.stripped_jungle_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 195, + "states": [ + { + "id": 194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 67, + "name": "stripped_acacia_wood", + "translation_key": "block.minecraft.stripped_acacia_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 198, + "states": [ + { + "id": 197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 68, + "name": "stripped_dark_oak_wood", + "translation_key": "block.minecraft.stripped_dark_oak_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 201, + "states": [ + { + "id": 200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 69, + "name": "stripped_mangrove_wood", + "translation_key": "block.minecraft.stripped_mangrove_wood", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 204, + "states": [ + { + "id": 203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 70, + "name": "oak_leaves", + "translation_key": "block.minecraft.oak_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 233, + "states": [ + { + "id": 206, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 207, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 208, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 209, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 210, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 211, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 212, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 213, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 214, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 215, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 216, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 217, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 218, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 219, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 220, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 221, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 222, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 223, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 224, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 225, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 226, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 227, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 228, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 229, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 230, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 231, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 232, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 233, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 71, + "name": "spruce_leaves", + "translation_key": "block.minecraft.spruce_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 261, + "states": [ + { + "id": 234, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 235, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 236, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 237, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 238, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 239, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 240, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 241, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 242, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 243, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 244, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 245, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 246, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 247, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 248, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 249, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 250, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 251, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 252, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 253, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 254, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 255, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 256, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 257, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 258, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 259, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 260, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 261, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 72, + "name": "birch_leaves", + "translation_key": "block.minecraft.birch_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 289, + "states": [ + { + "id": 262, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 263, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 264, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 265, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 266, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 267, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 268, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 269, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 270, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 271, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 272, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 273, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 274, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 275, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 276, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 277, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 278, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 279, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 280, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 281, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 282, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 283, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 284, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 285, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 286, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 287, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 288, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 289, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 73, + "name": "jungle_leaves", + "translation_key": "block.minecraft.jungle_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 317, + "states": [ + { + "id": 290, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 291, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 292, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 293, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 294, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 295, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 296, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 297, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 298, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 299, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 300, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 301, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 302, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 303, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 304, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 305, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 306, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 307, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 308, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 309, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 310, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 311, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 312, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 313, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 314, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 315, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 316, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 317, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 74, + "name": "acacia_leaves", + "translation_key": "block.minecraft.acacia_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 345, + "states": [ + { + "id": 318, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 319, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 320, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 321, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 322, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 323, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 324, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 325, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 326, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 327, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 328, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 329, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 330, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 331, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 332, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 333, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 334, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 335, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 336, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 337, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 338, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 339, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 340, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 341, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 342, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 343, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 344, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 345, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 75, + "name": "dark_oak_leaves", + "translation_key": "block.minecraft.dark_oak_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 373, + "states": [ + { + "id": 346, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 347, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 348, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 349, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 350, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 351, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 352, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 353, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 354, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 355, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 356, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 357, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 358, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 359, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 360, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 361, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 362, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 363, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 364, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 365, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 366, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 367, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 368, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 369, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 370, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 371, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 372, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 373, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 76, + "name": "mangrove_leaves", + "translation_key": "block.minecraft.mangrove_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 401, + "states": [ + { + "id": 374, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 375, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 376, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 377, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 378, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 379, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 380, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 381, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 382, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 383, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 384, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 385, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 386, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 387, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 388, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 389, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 390, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 391, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 392, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 393, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 394, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 395, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 396, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 397, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 398, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 399, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 400, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 401, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 77, + "name": "azalea_leaves", + "translation_key": "block.minecraft.azalea_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 429, + "states": [ + { + "id": 402, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 403, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 404, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 405, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 406, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 407, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 408, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 409, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 410, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 411, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 412, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 413, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 414, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 415, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 416, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 417, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 418, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 419, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 420, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 421, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 422, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 423, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 424, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 425, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 426, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 427, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 428, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 429, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 78, + "name": "flowering_azalea_leaves", + "translation_key": "block.minecraft.flowering_azalea_leaves", + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 457, + "states": [ + { + "id": 430, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 431, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 432, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 433, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 434, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 435, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 436, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 437, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 438, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 439, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 440, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 441, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 442, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 443, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 444, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 445, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 446, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 447, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 448, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 449, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 450, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 451, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 452, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 453, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 454, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 455, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 456, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 457, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 79, + "name": "sponge", + "translation_key": "block.minecraft.sponge", + "properties": [], + "default_state_id": 458, + "states": [ + { + "id": 458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 80, + "name": "wet_sponge", + "translation_key": "block.minecraft.wet_sponge", + "properties": [], + "default_state_id": 459, + "states": [ + { + "id": 459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 81, + "name": "glass", + "translation_key": "block.minecraft.glass", + "properties": [], + "default_state_id": 460, + "states": [ + { + "id": 460, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 82, + "name": "lapis_ore", + "translation_key": "block.minecraft.lapis_ore", + "properties": [], + "default_state_id": 461, + "states": [ + { + "id": 461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 83, + "name": "deepslate_lapis_ore", + "translation_key": "block.minecraft.deepslate_lapis_ore", + "properties": [], + "default_state_id": 462, + "states": [ + { + "id": 462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 84, + "name": "lapis_block", + "translation_key": "block.minecraft.lapis_block", + "properties": [], + "default_state_id": 463, + "states": [ + { + "id": 463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 85, + "name": "dispenser", + "translation_key": "block.minecraft.dispenser", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "triggered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 465, + "states": [ + { + "id": 464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 86, + "name": "sandstone", + "translation_key": "block.minecraft.sandstone", + "properties": [], + "default_state_id": 476, + "states": [ + { + "id": 476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 87, + "name": "chiseled_sandstone", + "translation_key": "block.minecraft.chiseled_sandstone", + "properties": [], + "default_state_id": 477, + "states": [ + { + "id": 477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 88, + "name": "cut_sandstone", + "translation_key": "block.minecraft.cut_sandstone", + "properties": [], + "default_state_id": 478, + "states": [ + { + "id": 478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 89, + "name": "note_block", + "translation_key": "block.minecraft.note_block", + "properties": [ + { + "name": "instrument", + "values": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling" + ] + }, + { + "name": "note", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 480, + "states": [ + { + "id": 479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 90, + "name": "white_bed", + "translation_key": "block.minecraft.white_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1282, + "states": [ + { + "id": 1279, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1280, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1281, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1282, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1283, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1284, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1285, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1286, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1287, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1288, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1289, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1290, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1291, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1292, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1293, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1294, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 91, + "name": "orange_bed", + "translation_key": "block.minecraft.orange_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1298, + "states": [ + { + "id": 1295, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1296, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1297, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1298, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1299, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1300, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1301, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1302, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1303, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1304, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1305, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1306, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1307, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1308, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1309, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1310, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 92, + "name": "magenta_bed", + "translation_key": "block.minecraft.magenta_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1314, + "states": [ + { + "id": 1311, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1312, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1313, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1314, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1315, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1316, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1317, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1318, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1319, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1320, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1321, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1322, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1323, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1324, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1325, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1326, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 93, + "name": "light_blue_bed", + "translation_key": "block.minecraft.light_blue_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1330, + "states": [ + { + "id": 1327, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1328, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1329, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1330, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1331, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1332, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1333, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1334, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1335, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1336, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1337, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1338, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1339, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1340, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1341, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1342, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 94, + "name": "yellow_bed", + "translation_key": "block.minecraft.yellow_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1346, + "states": [ + { + "id": 1343, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1344, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1345, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1346, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1347, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1348, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1349, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1350, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1351, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1352, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1353, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1354, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1355, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1356, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1357, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1358, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 95, + "name": "lime_bed", + "translation_key": "block.minecraft.lime_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1362, + "states": [ + { + "id": 1359, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1360, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1361, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1362, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1363, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1364, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1365, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1366, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1367, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1368, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1369, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1370, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1371, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1372, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1373, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1374, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 96, + "name": "pink_bed", + "translation_key": "block.minecraft.pink_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1378, + "states": [ + { + "id": 1375, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1376, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1377, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1378, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1379, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1380, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1381, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1382, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1383, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1384, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1385, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1386, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1387, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1388, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1389, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1390, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 97, + "name": "gray_bed", + "translation_key": "block.minecraft.gray_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1394, + "states": [ + { + "id": 1391, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1392, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1393, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1394, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1395, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1396, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1397, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1398, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1399, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1400, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1401, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1402, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1403, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1404, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1405, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1406, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 98, + "name": "light_gray_bed", + "translation_key": "block.minecraft.light_gray_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1410, + "states": [ + { + "id": 1407, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1408, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1409, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1410, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1411, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1412, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1413, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1414, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1415, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1416, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1417, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1418, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1419, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1420, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1421, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1422, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 99, + "name": "cyan_bed", + "translation_key": "block.minecraft.cyan_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1426, + "states": [ + { + "id": 1423, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1424, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1425, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1426, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1427, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1428, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1429, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1430, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1431, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1432, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1433, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1434, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1435, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1436, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1437, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1438, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 100, + "name": "purple_bed", + "translation_key": "block.minecraft.purple_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1442, + "states": [ + { + "id": 1439, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1440, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1441, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1442, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1443, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1444, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1445, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1446, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1447, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1448, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1449, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1450, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1451, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1452, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1453, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1454, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 101, + "name": "blue_bed", + "translation_key": "block.minecraft.blue_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1458, + "states": [ + { + "id": 1455, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1456, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1457, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1458, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1459, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1460, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1461, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1462, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1463, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1464, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1465, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1466, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1467, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1468, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1469, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1470, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 102, + "name": "brown_bed", + "translation_key": "block.minecraft.brown_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1474, + "states": [ + { + "id": 1471, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1472, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1473, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1474, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1475, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1476, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1477, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1478, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1479, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1480, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1481, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1482, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1483, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1484, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1485, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1486, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 103, + "name": "green_bed", + "translation_key": "block.minecraft.green_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1490, + "states": [ + { + "id": 1487, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1488, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1489, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1490, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1491, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1492, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1493, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1494, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1495, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1496, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1497, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1498, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1499, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1500, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1501, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1502, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 104, + "name": "red_bed", + "translation_key": "block.minecraft.red_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1506, + "states": [ + { + "id": 1503, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1504, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1505, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1506, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1507, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1508, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1509, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1510, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1511, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1512, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1513, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1514, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1515, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1516, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1517, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1518, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 105, + "name": "black_bed", + "translation_key": "block.minecraft.black_bed", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1522, + "states": [ + { + "id": 1519, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1520, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1521, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1522, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1523, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1524, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1525, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ] + }, + { + "id": 1526, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ] + }, + { + "id": 1527, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1528, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1529, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1530, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1531, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1532, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + }, + { + "id": 1533, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ] + }, + { + "id": 1534, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ] + } + ] + }, + { + "id": 106, + "name": "powered_rail", + "translation_key": "block.minecraft.powered_rail", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "shape", + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 1548, + "states": [ + { + "id": 1535, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1536, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1537, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1538, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1539, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1540, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1541, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1542, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1543, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1544, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1545, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1546, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1547, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1548, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1549, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1550, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1551, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1552, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1553, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1554, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1555, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1556, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1557, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1558, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 107, + "name": "detector_rail", + "translation_key": "block.minecraft.detector_rail", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "shape", + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 1572, + "states": [ + { + "id": 1559, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1560, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1561, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1562, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1563, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1564, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1565, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1566, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1567, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1568, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1569, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1570, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1571, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1572, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1573, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1574, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1575, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1576, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1577, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1578, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1579, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1580, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1581, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1582, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 108, + "name": "sticky_piston", + "translation_key": "block.minecraft.sticky_piston", + "properties": [ + { + "name": "extended", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 1589, + "states": [ + { + "id": 1583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 14 + ] + }, + { + "id": 1584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 15 + ] + }, + { + "id": 1585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 16 + ] + }, + { + "id": 1586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 17 + ] + }, + { + "id": 1587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 18 + ] + }, + { + "id": 1588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 19 + ] + }, + { + "id": 1589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 109, + "name": "cobweb", + "translation_key": "block.minecraft.cobweb", + "properties": [], + "default_state_id": 1595, + "states": [ + { + "id": 1595, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 110, + "name": "grass", + "translation_key": "block.minecraft.grass", + "properties": [], + "default_state_id": 1596, + "states": [ + { + "id": 1596, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 111, + "name": "fern", + "translation_key": "block.minecraft.fern", + "properties": [], + "default_state_id": 1597, + "states": [ + { + "id": 1597, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 112, + "name": "dead_bush", + "translation_key": "block.minecraft.dead_bush", + "properties": [], + "default_state_id": 1598, + "states": [ + { + "id": 1598, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 113, + "name": "seagrass", + "translation_key": "block.minecraft.seagrass", + "properties": [], + "default_state_id": 1599, + "states": [ + { + "id": 1599, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 114, + "name": "tall_seagrass", + "translation_key": "block.minecraft.tall_seagrass", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 1601, + "states": [ + { + "id": 1600, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1601, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 115, + "name": "piston", + "translation_key": "block.minecraft.piston", + "properties": [ + { + "name": "extended", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 1608, + "states": [ + { + "id": 1602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 14 + ] + }, + { + "id": 1603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 15 + ] + }, + { + "id": 1604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 16 + ] + }, + { + "id": 1605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 17 + ] + }, + { + "id": 1606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 18 + ] + }, + { + "id": 1607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 19 + ] + }, + { + "id": 1608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 116, + "name": "piston_head", + "translation_key": "block.minecraft.piston_head", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "short", + "values": [ + "true", + "false" + ] + }, + { + "name": "type", + "values": [ + "normal", + "sticky" + ] + } + ], + "default_state_id": 1616, + "states": [ + { + "id": 1614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 20, + 21 + ] + }, + { + "id": 1615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 20, + 21 + ] + }, + { + "id": 1616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 20, + 22 + ] + }, + { + "id": 1617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 20, + 22 + ] + }, + { + "id": 1618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 23, + 24 + ] + }, + { + "id": 1619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 23, + 24 + ] + }, + { + "id": 1620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 23, + 25 + ] + }, + { + "id": 1621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 23, + 25 + ] + }, + { + "id": 1622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 26, + 27 + ] + }, + { + "id": 1623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 26, + 27 + ] + }, + { + "id": 1624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 26, + 28 + ] + }, + { + "id": 1625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 26, + 28 + ] + }, + { + "id": 1626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 29, + 30 + ] + }, + { + "id": 1627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 29, + 30 + ] + }, + { + "id": 1628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 29, + 31 + ] + }, + { + "id": 1629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 29, + 31 + ] + }, + { + "id": 1630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 32, + 33, + 34, + 35, + 36 + ] + }, + { + "id": 1631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 32, + 33, + 34, + 35, + 36 + ] + }, + { + "id": 1632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 37, + 33, + 34, + 35, + 36 + ] + }, + { + "id": 1633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 37, + 33, + 34, + 35, + 36 + ] + }, + { + "id": 1634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 38, + 39 + ] + }, + { + "id": 1635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 38, + 39 + ] + }, + { + "id": 1636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 38, + 40 + ] + }, + { + "id": 1637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 38, + 40 + ] + } + ] + }, + { + "id": 117, + "name": "white_wool", + "translation_key": "block.minecraft.white_wool", + "properties": [], + "default_state_id": 1638, + "states": [ + { + "id": 1638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 118, + "name": "orange_wool", + "translation_key": "block.minecraft.orange_wool", + "properties": [], + "default_state_id": 1639, + "states": [ + { + "id": 1639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 119, + "name": "magenta_wool", + "translation_key": "block.minecraft.magenta_wool", + "properties": [], + "default_state_id": 1640, + "states": [ + { + "id": 1640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 120, + "name": "light_blue_wool", + "translation_key": "block.minecraft.light_blue_wool", + "properties": [], + "default_state_id": 1641, + "states": [ + { + "id": 1641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 121, + "name": "yellow_wool", + "translation_key": "block.minecraft.yellow_wool", + "properties": [], + "default_state_id": 1642, + "states": [ + { + "id": 1642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 122, + "name": "lime_wool", + "translation_key": "block.minecraft.lime_wool", + "properties": [], + "default_state_id": 1643, + "states": [ + { + "id": 1643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 123, + "name": "pink_wool", + "translation_key": "block.minecraft.pink_wool", + "properties": [], + "default_state_id": 1644, + "states": [ + { + "id": 1644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 124, + "name": "gray_wool", + "translation_key": "block.minecraft.gray_wool", + "properties": [], + "default_state_id": 1645, + "states": [ + { + "id": 1645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 125, + "name": "light_gray_wool", + "translation_key": "block.minecraft.light_gray_wool", + "properties": [], + "default_state_id": 1646, + "states": [ + { + "id": 1646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 126, + "name": "cyan_wool", + "translation_key": "block.minecraft.cyan_wool", + "properties": [], + "default_state_id": 1647, + "states": [ + { + "id": 1647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 127, + "name": "purple_wool", + "translation_key": "block.minecraft.purple_wool", + "properties": [], + "default_state_id": 1648, + "states": [ + { + "id": 1648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 128, + "name": "blue_wool", + "translation_key": "block.minecraft.blue_wool", + "properties": [], + "default_state_id": 1649, + "states": [ + { + "id": 1649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 129, + "name": "brown_wool", + "translation_key": "block.minecraft.brown_wool", + "properties": [], + "default_state_id": 1650, + "states": [ + { + "id": 1650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 130, + "name": "green_wool", + "translation_key": "block.minecraft.green_wool", + "properties": [], + "default_state_id": 1651, + "states": [ + { + "id": 1651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 131, + "name": "red_wool", + "translation_key": "block.minecraft.red_wool", + "properties": [], + "default_state_id": 1652, + "states": [ + { + "id": 1652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 132, + "name": "black_wool", + "translation_key": "block.minecraft.black_wool", + "properties": [], + "default_state_id": 1653, + "states": [ + { + "id": 1653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 133, + "name": "moving_piston", + "translation_key": "block.minecraft.moving_piston", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "type", + "values": [ + "normal", + "sticky" + ] + } + ], + "default_state_id": 1654, + "states": [ + { + "id": 1654, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1655, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1656, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1657, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1658, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1659, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1660, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1661, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1662, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1663, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1664, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1665, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 134, + "name": "dandelion", + "translation_key": "block.minecraft.dandelion", + "properties": [], + "default_state_id": 1666, + "states": [ + { + "id": 1666, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 135, + "name": "poppy", + "translation_key": "block.minecraft.poppy", + "properties": [], + "default_state_id": 1667, + "states": [ + { + "id": 1667, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 136, + "name": "blue_orchid", + "translation_key": "block.minecraft.blue_orchid", + "properties": [], + "default_state_id": 1668, + "states": [ + { + "id": 1668, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 137, + "name": "allium", + "translation_key": "block.minecraft.allium", + "properties": [], + "default_state_id": 1669, + "states": [ + { + "id": 1669, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 138, + "name": "azure_bluet", + "translation_key": "block.minecraft.azure_bluet", + "properties": [], + "default_state_id": 1670, + "states": [ + { + "id": 1670, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 139, + "name": "red_tulip", + "translation_key": "block.minecraft.red_tulip", + "properties": [], + "default_state_id": 1671, + "states": [ + { + "id": 1671, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 140, + "name": "orange_tulip", + "translation_key": "block.minecraft.orange_tulip", + "properties": [], + "default_state_id": 1672, + "states": [ + { + "id": 1672, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 141, + "name": "white_tulip", + "translation_key": "block.minecraft.white_tulip", + "properties": [], + "default_state_id": 1673, + "states": [ + { + "id": 1673, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 142, + "name": "pink_tulip", + "translation_key": "block.minecraft.pink_tulip", + "properties": [], + "default_state_id": 1674, + "states": [ + { + "id": 1674, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 143, + "name": "oxeye_daisy", + "translation_key": "block.minecraft.oxeye_daisy", + "properties": [], + "default_state_id": 1675, + "states": [ + { + "id": 1675, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 144, + "name": "cornflower", + "translation_key": "block.minecraft.cornflower", + "properties": [], + "default_state_id": 1676, + "states": [ + { + "id": 1676, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 145, + "name": "wither_rose", + "translation_key": "block.minecraft.wither_rose", + "properties": [], + "default_state_id": 1677, + "states": [ + { + "id": 1677, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 146, + "name": "lily_of_the_valley", + "translation_key": "block.minecraft.lily_of_the_valley", + "properties": [], + "default_state_id": 1678, + "states": [ + { + "id": 1678, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 147, + "name": "brown_mushroom", + "translation_key": "block.minecraft.brown_mushroom", + "properties": [], + "default_state_id": 1679, + "states": [ + { + "id": 1679, + "luminance": 1, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 148, + "name": "red_mushroom", + "translation_key": "block.minecraft.red_mushroom", + "properties": [], + "default_state_id": 1680, + "states": [ + { + "id": 1680, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 149, + "name": "gold_block", + "translation_key": "block.minecraft.gold_block", + "properties": [], + "default_state_id": 1681, + "states": [ + { + "id": 1681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 150, + "name": "iron_block", + "translation_key": "block.minecraft.iron_block", + "properties": [], + "default_state_id": 1682, + "states": [ + { + "id": 1682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 151, + "name": "bricks", + "translation_key": "block.minecraft.bricks", + "properties": [], + "default_state_id": 1683, + "states": [ + { + "id": 1683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 152, + "name": "tnt", + "translation_key": "block.minecraft.tnt", + "properties": [ + { + "name": "unstable", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 1685, + "states": [ + { + "id": 1684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 1685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 153, + "name": "bookshelf", + "translation_key": "block.minecraft.bookshelf", + "properties": [], + "default_state_id": 1686, + "states": [ + { + "id": 1686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 154, + "name": "mossy_cobblestone", + "translation_key": "block.minecraft.mossy_cobblestone", + "properties": [], + "default_state_id": 1687, + "states": [ + { + "id": 1687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 155, + "name": "obsidian", + "translation_key": "block.minecraft.obsidian", + "properties": [], + "default_state_id": 1688, + "states": [ + { + "id": 1688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 156, + "name": "torch", + "translation_key": "block.minecraft.torch", + "properties": [], + "default_state_id": 1689, + "states": [ + { + "id": 1689, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 157, + "name": "wall_torch", + "translation_key": "block.minecraft.torch", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 1690, + "states": [ + { + "id": 1690, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1691, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1692, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1693, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 158, + "name": "fire", + "translation_key": "block.minecraft.fire", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 1725, + "states": [ + { + "id": 1694, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1695, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1696, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1697, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1698, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1699, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1700, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1701, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1702, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1703, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1704, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1705, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1706, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1707, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1708, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1709, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1710, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1711, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1712, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1713, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1714, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1715, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1716, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1717, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1718, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1719, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1720, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1721, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1722, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1723, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1724, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1725, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1726, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1727, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1728, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1729, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1730, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1731, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1732, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1733, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1734, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1735, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1736, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1737, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1738, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1739, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1740, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1741, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1742, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1743, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1744, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1745, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1746, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1747, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1748, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1749, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1750, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1751, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1752, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1753, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1754, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1755, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1756, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1757, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1758, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1759, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1760, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1761, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1762, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1763, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1764, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1765, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1766, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1767, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1768, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1769, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1770, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1771, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1772, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1773, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1774, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1775, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1776, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1777, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1778, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1779, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1780, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1781, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1782, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1783, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1784, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1785, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1786, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1787, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1788, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1789, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1790, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1791, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1792, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1793, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1794, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1795, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1796, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1797, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1798, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1799, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1800, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1801, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1802, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1803, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1804, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1805, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1806, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1807, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1808, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1809, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1810, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1811, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1812, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1813, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1814, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1815, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1816, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1817, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1818, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1819, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1820, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1821, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1822, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1823, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1824, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1825, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1826, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1827, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1828, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1829, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1830, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1831, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1832, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1833, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1834, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1835, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1836, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1837, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1838, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1839, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1840, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1841, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1842, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1843, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1844, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1845, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1846, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1847, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1848, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1849, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1850, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1851, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1852, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1853, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1854, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1855, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1856, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1857, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1858, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1859, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1860, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1861, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1862, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1863, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1864, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1865, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1866, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1867, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1868, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1869, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1870, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1871, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1872, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1873, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1874, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1875, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1876, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1877, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1878, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1879, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1880, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1881, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1882, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1883, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1884, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1885, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1886, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1887, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1888, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1889, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1890, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1891, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1892, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1893, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1894, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1895, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1896, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1897, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1898, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1899, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1900, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1901, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1902, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1903, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1904, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1905, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1906, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1907, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1908, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1909, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1910, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1911, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1912, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1913, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1914, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1915, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1916, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1917, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1918, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1919, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1920, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1921, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1922, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1923, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1924, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1925, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1926, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1927, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1928, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1929, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1930, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1931, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1932, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1933, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1934, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1935, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1936, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1937, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1938, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1939, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1940, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1941, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1942, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1943, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1944, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1945, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1946, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1947, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1948, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1949, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1950, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1951, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1952, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1953, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1954, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1955, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1956, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1957, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1958, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1959, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1960, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1961, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1962, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1963, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1964, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1965, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1966, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1967, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1968, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1969, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1970, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1971, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1972, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1973, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1974, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1975, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1976, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1977, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1978, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1979, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1980, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1981, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1982, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1983, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1984, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1985, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1986, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1987, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1988, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1989, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1990, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1991, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1992, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1993, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1994, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1995, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1996, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1997, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1998, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 1999, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2000, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2001, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2002, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2003, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2004, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2005, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2006, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2007, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2008, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2009, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2010, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2011, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2012, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2013, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2014, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2015, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2016, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2017, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2018, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2019, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2020, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2021, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2022, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2023, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2024, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2025, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2026, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2027, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2028, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2029, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2030, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2031, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2032, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2033, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2034, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2035, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2036, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2037, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2038, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2039, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2040, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2041, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2042, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2043, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2044, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2045, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2046, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2047, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2048, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2049, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2050, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2051, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2052, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2053, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2054, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2055, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2056, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2057, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2058, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2059, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2060, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2061, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2062, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2063, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2064, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2065, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2066, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2067, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2068, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2069, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2070, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2071, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2072, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2073, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2074, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2075, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2076, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2077, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2078, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2079, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2080, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2081, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2082, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2083, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2084, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2085, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2086, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2087, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2088, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2089, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2090, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2091, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2092, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2093, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2094, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2095, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2096, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2097, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2098, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2099, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2100, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2101, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2102, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2103, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2104, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2105, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2106, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2107, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2108, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2109, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2110, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2111, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2112, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2113, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2114, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2115, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2116, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2117, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2118, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2119, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2120, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2121, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2122, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2123, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2124, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2125, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2126, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2127, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2128, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2129, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2130, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2131, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2132, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2133, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2134, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2135, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2136, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2137, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2138, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2139, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2140, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2141, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2142, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2143, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2144, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2145, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2146, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2147, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2148, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2149, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2150, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2151, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2152, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2153, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2154, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2155, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2156, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2157, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2158, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2159, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2160, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2161, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2162, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2163, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2164, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2165, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2166, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2167, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2168, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2169, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2170, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2171, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2172, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2173, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2174, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2175, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2176, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2177, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2178, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2179, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2180, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2181, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2182, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2183, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2184, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2185, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2186, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2187, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2188, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2189, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2190, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2191, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2192, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2193, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2194, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2195, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2196, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2197, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2198, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2199, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2200, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2201, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2202, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2203, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2204, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2205, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 159, + "name": "soul_fire", + "translation_key": "block.minecraft.soul_fire", + "properties": [], + "default_state_id": 2206, + "states": [ + { + "id": 2206, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 160, + "name": "spawner", + "translation_key": "block.minecraft.spawner", + "properties": [], + "default_state_id": 2207, + "states": [ + { + "id": 2207, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 161, + "name": "oak_stairs", + "translation_key": "block.minecraft.oak_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 2219, + "states": [ + { + "id": 2208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 2209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 2210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 2211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 2212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 2213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 2214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 2215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 2216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 2217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 2218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 2219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 2220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 2221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 2222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 2223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 2224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 2225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 2226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 2227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 2228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 2229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 2230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 2231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 2232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 2233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 2234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 2235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 2236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 2237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 2238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 2239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 2240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 2241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 2242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 2243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 2244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 2245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 2246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 2247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 2248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 2249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 2250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 2251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 2252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 2253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 2254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 2255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 2256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 2257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 2258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 2259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 2260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 2261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 2262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 2263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 2264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 2265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 2266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 2267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 2268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 2269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 2270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 2271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 2272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 2273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 2274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 2275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 2276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 2277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 2278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 2279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 2280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 2281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 2282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 2283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 2284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 2285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 2286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 2287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 162, + "name": "chest", + "translation_key": "block.minecraft.chest", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "type", + "values": [ + "single", + "left", + "right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 2289, + "states": [ + { + "id": 2288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 2291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 2292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 2293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 2294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 2297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 2298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 2299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 2300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + }, + { + "id": 2303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + }, + { + "id": 2304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 2305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 2306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 2308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 2309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 2310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + }, + { + "id": 2311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + } + ] + }, + { + "id": 163, + "name": "redstone_wire", + "translation_key": "block.minecraft.redstone_wire", + "properties": [ + { + "name": "east", + "values": [ + "up", + "side", + "none" + ] + }, + { + "name": "north", + "values": [ + "up", + "side", + "none" + ] + }, + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "south", + "values": [ + "up", + "side", + "none" + ] + }, + { + "name": "west", + "values": [ + "up", + "side", + "none" + ] + } + ], + "default_state_id": 3472, + "states": [ + { + "id": 2312, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2313, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2314, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2315, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2316, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2317, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2318, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2319, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2320, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2321, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2322, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2323, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2324, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2325, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2326, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2327, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2328, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2329, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2330, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2331, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2332, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2333, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2334, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2335, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2336, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2337, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2338, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2339, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2340, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2341, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2342, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2343, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2344, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2345, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2346, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2347, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2348, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2349, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2350, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2351, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2352, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2353, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2354, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2355, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2356, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2357, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2358, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2359, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2360, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2361, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2362, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2363, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2364, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2365, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2366, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2367, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2368, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2369, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2370, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2371, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2372, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2373, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2374, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2375, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2376, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2377, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2378, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2379, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2380, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2381, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2382, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2383, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2384, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2385, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2386, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2387, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2388, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2389, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2390, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2391, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2392, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2393, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2394, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2395, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2396, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2397, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2398, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2399, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2400, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2401, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2402, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2403, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2404, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2405, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2406, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2407, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2408, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2409, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2410, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2411, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2412, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2413, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2414, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2415, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2416, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2417, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2418, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2419, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2420, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2421, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2422, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2423, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2424, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2425, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2426, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2427, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2428, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2429, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2430, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2431, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2432, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2433, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2434, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2435, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2436, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2437, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2438, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2439, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2440, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2441, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2442, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2443, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2444, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2445, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2446, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2447, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2448, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2449, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2450, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2451, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2452, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2453, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2454, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2455, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2456, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2457, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2458, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2459, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2460, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2461, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2462, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2463, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2464, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2465, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2466, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2467, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2468, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2469, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2470, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2471, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2472, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2473, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2474, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2475, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2476, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2477, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2478, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2479, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2480, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2481, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2482, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2483, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2484, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2485, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2486, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2487, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2488, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2489, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2490, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2491, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2492, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2493, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2494, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2495, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2496, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2497, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2498, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2499, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2500, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2501, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2502, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2503, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2504, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2505, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2506, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2507, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2508, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2509, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2510, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2511, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2512, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2513, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2514, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2515, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2516, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2517, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2518, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2519, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2520, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2521, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2522, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2523, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2524, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2525, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2526, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2527, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2528, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2529, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2530, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2531, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2532, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2533, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2534, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2535, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2536, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2537, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2538, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2539, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2540, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2541, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2542, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2543, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2544, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2545, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2546, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2547, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2548, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2549, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2550, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2551, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2552, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2553, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2554, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2555, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2556, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2557, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2558, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2559, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2560, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2561, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2562, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2563, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2564, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2565, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2566, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2567, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2568, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2569, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2570, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2571, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2572, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2573, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2574, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2575, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2576, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2577, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2578, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2579, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2580, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2581, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2582, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2583, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2584, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2585, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2586, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2587, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2588, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2589, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2590, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2591, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2592, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2593, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2594, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2595, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2596, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2597, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2598, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2599, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2600, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2601, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2602, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2603, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2604, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2605, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2606, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2607, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2608, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2609, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2610, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2611, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2612, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2613, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2614, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2615, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2616, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2617, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2618, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2619, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2620, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2621, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2622, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2623, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2624, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2625, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2626, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2627, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2628, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2629, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2630, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2631, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2632, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2633, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2634, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2635, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2636, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2637, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2638, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2639, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2640, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2641, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2642, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2643, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2644, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2645, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2646, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2647, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2648, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2649, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2650, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2651, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2652, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2653, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2654, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2655, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2656, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2657, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2658, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2659, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2660, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2661, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2662, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2663, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2664, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2665, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2666, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2667, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2668, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2669, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2670, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2671, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2672, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2673, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2674, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2675, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2676, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2677, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2678, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2679, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2680, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2681, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2682, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2683, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2684, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2685, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2686, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2687, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2688, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2689, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2690, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2691, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2692, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2693, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2694, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2695, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2696, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2697, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2698, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2699, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2700, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2701, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2702, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2703, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2704, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2705, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2706, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2707, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2708, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2709, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2710, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2711, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2712, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2713, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2714, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2715, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2716, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2717, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2718, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2719, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2720, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2721, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2722, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2723, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2724, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2725, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2726, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2727, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2728, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2729, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2730, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2731, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2732, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2733, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2734, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2735, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2736, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2737, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2738, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2739, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2740, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2741, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2742, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2743, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2744, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2745, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2746, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2747, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2748, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2749, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2750, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2751, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2752, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2753, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2754, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2755, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2756, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2757, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2758, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2759, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2760, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2761, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2762, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2763, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2764, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2765, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2766, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2767, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2768, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2769, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2770, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2771, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2772, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2773, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2774, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2775, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2776, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2777, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2778, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2779, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2780, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2781, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2782, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2783, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2784, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2785, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2786, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2787, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2788, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2789, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2790, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2791, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2792, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2793, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2794, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2795, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2796, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2797, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2798, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2799, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2800, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2801, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2802, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2803, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2804, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2805, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2806, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2807, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2808, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2809, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2810, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2811, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2812, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2813, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2814, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2815, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2816, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2817, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2818, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2819, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2820, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2821, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2822, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2823, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2824, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2825, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2826, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2827, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2828, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2829, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2830, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2831, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2832, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2833, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2834, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2835, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2836, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2837, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2838, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2839, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2840, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2841, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2842, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2843, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2844, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2845, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2846, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2847, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2848, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2849, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2850, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2851, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2852, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2853, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2854, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2855, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2856, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2857, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2858, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2859, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2860, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2861, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2862, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2863, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2864, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2865, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2866, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2867, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2868, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2869, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2870, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2871, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2872, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2873, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2874, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2875, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2876, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2877, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2878, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2879, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2880, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2881, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2882, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2883, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2884, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2885, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2886, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2887, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2888, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2889, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2890, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2891, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2892, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2893, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2894, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2895, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2896, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2897, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2898, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2899, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2900, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2901, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2902, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2903, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2904, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2905, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2906, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2907, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2908, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2909, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2910, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2911, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2912, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2913, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2914, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2915, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2916, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2917, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2918, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2919, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2920, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2921, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2922, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2923, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2924, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2925, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2926, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2927, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2928, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2929, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2930, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2931, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2932, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2933, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2934, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2935, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2936, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2937, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2938, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2939, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2940, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2941, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2942, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2943, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2944, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2945, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2946, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2947, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2948, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2949, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2950, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2951, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2952, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2953, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2954, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2955, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2956, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2957, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2958, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2959, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2960, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2961, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2962, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2963, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2964, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2965, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2966, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2967, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2968, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2969, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2970, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2971, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2972, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2973, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2974, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2975, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2976, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2977, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2978, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2979, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2980, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2981, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2982, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2983, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2984, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2985, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2986, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2987, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2988, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2989, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2990, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2991, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2992, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2993, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2994, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2995, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2996, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2997, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2998, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 2999, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3000, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3001, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3002, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3003, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3004, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3005, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3006, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3007, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3008, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3009, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3010, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3011, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3012, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3013, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3014, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3015, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3016, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3017, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3018, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3019, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3020, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3021, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3022, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3023, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3024, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3025, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3026, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3027, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3028, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3029, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3030, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3031, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3032, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3033, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3034, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3035, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3036, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3037, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3038, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3039, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3040, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3041, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3042, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3043, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3044, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3045, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3046, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3047, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3048, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3049, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3050, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3051, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3052, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3053, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3054, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3055, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3056, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3057, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3058, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3059, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3060, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3061, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3062, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3063, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3064, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3065, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3066, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3067, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3068, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3069, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3070, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3071, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3072, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3073, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3074, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3075, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3076, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3077, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3078, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3079, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3080, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3081, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3082, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3083, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3084, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3085, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3086, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3087, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3088, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3089, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3090, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3091, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3092, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3093, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3094, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3095, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3096, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3097, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3098, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3099, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3100, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3101, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3102, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3103, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3104, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3105, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3106, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3107, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3108, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3109, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3110, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3111, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3112, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3113, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3114, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3115, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3116, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3117, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3118, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3119, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3120, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3121, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3122, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3123, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3124, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3125, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3126, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3127, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3128, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3129, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3130, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3131, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3132, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3133, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3134, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3135, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3136, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3137, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3138, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3139, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3140, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3141, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3142, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3143, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3144, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3145, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3146, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3147, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3148, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3149, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3150, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3151, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3152, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3153, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3154, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3155, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3156, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3157, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3158, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3159, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3160, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3161, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3162, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3163, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3164, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3165, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3166, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3167, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3168, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3169, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3170, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3171, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3172, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3173, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3174, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3175, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3176, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3177, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3178, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3179, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3180, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3181, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3182, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3183, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3184, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3185, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3186, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3187, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3188, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3189, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3190, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3191, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3192, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3193, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3194, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3195, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3196, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3197, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3198, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3199, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3200, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3201, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3202, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3203, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3204, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3205, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3206, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3207, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3208, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3209, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3210, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3211, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3212, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3213, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3214, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3215, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3216, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3217, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3218, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3219, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3220, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3221, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3222, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3223, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3224, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3225, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3226, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3227, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3228, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3229, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3230, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3231, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3232, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3233, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3234, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3235, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3236, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3237, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3238, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3239, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3240, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3241, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3242, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3243, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3244, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3245, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3246, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3247, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3248, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3249, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3250, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3251, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3252, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3253, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3254, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3255, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3256, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3257, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3258, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3259, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3260, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3261, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3262, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3263, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3264, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3265, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3266, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3267, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3268, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3269, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3270, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3271, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3272, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3273, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3274, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3275, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3276, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3277, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3278, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3279, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3280, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3281, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3282, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3283, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3284, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3285, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3286, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3287, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3288, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3289, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3290, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3291, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3292, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3293, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3294, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3295, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3296, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3297, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3298, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3299, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3300, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3301, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3302, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3303, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3304, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3305, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3306, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3307, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3308, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3309, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3310, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3311, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3312, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3313, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3314, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3315, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3316, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3317, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3318, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3319, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3320, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3321, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3322, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3323, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3324, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3325, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3326, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3327, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3328, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3329, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3330, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3331, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3332, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3333, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3334, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3335, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3336, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3337, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3338, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3339, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3340, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3341, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3342, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3343, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3344, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3345, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3346, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3347, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3348, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3349, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3350, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3351, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3352, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3353, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3354, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3355, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3356, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3357, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3358, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3359, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3360, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3361, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3362, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3363, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3364, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3365, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3366, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3367, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3368, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3369, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3370, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3371, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3372, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3373, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3374, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3375, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3376, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3377, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3378, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3379, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3380, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3381, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3382, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3383, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3384, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3385, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3386, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3387, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3388, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3389, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3390, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3391, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3392, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3393, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3394, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3395, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3396, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3397, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3398, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3399, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3400, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3401, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3402, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3403, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3404, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3405, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3406, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3407, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3408, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3409, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3410, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3411, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3412, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3413, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3414, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3415, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3416, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3417, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3418, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3419, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3420, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3421, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3422, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3423, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3424, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3425, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3426, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3427, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3428, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3429, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3430, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3431, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3432, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3433, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3434, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3435, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3436, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3437, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3438, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3439, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3440, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3441, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3442, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3443, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3444, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3445, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3446, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3447, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3448, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3449, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3450, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3451, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3452, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3453, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3454, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3455, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3456, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3457, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3458, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3459, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3460, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3461, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3462, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3463, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3464, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3465, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3466, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3467, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3468, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3469, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3470, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3471, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3472, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3473, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3474, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3475, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3476, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3477, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3478, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3479, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3480, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3481, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3482, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3483, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3484, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3485, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3486, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3487, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3488, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3489, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3490, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3491, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3492, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3493, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3494, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3495, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3496, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3497, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3498, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3499, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3500, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3501, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3502, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3503, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3504, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3505, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3506, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3507, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3508, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3509, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3510, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3511, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3512, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3513, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3514, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3515, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3516, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3517, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3518, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3519, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3520, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3521, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3522, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3523, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3524, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3525, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3526, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3527, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3528, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3529, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3530, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3531, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3532, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3533, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3534, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3535, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3536, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3537, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3538, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3539, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3540, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3541, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3542, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3543, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3544, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3545, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3546, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3547, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3548, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3549, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3550, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3551, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3552, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3553, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3554, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3555, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3556, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3557, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3558, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3559, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3560, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3561, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3562, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3563, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3564, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3565, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3566, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3567, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3568, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3569, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3570, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3571, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3572, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3573, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3574, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3575, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3576, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3577, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3578, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3579, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3580, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3581, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3582, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3583, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3584, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3585, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3586, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3587, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3588, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3589, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3590, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3591, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3592, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3593, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3594, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3595, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3596, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3597, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3598, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3599, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3600, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3601, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3602, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3603, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3604, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3605, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3606, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3607, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 164, + "name": "diamond_ore", + "translation_key": "block.minecraft.diamond_ore", + "properties": [], + "default_state_id": 3608, + "states": [ + { + "id": 3608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 165, + "name": "deepslate_diamond_ore", + "translation_key": "block.minecraft.deepslate_diamond_ore", + "properties": [], + "default_state_id": 3609, + "states": [ + { + "id": 3609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 166, + "name": "diamond_block", + "translation_key": "block.minecraft.diamond_block", + "properties": [], + "default_state_id": 3610, + "states": [ + { + "id": 3610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 167, + "name": "crafting_table", + "translation_key": "block.minecraft.crafting_table", + "properties": [], + "default_state_id": 3611, + "states": [ + { + "id": 3611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 168, + "name": "wheat", + "translation_key": "block.minecraft.wheat", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 3612, + "states": [ + { + "id": 3612, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3613, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3614, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3615, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3616, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3617, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3618, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3619, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 169, + "name": "farmland", + "translation_key": "block.minecraft.farmland", + "properties": [ + { + "name": "moisture", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 3620, + "states": [ + { + "id": 3620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + }, + { + "id": 3627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + } + ] + }, + { + "id": 170, + "name": "furnace", + "translation_key": "block.minecraft.furnace", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3629, + "states": [ + { + "id": 3628, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3630, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3632, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3634, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 3635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 171, + "name": "oak_sign", + "translation_key": "block.minecraft.oak_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3637, + "states": [ + { + "id": 3636, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3637, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3638, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3639, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3640, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3641, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3642, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3643, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3644, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3645, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3646, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3647, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3648, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3649, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3650, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3651, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3652, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3653, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3654, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3655, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3656, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3657, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3658, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3659, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3660, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3661, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3662, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3663, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3664, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3665, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3666, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3667, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 172, + "name": "spruce_sign", + "translation_key": "block.minecraft.spruce_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3669, + "states": [ + { + "id": 3668, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3669, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3670, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3671, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3672, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3673, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3674, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3675, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3676, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3677, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3678, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3679, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3680, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3681, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3682, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3683, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3684, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3685, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3686, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3687, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3688, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3689, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3690, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3691, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3692, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3693, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3694, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3695, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3696, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3697, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3698, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3699, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 173, + "name": "birch_sign", + "translation_key": "block.minecraft.birch_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3701, + "states": [ + { + "id": 3700, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3701, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3702, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3703, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3704, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3705, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3706, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3707, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3708, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3709, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3710, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3711, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3712, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3713, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3714, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3715, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3716, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3717, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3718, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3719, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3720, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3721, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3722, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3723, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3724, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3725, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3726, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3727, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3728, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3729, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3730, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3731, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 174, + "name": "acacia_sign", + "translation_key": "block.minecraft.acacia_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3733, + "states": [ + { + "id": 3732, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3733, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3734, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3735, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3736, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3737, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3738, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3739, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3740, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3741, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3742, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3743, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3744, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3745, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3746, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3747, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3748, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3749, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3750, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3751, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3752, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3753, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3754, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3755, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3756, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3757, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3758, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3759, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3760, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3761, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3762, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3763, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 175, + "name": "jungle_sign", + "translation_key": "block.minecraft.jungle_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3765, + "states": [ + { + "id": 3764, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3765, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3766, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3767, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3768, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3769, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3770, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3771, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3772, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3773, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3774, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3775, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3776, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3777, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3778, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3779, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3780, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3781, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3782, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3783, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3784, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3785, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3786, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3787, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3788, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3789, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3790, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3791, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3792, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3793, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3794, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3795, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 176, + "name": "dark_oak_sign", + "translation_key": "block.minecraft.dark_oak_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3797, + "states": [ + { + "id": 3796, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3797, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3798, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3799, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3800, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3801, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3802, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3803, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3804, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3805, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3806, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3807, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3808, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3809, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3810, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3811, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3812, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3813, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3814, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3815, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3816, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3817, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3818, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3819, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3820, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3821, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3822, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3823, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3824, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3825, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3826, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3827, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 177, + "name": "mangrove_sign", + "translation_key": "block.minecraft.mangrove_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3829, + "states": [ + { + "id": 3828, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3829, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3830, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3831, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3832, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3833, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3834, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3835, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3836, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3837, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3838, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3839, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3840, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3841, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3842, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3843, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3844, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3845, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3846, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3847, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3848, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3849, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3850, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3851, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3852, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3853, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3854, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3855, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3856, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3857, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3858, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3859, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 178, + "name": "oak_door", + "translation_key": "block.minecraft.oak_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3871, + "states": [ + { + "id": 3860, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3861, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3862, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3863, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3864, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3865, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3866, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3867, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3868, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3869, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3870, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3871, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3872, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3873, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3874, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3875, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3876, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3877, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3878, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3879, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3880, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3881, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3882, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3883, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3884, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3885, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3886, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3887, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3888, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3889, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3890, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3891, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3892, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3893, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3894, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3895, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3896, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3897, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3898, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3899, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3900, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3901, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3902, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3903, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3904, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3905, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3906, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3907, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3908, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3909, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3910, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3911, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3912, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3913, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3914, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3915, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3916, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3917, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3918, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3919, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3920, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3921, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3922, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3923, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 179, + "name": "ladder", + "translation_key": "block.minecraft.ladder", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3925, + "states": [ + { + "id": 3924, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3925, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 3926, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3927, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 3928, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3929, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 3930, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 3931, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 180, + "name": "rail", + "translation_key": "block.minecraft.rail", + "properties": [ + { + "name": "shape", + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3933, + "states": [ + { + "id": 3932, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3933, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3934, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3935, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3936, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3937, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3938, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3939, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3940, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3941, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3942, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3943, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3944, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3945, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3946, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3947, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3948, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3949, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3950, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 3951, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 181, + "name": "cobblestone_stairs", + "translation_key": "block.minecraft.cobblestone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 3963, + "states": [ + { + "id": 3952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 3953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 3954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 3955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 3956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 3957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 3958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 3959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 3960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 3961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 3962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 3963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 3964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 3965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 3966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 3967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 3968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 3969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 3970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 3971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 3972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 3973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 3974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 3975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 3976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 3977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 3978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 3979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 3980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 3981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 3982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 3983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 3984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 3985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 3986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 3987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 3988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 3989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 3990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 3991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 3992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 3993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 3994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 3995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 3996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 3997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 3998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 3999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 4000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 4001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 4002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 4003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 4004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 4005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 4006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 4007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 4008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 4009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 4010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 4011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 4012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 4013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 4014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 4015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 4016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 4017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 4018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 4019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 4020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 4021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 4022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 4023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 4024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 4025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 4026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 4027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 4028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 4029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 4030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 4031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 182, + "name": "oak_wall_sign", + "translation_key": "block.minecraft.oak_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4033, + "states": [ + { + "id": 4032, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4033, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4034, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4035, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4036, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4037, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4038, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4039, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 183, + "name": "spruce_wall_sign", + "translation_key": "block.minecraft.spruce_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4041, + "states": [ + { + "id": 4040, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4041, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4042, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4043, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4044, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4045, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4046, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4047, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 184, + "name": "birch_wall_sign", + "translation_key": "block.minecraft.birch_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4049, + "states": [ + { + "id": 4048, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4049, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4050, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4051, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4052, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4053, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4054, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4055, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 185, + "name": "acacia_wall_sign", + "translation_key": "block.minecraft.acacia_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4057, + "states": [ + { + "id": 4056, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4057, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4058, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4059, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4060, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4061, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4062, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4063, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 186, + "name": "jungle_wall_sign", + "translation_key": "block.minecraft.jungle_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4065, + "states": [ + { + "id": 4064, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4065, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4066, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4067, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4068, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4069, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4070, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4071, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 187, + "name": "dark_oak_wall_sign", + "translation_key": "block.minecraft.dark_oak_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4073, + "states": [ + { + "id": 4072, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4073, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4074, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4075, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4076, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4077, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4078, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4079, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 188, + "name": "mangrove_wall_sign", + "translation_key": "block.minecraft.mangrove_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4081, + "states": [ + { + "id": 4080, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4081, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4082, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4083, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4084, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4085, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4086, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4087, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 189, + "name": "lever", + "translation_key": "block.minecraft.lever", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4097, + "states": [ + { + "id": 4088, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4089, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4090, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4091, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4092, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4093, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4094, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4095, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4096, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4097, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4098, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4099, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4100, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4101, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4102, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4103, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4104, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4105, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4106, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4107, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4108, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4109, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4110, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4111, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 190, + "name": "stone_pressure_plate", + "translation_key": "block.minecraft.stone_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4113, + "states": [ + { + "id": 4112, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4113, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 191, + "name": "iron_door", + "translation_key": "block.minecraft.iron_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4125, + "states": [ + { + "id": 4114, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4115, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4116, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4117, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4118, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4119, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4120, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4121, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4122, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4123, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4124, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4125, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4126, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4127, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4128, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4129, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4130, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4131, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4132, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4133, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4134, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4135, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4136, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4137, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4138, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4139, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4140, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4141, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4142, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4143, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4144, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4145, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4146, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4147, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4148, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4149, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4150, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4151, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4152, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4153, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4154, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4155, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4156, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4157, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4158, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4159, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4160, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4161, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4162, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4163, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4164, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4165, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4166, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4167, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4168, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4169, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4170, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4171, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4172, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4173, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4174, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4175, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4176, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4177, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 192, + "name": "oak_pressure_plate", + "translation_key": "block.minecraft.oak_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4179, + "states": [ + { + "id": 4178, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4179, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 193, + "name": "spruce_pressure_plate", + "translation_key": "block.minecraft.spruce_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4181, + "states": [ + { + "id": 4180, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4181, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 194, + "name": "birch_pressure_plate", + "translation_key": "block.minecraft.birch_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4183, + "states": [ + { + "id": 4182, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4183, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 195, + "name": "jungle_pressure_plate", + "translation_key": "block.minecraft.jungle_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4185, + "states": [ + { + "id": 4184, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4185, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 196, + "name": "acacia_pressure_plate", + "translation_key": "block.minecraft.acacia_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4187, + "states": [ + { + "id": 4186, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4187, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 197, + "name": "dark_oak_pressure_plate", + "translation_key": "block.minecraft.dark_oak_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4189, + "states": [ + { + "id": 4188, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4189, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 198, + "name": "mangrove_pressure_plate", + "translation_key": "block.minecraft.mangrove_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4191, + "states": [ + { + "id": 4190, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4191, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 199, + "name": "redstone_ore", + "translation_key": "block.minecraft.redstone_ore", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4193, + "states": [ + { + "id": 4192, + "luminance": 9, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 200, + "name": "deepslate_redstone_ore", + "translation_key": "block.minecraft.deepslate_redstone_ore", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4195, + "states": [ + { + "id": 4194, + "luminance": 9, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 201, + "name": "redstone_torch", + "translation_key": "block.minecraft.redstone_torch", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4196, + "states": [ + { + "id": 4196, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4197, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 202, + "name": "redstone_wall_torch", + "translation_key": "block.minecraft.redstone_torch", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4198, + "states": [ + { + "id": 4198, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4199, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4200, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4201, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4202, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4203, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4204, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4205, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 203, + "name": "stone_button", + "translation_key": "block.minecraft.stone_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4215, + "states": [ + { + "id": 4206, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4207, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4208, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4209, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4210, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4211, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4212, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4213, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4214, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4215, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4216, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4217, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4218, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4219, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4220, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4221, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4222, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4223, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4224, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4225, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4226, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4227, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4228, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4229, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 204, + "name": "snow", + "translation_key": "block.minecraft.snow", + "properties": [ + { + "name": "layers", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + } + ], + "default_state_id": 4230, + "states": [ + { + "id": 4230, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 4231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 38 + ] + }, + { + "id": 4233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 4234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 4235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 70 + ] + }, + { + "id": 4236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 18 + ] + }, + { + "id": 4237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 71 + ] + } + ] + }, + { + "id": 205, + "name": "ice", + "translation_key": "block.minecraft.ice", + "properties": [], + "default_state_id": 4238, + "states": [ + { + "id": 4238, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 206, + "name": "snow_block", + "translation_key": "block.minecraft.snow_block", + "properties": [], + "default_state_id": 4239, + "states": [ + { + "id": 4239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 207, + "name": "cactus", + "translation_key": "block.minecraft.cactus", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 4240, + "states": [ + { + "id": 4240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + }, + { + "id": 4255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 72 + ] + } + ] + }, + { + "id": 208, + "name": "clay", + "translation_key": "block.minecraft.clay", + "properties": [], + "default_state_id": 4256, + "states": [ + { + "id": 4256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 209, + "name": "sugar_cane", + "translation_key": "block.minecraft.sugar_cane", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 4257, + "states": [ + { + "id": 4257, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4258, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4259, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4260, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4261, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4262, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4263, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4264, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4265, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4266, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4267, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4268, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4269, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4270, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4271, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4272, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 210, + "name": "jukebox", + "translation_key": "block.minecraft.jukebox", + "properties": [ + { + "name": "has_record", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4274, + "states": [ + { + "id": 4273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 211, + "name": "oak_fence", + "translation_key": "block.minecraft.oak_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4306, + "states": [ + { + "id": 4275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 4276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 4277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 4278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 4279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 4280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 4281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 4282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 4283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 4284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 4285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 4286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 4287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 4288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 4289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 4290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 4291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 4292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 4293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 4294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 4295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 4296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 4297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 4298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 4299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 4300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 4301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 4302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 4303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 4304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 4305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 4306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 212, + "name": "pumpkin", + "translation_key": "block.minecraft.pumpkin", + "properties": [], + "default_state_id": 4307, + "states": [ + { + "id": 4307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 213, + "name": "netherrack", + "translation_key": "block.minecraft.netherrack", + "properties": [], + "default_state_id": 4308, + "states": [ + { + "id": 4308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 214, + "name": "soul_sand", + "translation_key": "block.minecraft.soul_sand", + "properties": [], + "default_state_id": 4309, + "states": [ + { + "id": 4309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 71 + ] + } + ] + }, + { + "id": 215, + "name": "soul_soil", + "translation_key": "block.minecraft.soul_soil", + "properties": [], + "default_state_id": 4310, + "states": [ + { + "id": 4310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 216, + "name": "basalt", + "translation_key": "block.minecraft.basalt", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 4312, + "states": [ + { + "id": 4311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 217, + "name": "polished_basalt", + "translation_key": "block.minecraft.polished_basalt", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 4315, + "states": [ + { + "id": 4314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 218, + "name": "soul_torch", + "translation_key": "block.minecraft.soul_torch", + "properties": [], + "default_state_id": 4317, + "states": [ + { + "id": 4317, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 219, + "name": "soul_wall_torch", + "translation_key": "block.minecraft.soul_torch", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 4318, + "states": [ + { + "id": 4318, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4319, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4320, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4321, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 220, + "name": "glowstone", + "translation_key": "block.minecraft.glowstone", + "properties": [], + "default_state_id": 4322, + "states": [ + { + "id": 4322, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 221, + "name": "nether_portal", + "translation_key": "block.minecraft.nether_portal", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "z" + ] + } + ], + "default_state_id": 4323, + "states": [ + { + "id": 4323, + "luminance": 11, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 4324, + "luminance": 11, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 222, + "name": "carved_pumpkin", + "translation_key": "block.minecraft.carved_pumpkin", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 4325, + "states": [ + { + "id": 4325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 223, + "name": "jack_o_lantern", + "translation_key": "block.minecraft.jack_o_lantern", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 4329, + "states": [ + { + "id": 4329, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4330, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4331, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4332, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 224, + "name": "cake", + "translation_key": "block.minecraft.cake", + "properties": [ + { + "name": "bites", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + } + ], + "default_state_id": 4333, + "states": [ + { + "id": 4333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83 + ] + }, + { + "id": 4334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 84 + ] + }, + { + "id": 4335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 85 + ] + }, + { + "id": 4336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 86 + ] + }, + { + "id": 4337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 87 + ] + }, + { + "id": 4338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 88 + ] + }, + { + "id": 4339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 89 + ] + } + ] + }, + { + "id": 225, + "name": "repeater", + "translation_key": "block.minecraft.repeater", + "properties": [ + { + "name": "delay", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "locked", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4343, + "states": [ + { + "id": 4340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 4403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + } + ] + }, + { + "id": 226, + "name": "white_stained_glass", + "translation_key": "block.minecraft.white_stained_glass", + "properties": [], + "default_state_id": 4404, + "states": [ + { + "id": 4404, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 227, + "name": "orange_stained_glass", + "translation_key": "block.minecraft.orange_stained_glass", + "properties": [], + "default_state_id": 4405, + "states": [ + { + "id": 4405, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 228, + "name": "magenta_stained_glass", + "translation_key": "block.minecraft.magenta_stained_glass", + "properties": [], + "default_state_id": 4406, + "states": [ + { + "id": 4406, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 229, + "name": "light_blue_stained_glass", + "translation_key": "block.minecraft.light_blue_stained_glass", + "properties": [], + "default_state_id": 4407, + "states": [ + { + "id": 4407, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 230, + "name": "yellow_stained_glass", + "translation_key": "block.minecraft.yellow_stained_glass", + "properties": [], + "default_state_id": 4408, + "states": [ + { + "id": 4408, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 231, + "name": "lime_stained_glass", + "translation_key": "block.minecraft.lime_stained_glass", + "properties": [], + "default_state_id": 4409, + "states": [ + { + "id": 4409, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 232, + "name": "pink_stained_glass", + "translation_key": "block.minecraft.pink_stained_glass", + "properties": [], + "default_state_id": 4410, + "states": [ + { + "id": 4410, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 233, + "name": "gray_stained_glass", + "translation_key": "block.minecraft.gray_stained_glass", + "properties": [], + "default_state_id": 4411, + "states": [ + { + "id": 4411, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 234, + "name": "light_gray_stained_glass", + "translation_key": "block.minecraft.light_gray_stained_glass", + "properties": [], + "default_state_id": 4412, + "states": [ + { + "id": 4412, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 235, + "name": "cyan_stained_glass", + "translation_key": "block.minecraft.cyan_stained_glass", + "properties": [], + "default_state_id": 4413, + "states": [ + { + "id": 4413, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 236, + "name": "purple_stained_glass", + "translation_key": "block.minecraft.purple_stained_glass", + "properties": [], + "default_state_id": 4414, + "states": [ + { + "id": 4414, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 237, + "name": "blue_stained_glass", + "translation_key": "block.minecraft.blue_stained_glass", + "properties": [], + "default_state_id": 4415, + "states": [ + { + "id": 4415, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 238, + "name": "brown_stained_glass", + "translation_key": "block.minecraft.brown_stained_glass", + "properties": [], + "default_state_id": 4416, + "states": [ + { + "id": 4416, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 239, + "name": "green_stained_glass", + "translation_key": "block.minecraft.green_stained_glass", + "properties": [], + "default_state_id": 4417, + "states": [ + { + "id": 4417, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 240, + "name": "red_stained_glass", + "translation_key": "block.minecraft.red_stained_glass", + "properties": [], + "default_state_id": 4418, + "states": [ + { + "id": 4418, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 241, + "name": "black_stained_glass", + "translation_key": "block.minecraft.black_stained_glass", + "properties": [], + "default_state_id": 4419, + "states": [ + { + "id": 4419, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 242, + "name": "oak_trapdoor", + "translation_key": "block.minecraft.oak_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4435, + "states": [ + { + "id": 4420, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4421, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4422, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4423, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4424, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4425, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4426, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4427, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4428, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4429, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4430, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4431, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4432, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4433, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4434, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4435, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4436, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4437, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4438, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4439, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4440, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4441, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4442, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4443, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4444, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4445, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4446, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4447, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4448, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4449, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4450, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4451, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4452, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4453, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4454, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4455, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4456, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4457, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4458, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4459, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4460, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4461, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4462, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4463, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4464, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4465, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4466, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4467, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4468, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4469, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4470, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4471, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4472, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4473, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4474, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4475, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4476, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4477, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4478, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4479, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4480, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4481, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4482, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4483, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 243, + "name": "spruce_trapdoor", + "translation_key": "block.minecraft.spruce_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4499, + "states": [ + { + "id": 4484, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4485, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4486, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4487, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4488, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4489, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4490, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4491, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4492, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4493, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4494, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4495, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4496, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4497, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4498, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4499, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4500, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4501, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4502, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4503, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4504, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4505, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4506, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4507, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4508, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4509, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4510, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4511, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4512, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4513, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4514, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4515, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4516, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4517, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4518, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4519, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4520, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4521, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4522, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4523, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4524, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4525, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4526, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4527, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4528, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4529, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4530, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4531, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4532, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4533, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4534, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4535, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4536, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4537, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4538, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4539, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4540, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4541, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4542, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4543, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4544, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4545, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4546, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4547, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 244, + "name": "birch_trapdoor", + "translation_key": "block.minecraft.birch_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4563, + "states": [ + { + "id": 4548, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4549, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4550, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4551, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4552, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4553, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4554, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4555, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4556, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4557, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4558, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4559, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4560, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4561, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4562, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4563, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4564, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4565, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4566, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4567, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4568, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4569, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4570, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4571, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4572, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4573, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4574, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4575, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4576, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4577, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4578, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4579, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4580, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4581, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4582, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4583, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4584, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4585, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4586, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4587, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4588, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4589, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4590, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4591, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4592, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4593, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4594, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4595, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4596, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4597, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4598, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4599, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4600, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4601, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4602, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4603, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4604, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4605, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4606, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4607, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4608, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4609, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4610, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4611, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 245, + "name": "jungle_trapdoor", + "translation_key": "block.minecraft.jungle_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4627, + "states": [ + { + "id": 4612, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4613, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4614, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4615, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4616, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4617, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4618, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4619, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4620, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4621, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4622, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4623, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4624, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4625, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4626, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4627, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4628, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4629, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4630, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4631, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4632, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4633, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4634, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4635, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4636, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4637, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4638, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4639, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4640, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4641, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4642, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4643, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4644, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4645, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4646, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4647, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4648, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4649, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4650, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4651, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4652, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4653, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4654, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4655, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4656, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4657, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4658, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4659, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4660, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4661, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4662, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4663, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4664, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4665, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4666, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4667, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4668, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4669, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4670, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4671, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4672, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4673, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4674, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4675, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 246, + "name": "acacia_trapdoor", + "translation_key": "block.minecraft.acacia_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4691, + "states": [ + { + "id": 4676, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4677, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4678, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4679, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4680, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4681, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4682, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4683, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4684, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4685, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4686, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4687, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4688, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4689, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4690, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4691, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4692, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4693, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4694, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4695, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4696, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4697, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4698, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4699, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4700, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4701, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4702, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4703, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4704, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4705, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4706, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4707, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4708, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4709, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4710, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4711, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4712, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4713, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4714, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4715, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4716, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4717, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4718, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4719, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4720, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4721, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4722, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4723, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4724, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4725, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4726, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4727, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4728, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4729, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4730, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4731, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4732, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4733, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4734, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4735, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4736, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4737, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4738, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4739, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 247, + "name": "dark_oak_trapdoor", + "translation_key": "block.minecraft.dark_oak_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4755, + "states": [ + { + "id": 4740, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4741, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4742, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4743, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4744, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4745, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4746, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4747, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4748, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4749, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4750, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4751, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4752, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4753, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4754, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4755, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4756, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4757, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4758, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4759, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4760, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4761, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4762, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4763, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4764, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4765, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4766, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4767, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4768, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4769, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4770, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4771, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4772, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4773, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4774, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4775, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4776, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4777, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4778, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4779, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4780, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4781, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4782, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4783, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4784, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4785, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4786, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4787, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4788, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4789, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4790, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4791, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4792, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4793, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4794, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4795, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4796, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4797, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4798, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4799, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4800, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4801, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4802, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4803, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 248, + "name": "mangrove_trapdoor", + "translation_key": "block.minecraft.mangrove_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4819, + "states": [ + { + "id": 4804, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4805, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4806, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4807, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4808, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4809, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4810, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4811, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4812, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4813, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4814, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4815, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4816, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4817, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4818, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4819, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4820, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4821, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4822, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4823, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4824, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4825, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4826, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4827, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4828, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4829, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4830, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4831, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4832, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4833, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4834, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4835, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4836, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4837, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4838, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4839, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4840, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4841, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4842, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4843, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4844, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4845, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4846, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4847, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4848, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4849, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4850, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4851, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4852, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4853, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4854, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4855, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4856, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4857, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4858, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4859, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 4860, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4861, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4862, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4863, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4864, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4865, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4866, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 4867, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 249, + "name": "stone_bricks", + "translation_key": "block.minecraft.stone_bricks", + "properties": [], + "default_state_id": 4868, + "states": [ + { + "id": 4868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 250, + "name": "mossy_stone_bricks", + "translation_key": "block.minecraft.mossy_stone_bricks", + "properties": [], + "default_state_id": 4869, + "states": [ + { + "id": 4869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 251, + "name": "cracked_stone_bricks", + "translation_key": "block.minecraft.cracked_stone_bricks", + "properties": [], + "default_state_id": 4870, + "states": [ + { + "id": 4870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 252, + "name": "chiseled_stone_bricks", + "translation_key": "block.minecraft.chiseled_stone_bricks", + "properties": [], + "default_state_id": 4871, + "states": [ + { + "id": 4871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 253, + "name": "packed_mud", + "translation_key": "block.minecraft.packed_mud", + "properties": [], + "default_state_id": 4872, + "states": [ + { + "id": 4872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 254, + "name": "mud_bricks", + "translation_key": "block.minecraft.mud_bricks", + "properties": [], + "default_state_id": 4873, + "states": [ + { + "id": 4873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 255, + "name": "infested_stone", + "translation_key": "block.minecraft.infested_stone", + "properties": [], + "default_state_id": 4874, + "states": [ + { + "id": 4874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 256, + "name": "infested_cobblestone", + "translation_key": "block.minecraft.infested_cobblestone", + "properties": [], + "default_state_id": 4875, + "states": [ + { + "id": 4875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 257, + "name": "infested_stone_bricks", + "translation_key": "block.minecraft.infested_stone_bricks", + "properties": [], + "default_state_id": 4876, + "states": [ + { + "id": 4876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 258, + "name": "infested_mossy_stone_bricks", + "translation_key": "block.minecraft.infested_mossy_stone_bricks", + "properties": [], + "default_state_id": 4877, + "states": [ + { + "id": 4877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 259, + "name": "infested_cracked_stone_bricks", + "translation_key": "block.minecraft.infested_cracked_stone_bricks", + "properties": [], + "default_state_id": 4878, + "states": [ + { + "id": 4878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 260, + "name": "infested_chiseled_stone_bricks", + "translation_key": "block.minecraft.infested_chiseled_stone_bricks", + "properties": [], + "default_state_id": 4879, + "states": [ + { + "id": 4879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 261, + "name": "brown_mushroom_block", + "translation_key": "block.minecraft.brown_mushroom_block", + "properties": [ + { + "name": "down", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4880, + "states": [ + { + "id": 4880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 262, + "name": "red_mushroom_block", + "translation_key": "block.minecraft.red_mushroom_block", + "properties": [ + { + "name": "down", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4944, + "states": [ + { + "id": 4944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 4999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 263, + "name": "mushroom_stem", + "translation_key": "block.minecraft.mushroom_stem", + "properties": [ + { + "name": "down", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5008, + "states": [ + { + "id": 5008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 264, + "name": "iron_bars", + "translation_key": "block.minecraft.iron_bars", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5103, + "states": [ + { + "id": 5072, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 5073, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 5074, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 5075, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 5076, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 5077, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 5078, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 5079, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 5080, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 5081, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 5082, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 5083, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 5084, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 5085, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 5086, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 5087, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 5088, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 5089, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 5090, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 5091, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 5092, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 5093, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 5094, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 5095, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 5096, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 5097, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 5098, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 5099, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 5100, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 5101, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 5102, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 5103, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 265, + "name": "chain", + "translation_key": "block.minecraft.chain", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5107, + "states": [ + { + "id": 5104, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 5105, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 5106, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 103 + ] + }, + { + "id": 5107, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 103 + ] + }, + { + "id": 5108, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 104 + ] + }, + { + "id": 5109, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 104 + ] + } + ] + }, + { + "id": 266, + "name": "glass_pane", + "translation_key": "block.minecraft.glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5141, + "states": [ + { + "id": 5110, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 5111, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 5112, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 5113, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 5114, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 5115, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 5116, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 5117, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 5118, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 5119, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 5120, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 5121, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 5122, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 5123, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 5124, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 5125, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 5126, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 5127, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 5128, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 5129, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 5130, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 5131, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 5132, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 5133, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 5134, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 5135, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 5136, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 5137, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 5138, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 5139, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 5140, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 5141, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 267, + "name": "melon", + "translation_key": "block.minecraft.melon", + "properties": [], + "default_state_id": 5142, + "states": [ + { + "id": 5142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 268, + "name": "attached_pumpkin_stem", + "translation_key": "block.minecraft.attached_pumpkin_stem", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 5143, + "states": [ + { + "id": 5143, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5144, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5145, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5146, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 269, + "name": "attached_melon_stem", + "translation_key": "block.minecraft.attached_melon_stem", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 5147, + "states": [ + { + "id": 5147, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5148, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5149, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5150, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 270, + "name": "pumpkin_stem", + "translation_key": "block.minecraft.pumpkin_stem", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 5151, + "states": [ + { + "id": 5151, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5152, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5153, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5154, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5155, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5156, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5157, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5158, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 271, + "name": "melon_stem", + "translation_key": "block.minecraft.melon_stem", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 5159, + "states": [ + { + "id": 5159, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5160, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5161, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5162, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5163, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5164, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5165, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5166, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 272, + "name": "vine", + "translation_key": "block.minecraft.vine", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5198, + "states": [ + { + "id": 5167, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5168, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5169, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5170, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5171, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5172, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5173, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5174, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5175, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5176, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5177, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5178, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5179, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5180, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5181, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5182, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5183, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5184, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5185, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5186, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5187, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5188, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5189, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5190, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5191, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5192, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5193, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5194, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5195, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5196, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5197, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5198, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 273, + "name": "glow_lichen", + "translation_key": "block.minecraft.glow_lichen", + "properties": [ + { + "name": "down", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5326, + "states": [ + { + "id": 5199, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5200, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5201, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5202, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5203, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5204, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5205, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5206, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5207, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5208, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5209, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5210, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5211, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5212, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5213, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5214, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5215, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5216, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5217, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5218, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5219, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5220, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5221, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5222, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5223, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5224, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5225, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5226, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5227, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5228, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5229, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5230, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5231, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5232, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5233, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5234, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5235, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5236, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5237, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5238, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5239, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5240, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5241, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5242, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5243, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5244, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5245, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5246, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5247, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5248, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5249, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5250, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5251, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5252, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5253, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5254, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5255, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5256, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5257, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5258, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5259, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5260, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5261, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5262, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5263, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5264, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5265, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5266, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5267, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5268, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5269, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5270, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5271, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5272, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5273, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5274, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5275, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5276, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5277, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5278, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5279, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5280, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5281, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5282, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5283, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5284, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5285, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5286, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5287, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5288, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5289, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5290, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5291, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5292, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5293, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5294, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5295, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5296, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5297, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5298, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5299, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5300, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5301, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5302, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5303, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5304, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5305, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5306, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5307, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5308, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5309, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5310, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5311, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5312, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5313, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5314, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5315, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5316, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5317, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5318, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5319, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5320, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5321, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5322, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5323, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5324, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5325, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5326, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 274, + "name": "oak_fence_gate", + "translation_key": "block.minecraft.oak_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5334, + "states": [ + { + "id": 5327, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5328, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5331, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5332, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5335, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5336, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5339, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5340, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5343, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5344, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5347, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5348, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5351, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5352, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5355, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5356, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 5357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 275, + "name": "brick_stairs", + "translation_key": "block.minecraft.brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5370, + "states": [ + { + "id": 5359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 276, + "name": "stone_brick_stairs", + "translation_key": "block.minecraft.stone_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5450, + "states": [ + { + "id": 5439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 277, + "name": "mud_brick_stairs", + "translation_key": "block.minecraft.mud_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5530, + "states": [ + { + "id": 5519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 278, + "name": "mycelium", + "translation_key": "block.minecraft.mycelium", + "properties": [ + { + "name": "snowy", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5600, + "states": [ + { + "id": 5599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 279, + "name": "lily_pad", + "translation_key": "block.minecraft.lily_pad", + "properties": [], + "default_state_id": 5601, + "states": [ + { + "id": 5601, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 105 + ] + } + ] + }, + { + "id": 280, + "name": "nether_bricks", + "translation_key": "block.minecraft.nether_bricks", + "properties": [], + "default_state_id": 5602, + "states": [ + { + "id": 5602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 281, + "name": "nether_brick_fence", + "translation_key": "block.minecraft.nether_brick_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5634, + "states": [ + { + "id": 5603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 5604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 5605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 5606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 5607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 5608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 5609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 5610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 5611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 5612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 5613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 5614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 5615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 5617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 5618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 5619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 5620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 5622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 5623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 5624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 5625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 5626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 5627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 5628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 5629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 5630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 5631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 5632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 5633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 5634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 282, + "name": "nether_brick_stairs", + "translation_key": "block.minecraft.nether_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5646, + "states": [ + { + "id": 5635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 283, + "name": "nether_wart", + "translation_key": "block.minecraft.nether_wart", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "default_state_id": 5715, + "states": [ + { + "id": 5715, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5716, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5717, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5718, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 284, + "name": "enchanting_table", + "translation_key": "block.minecraft.enchanting_table", + "properties": [], + "default_state_id": 5719, + "states": [ + { + "id": 5719, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 18 + ] + } + ] + }, + { + "id": 285, + "name": "brewing_stand", + "translation_key": "block.minecraft.brewing_stand", + "properties": [ + { + "name": "has_bottle_0", + "values": [ + "true", + "false" + ] + }, + { + "name": "has_bottle_1", + "values": [ + "true", + "false" + ] + }, + { + "name": "has_bottle_2", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5727, + "states": [ + { + "id": 5720, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5721, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5722, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5723, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5724, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5725, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5726, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + }, + { + "id": 5727, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 106, + 107 + ] + } + ] + }, + { + "id": 286, + "name": "cauldron", + "translation_key": "block.minecraft.cauldron", + "properties": [], + "default_state_id": 5728, + "states": [ + { + "id": 5728, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + } + ] + }, + { + "id": 287, + "name": "water_cauldron", + "translation_key": "block.minecraft.water_cauldron", + "properties": [ + { + "name": "level", + "values": [ + "1", + "2", + "3" + ] + } + ], + "default_state_id": 5729, + "states": [ + { + "id": 5729, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + }, + { + "id": 5730, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + }, + { + "id": 5731, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + } + ] + }, + { + "id": 288, + "name": "lava_cauldron", + "translation_key": "block.minecraft.lava_cauldron", + "properties": [], + "default_state_id": 5732, + "states": [ + { + "id": 5732, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + } + ] + }, + { + "id": 289, + "name": "powder_snow_cauldron", + "translation_key": "block.minecraft.powder_snow_cauldron", + "properties": [ + { + "name": "level", + "values": [ + "1", + "2", + "3" + ] + } + ], + "default_state_id": 5733, + "states": [ + { + "id": 5733, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + }, + { + "id": 5734, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + }, + { + "id": 5735, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + } + ] + }, + { + "id": 290, + "name": "end_portal", + "translation_key": "block.minecraft.end_portal", + "properties": [], + "default_state_id": 5736, + "states": [ + { + "id": 5736, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 291, + "name": "end_portal_frame", + "translation_key": "block.minecraft.end_portal_frame", + "properties": [ + { + "name": "eye", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 5741, + "states": [ + { + "id": 5737, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123, + 124 + ] + }, + { + "id": 5738, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123, + 124 + ] + }, + { + "id": 5739, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123, + 124 + ] + }, + { + "id": 5740, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123, + 124 + ] + }, + { + "id": 5741, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123 + ] + }, + { + "id": 5742, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123 + ] + }, + { + "id": 5743, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123 + ] + }, + { + "id": 5744, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 123 + ] + } + ] + }, + { + "id": 292, + "name": "end_stone", + "translation_key": "block.minecraft.end_stone", + "properties": [], + "default_state_id": 5745, + "states": [ + { + "id": 5745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 293, + "name": "dragon_egg", + "translation_key": "block.minecraft.dragon_egg", + "properties": [], + "default_state_id": 5746, + "states": [ + { + "id": 5746, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 125 + ] + } + ] + }, + { + "id": 294, + "name": "redstone_lamp", + "translation_key": "block.minecraft.redstone_lamp", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5748, + "states": [ + { + "id": 5747, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 295, + "name": "cocoa", + "translation_key": "block.minecraft.cocoa", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 5749, + "states": [ + { + "id": 5749, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 126 + ] + }, + { + "id": 5750, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 127 + ] + }, + { + "id": 5751, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 128 + ] + }, + { + "id": 5752, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 129 + ] + }, + { + "id": 5753, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 130 + ] + }, + { + "id": 5754, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 131 + ] + }, + { + "id": 5755, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 132 + ] + }, + { + "id": 5756, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 133 + ] + }, + { + "id": 5757, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 134 + ] + }, + { + "id": 5758, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 135 + ] + }, + { + "id": 5759, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 136 + ] + }, + { + "id": 5760, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 137 + ] + } + ] + }, + { + "id": 296, + "name": "sandstone_stairs", + "translation_key": "block.minecraft.sandstone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5772, + "states": [ + { + "id": 5761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 5773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 5783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 5793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 5803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 5805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 5809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 5811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 5813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 5815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 5817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 5819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 5821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 5823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 5825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 5827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 5829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 5831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 5833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 5835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 5837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 5839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 5840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 297, + "name": "emerald_ore", + "translation_key": "block.minecraft.emerald_ore", + "properties": [], + "default_state_id": 5841, + "states": [ + { + "id": 5841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 298, + "name": "deepslate_emerald_ore", + "translation_key": "block.minecraft.deepslate_emerald_ore", + "properties": [], + "default_state_id": 5842, + "states": [ + { + "id": 5842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 299, + "name": "ender_chest", + "translation_key": "block.minecraft.ender_chest", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5844, + "states": [ + { + "id": 5843, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5844, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5845, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5846, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5847, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5848, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5849, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 5850, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 58 + ] + } + ] + }, + { + "id": 300, + "name": "tripwire_hook", + "translation_key": "block.minecraft.tripwire_hook", + "properties": [ + { + "name": "attached", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5860, + "states": [ + { + "id": 5851, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5852, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5853, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5854, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5855, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5856, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5857, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5858, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5859, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5860, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5861, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5862, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5863, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5864, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5865, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5866, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 301, + "name": "tripwire", + "translation_key": "block.minecraft.tripwire", + "properties": [ + { + "name": "attached", + "values": [ + "true", + "false" + ] + }, + { + "name": "disarmed", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5994, + "states": [ + { + "id": 5867, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5868, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5869, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5870, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5871, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5872, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5873, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5874, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5875, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5876, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5877, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5878, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5879, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5880, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5881, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5882, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5883, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5884, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5885, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5886, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5887, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5888, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5889, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5890, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5891, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5892, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5893, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5894, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5895, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5896, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5897, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5898, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5899, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5900, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5901, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5902, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5903, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5904, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5905, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5906, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5907, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5908, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5909, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5910, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5911, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5912, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5913, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5914, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5915, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5916, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5917, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5918, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5919, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5920, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5921, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5922, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5923, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5924, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5925, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5926, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5927, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5928, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5929, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5930, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5931, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5932, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5933, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5934, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5935, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5936, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5937, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5938, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5939, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5940, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5941, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5942, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5943, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5944, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5945, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5946, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5947, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5948, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5949, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5950, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5951, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5952, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5953, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5954, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5955, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5956, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5957, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5958, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5959, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5960, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5961, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5962, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5963, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5964, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5965, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5966, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5967, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5968, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5969, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5970, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5971, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5972, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5973, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5974, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5975, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5976, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5977, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5978, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5979, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5980, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5981, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5982, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5983, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5984, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5985, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5986, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5987, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5988, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5989, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5990, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5991, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5992, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5993, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 5994, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 302, + "name": "emerald_block", + "translation_key": "block.minecraft.emerald_block", + "properties": [], + "default_state_id": 5995, + "states": [ + { + "id": 5995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 303, + "name": "spruce_stairs", + "translation_key": "block.minecraft.spruce_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6007, + "states": [ + { + "id": 5996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 5998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 5999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 6007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 6008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 6017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 6018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 6027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 6028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 6037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 6038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 6047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 6048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 6057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 6058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 6067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 6068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 304, + "name": "birch_stairs", + "translation_key": "block.minecraft.birch_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6087, + "states": [ + { + "id": 6076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 6077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 6078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 6087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 6088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 6097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 6098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 6107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 6108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 6117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 6118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 6127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 6128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 6137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 6138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 6147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 6148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 305, + "name": "jungle_stairs", + "translation_key": "block.minecraft.jungle_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6167, + "states": [ + { + "id": 6156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 6157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 6158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 6167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 6168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 6177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 6178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 6187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 6188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 6197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 6198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 6200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 6202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 6204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 6206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 6207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 6208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 6210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 6212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 6214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 6216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 6217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 6218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 6220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 6222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 6224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 6226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 6227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 6228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 6230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 6232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 6234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 6235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 306, + "name": "command_block", + "translation_key": "block.minecraft.command_block", + "properties": [ + { + "name": "conditional", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 6242, + "states": [ + { + "id": 6236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 307, + "name": "beacon", + "translation_key": "block.minecraft.beacon", + "properties": [], + "default_state_id": 6248, + "states": [ + { + "id": 6248, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 308, + "name": "cobblestone_wall", + "translation_key": "block.minecraft.cobblestone_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 6252, + "states": [ + { + "id": 6249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 6250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 6253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6255, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 6256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6258, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 6259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 309, + "name": "mossy_cobblestone_wall", + "translation_key": "block.minecraft.mossy_cobblestone_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 6576, + "states": [ + { + "id": 6573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 6574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 6577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 6579, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 6580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6582, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 6583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 6585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 6601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 6603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 6607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 6609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 6649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 6651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 6655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 6657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 6673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 6679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 6681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 6793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 6795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 6799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 6801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 6817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 6819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 6823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 6825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 6865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 6867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 6871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 6873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 6889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 6891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 6895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 6896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 310, + "name": "flower_pot", + "translation_key": "block.minecraft.flower_pot", + "properties": [], + "default_state_id": 6897, + "states": [ + { + "id": 6897, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 311, + "name": "potted_oak_sapling", + "translation_key": "block.minecraft.potted_oak_sapling", + "properties": [], + "default_state_id": 6898, + "states": [ + { + "id": 6898, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 312, + "name": "potted_spruce_sapling", + "translation_key": "block.minecraft.potted_spruce_sapling", + "properties": [], + "default_state_id": 6899, + "states": [ + { + "id": 6899, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 313, + "name": "potted_birch_sapling", + "translation_key": "block.minecraft.potted_birch_sapling", + "properties": [], + "default_state_id": 6900, + "states": [ + { + "id": 6900, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 314, + "name": "potted_jungle_sapling", + "translation_key": "block.minecraft.potted_jungle_sapling", + "properties": [], + "default_state_id": 6901, + "states": [ + { + "id": 6901, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 315, + "name": "potted_acacia_sapling", + "translation_key": "block.minecraft.potted_acacia_sapling", + "properties": [], + "default_state_id": 6902, + "states": [ + { + "id": 6902, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 316, + "name": "potted_dark_oak_sapling", + "translation_key": "block.minecraft.potted_dark_oak_sapling", + "properties": [], + "default_state_id": 6903, + "states": [ + { + "id": 6903, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 317, + "name": "potted_mangrove_propagule", + "translation_key": "block.minecraft.potted_mangrove_propagule", + "properties": [], + "default_state_id": 6904, + "states": [ + { + "id": 6904, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 318, + "name": "potted_fern", + "translation_key": "block.minecraft.potted_fern", + "properties": [], + "default_state_id": 6905, + "states": [ + { + "id": 6905, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 319, + "name": "potted_dandelion", + "translation_key": "block.minecraft.potted_dandelion", + "properties": [], + "default_state_id": 6906, + "states": [ + { + "id": 6906, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 320, + "name": "potted_poppy", + "translation_key": "block.minecraft.potted_poppy", + "properties": [], + "default_state_id": 6907, + "states": [ + { + "id": 6907, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 321, + "name": "potted_blue_orchid", + "translation_key": "block.minecraft.potted_blue_orchid", + "properties": [], + "default_state_id": 6908, + "states": [ + { + "id": 6908, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 322, + "name": "potted_allium", + "translation_key": "block.minecraft.potted_allium", + "properties": [], + "default_state_id": 6909, + "states": [ + { + "id": 6909, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 323, + "name": "potted_azure_bluet", + "translation_key": "block.minecraft.potted_azure_bluet", + "properties": [], + "default_state_id": 6910, + "states": [ + { + "id": 6910, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 324, + "name": "potted_red_tulip", + "translation_key": "block.minecraft.potted_red_tulip", + "properties": [], + "default_state_id": 6911, + "states": [ + { + "id": 6911, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 325, + "name": "potted_orange_tulip", + "translation_key": "block.minecraft.potted_orange_tulip", + "properties": [], + "default_state_id": 6912, + "states": [ + { + "id": 6912, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 326, + "name": "potted_white_tulip", + "translation_key": "block.minecraft.potted_white_tulip", + "properties": [], + "default_state_id": 6913, + "states": [ + { + "id": 6913, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 327, + "name": "potted_pink_tulip", + "translation_key": "block.minecraft.potted_pink_tulip", + "properties": [], + "default_state_id": 6914, + "states": [ + { + "id": 6914, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 328, + "name": "potted_oxeye_daisy", + "translation_key": "block.minecraft.potted_oxeye_daisy", + "properties": [], + "default_state_id": 6915, + "states": [ + { + "id": 6915, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 329, + "name": "potted_cornflower", + "translation_key": "block.minecraft.potted_cornflower", + "properties": [], + "default_state_id": 6916, + "states": [ + { + "id": 6916, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 330, + "name": "potted_lily_of_the_valley", + "translation_key": "block.minecraft.potted_lily_of_the_valley", + "properties": [], + "default_state_id": 6917, + "states": [ + { + "id": 6917, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 331, + "name": "potted_wither_rose", + "translation_key": "block.minecraft.potted_wither_rose", + "properties": [], + "default_state_id": 6918, + "states": [ + { + "id": 6918, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 332, + "name": "potted_red_mushroom", + "translation_key": "block.minecraft.potted_red_mushroom", + "properties": [], + "default_state_id": 6919, + "states": [ + { + "id": 6919, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 333, + "name": "potted_brown_mushroom", + "translation_key": "block.minecraft.potted_brown_mushroom", + "properties": [], + "default_state_id": 6920, + "states": [ + { + "id": 6920, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 334, + "name": "potted_dead_bush", + "translation_key": "block.minecraft.potted_dead_bush", + "properties": [], + "default_state_id": 6921, + "states": [ + { + "id": 6921, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 335, + "name": "potted_cactus", + "translation_key": "block.minecraft.potted_cactus", + "properties": [], + "default_state_id": 6922, + "states": [ + { + "id": 6922, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 336, + "name": "carrots", + "translation_key": "block.minecraft.carrots", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 6923, + "states": [ + { + "id": 6923, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6924, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6925, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6926, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6927, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6928, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6929, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6930, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 337, + "name": "potatoes", + "translation_key": "block.minecraft.potatoes", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 6931, + "states": [ + { + "id": 6931, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6932, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6933, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6934, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6935, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6936, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6937, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6938, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 338, + "name": "oak_button", + "translation_key": "block.minecraft.oak_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6948, + "states": [ + { + "id": 6939, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6940, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6941, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6942, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6943, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6944, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6945, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6946, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6947, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6948, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6949, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6950, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6951, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6952, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6953, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6954, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6955, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6956, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6957, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6958, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6959, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6960, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6961, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6962, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 339, + "name": "spruce_button", + "translation_key": "block.minecraft.spruce_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6972, + "states": [ + { + "id": 6963, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6964, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6965, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6966, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6967, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6968, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6969, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6970, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6971, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6972, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6973, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6974, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6975, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6976, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6977, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6978, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6979, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6980, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6981, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6982, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6983, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6984, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6985, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6986, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 340, + "name": "birch_button", + "translation_key": "block.minecraft.birch_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6996, + "states": [ + { + "id": 6987, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6988, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6989, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6990, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6991, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6992, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6993, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6994, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6995, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6996, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6997, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6998, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 6999, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7000, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7001, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7002, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7003, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7004, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7005, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7006, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7007, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7008, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7009, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7010, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 341, + "name": "jungle_button", + "translation_key": "block.minecraft.jungle_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7020, + "states": [ + { + "id": 7011, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7012, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7013, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7014, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7015, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7016, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7017, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7018, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7019, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7020, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7021, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7022, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7023, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7024, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7025, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7026, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7027, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7028, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7029, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7030, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7031, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7032, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7033, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7034, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 342, + "name": "acacia_button", + "translation_key": "block.minecraft.acacia_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7044, + "states": [ + { + "id": 7035, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7036, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7037, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7038, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7039, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7040, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7041, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7042, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7043, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7044, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7045, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7046, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7047, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7048, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7049, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7050, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7051, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7052, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7053, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7054, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7055, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7056, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7057, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7058, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 343, + "name": "dark_oak_button", + "translation_key": "block.minecraft.dark_oak_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7068, + "states": [ + { + "id": 7059, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7060, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7061, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7062, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7063, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7064, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7065, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7066, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7067, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7068, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7069, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7070, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7071, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7072, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7073, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7074, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7075, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7076, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7077, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7078, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7079, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7080, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7081, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7082, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 344, + "name": "mangrove_button", + "translation_key": "block.minecraft.mangrove_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7092, + "states": [ + { + "id": 7083, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7084, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7085, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7086, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7087, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7088, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7089, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7090, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7091, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7092, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7093, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7094, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7095, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7096, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7097, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7098, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7099, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7100, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7101, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7102, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7103, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7104, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7105, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7106, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 345, + "name": "skeleton_skull", + "translation_key": "block.minecraft.skeleton_skull", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7107, + "states": [ + { + "id": 7107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + } + ] + }, + { + "id": 346, + "name": "skeleton_wall_skull", + "translation_key": "block.minecraft.skeleton_skull", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7123, + "states": [ + { + "id": 7123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 156 + ] + }, + { + "id": 7124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 157 + ] + }, + { + "id": 7125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 158 + ] + }, + { + "id": 7126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 159 + ] + } + ] + }, + { + "id": 347, + "name": "wither_skeleton_skull", + "translation_key": "block.minecraft.wither_skeleton_skull", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7127, + "states": [ + { + "id": 7127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + } + ] + }, + { + "id": 348, + "name": "wither_skeleton_wall_skull", + "translation_key": "block.minecraft.wither_skeleton_skull", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7143, + "states": [ + { + "id": 7143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 156 + ] + }, + { + "id": 7144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 157 + ] + }, + { + "id": 7145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 158 + ] + }, + { + "id": 7146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 159 + ] + } + ] + }, + { + "id": 349, + "name": "zombie_head", + "translation_key": "block.minecraft.zombie_head", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7147, + "states": [ + { + "id": 7147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + } + ] + }, + { + "id": 350, + "name": "zombie_wall_head", + "translation_key": "block.minecraft.zombie_head", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7163, + "states": [ + { + "id": 7163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 156 + ] + }, + { + "id": 7164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 157 + ] + }, + { + "id": 7165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 158 + ] + }, + { + "id": 7166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 159 + ] + } + ] + }, + { + "id": 351, + "name": "player_head", + "translation_key": "block.minecraft.player_head", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7167, + "states": [ + { + "id": 7167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + } + ] + }, + { + "id": 352, + "name": "player_wall_head", + "translation_key": "block.minecraft.player_head", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7183, + "states": [ + { + "id": 7183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 156 + ] + }, + { + "id": 7184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 157 + ] + }, + { + "id": 7185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 158 + ] + }, + { + "id": 7186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 159 + ] + } + ] + }, + { + "id": 353, + "name": "creeper_head", + "translation_key": "block.minecraft.creeper_head", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7187, + "states": [ + { + "id": 7187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + } + ] + }, + { + "id": 354, + "name": "creeper_wall_head", + "translation_key": "block.minecraft.creeper_head", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7203, + "states": [ + { + "id": 7203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 156 + ] + }, + { + "id": 7204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 157 + ] + }, + { + "id": 7205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 158 + ] + }, + { + "id": 7206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 159 + ] + } + ] + }, + { + "id": 355, + "name": "dragon_head", + "translation_key": "block.minecraft.dragon_head", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7207, + "states": [ + { + "id": 7207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + }, + { + "id": 7222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 155 + ] + } + ] + }, + { + "id": 356, + "name": "dragon_wall_head", + "translation_key": "block.minecraft.dragon_head", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7223, + "states": [ + { + "id": 7223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 156 + ] + }, + { + "id": 7224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 157 + ] + }, + { + "id": 7225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 158 + ] + }, + { + "id": 7226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 159 + ] + } + ] + }, + { + "id": 357, + "name": "anvil", + "translation_key": "block.minecraft.anvil", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7227, + "states": [ + { + "id": 7227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + { + "id": 7228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + { + "id": 7229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 167, + 168, + 169, + 170, + 171, + 172 + ] + }, + { + "id": 7230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 167, + 168, + 169, + 170, + 171, + 172 + ] + } + ] + }, + { + "id": 358, + "name": "chipped_anvil", + "translation_key": "block.minecraft.chipped_anvil", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7231, + "states": [ + { + "id": 7231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + { + "id": 7232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + { + "id": 7233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 167, + 168, + 169, + 170, + 171, + 172 + ] + }, + { + "id": 7234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 167, + 168, + 169, + 170, + 171, + 172 + ] + } + ] + }, + { + "id": 359, + "name": "damaged_anvil", + "translation_key": "block.minecraft.damaged_anvil", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7235, + "states": [ + { + "id": 7235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + { + "id": 7236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + { + "id": 7237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 167, + 168, + 169, + 170, + 171, + 172 + ] + }, + { + "id": 7238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 160, + 167, + 168, + 169, + 170, + 171, + 172 + ] + } + ] + }, + { + "id": 360, + "name": "trapped_chest", + "translation_key": "block.minecraft.trapped_chest", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "type", + "values": [ + "single", + "left", + "right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7240, + "states": [ + { + "id": 7239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 7242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 7243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 7244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 7245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 7248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 60 + ] + }, + { + "id": 7249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 7250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 59 + ] + }, + { + "id": 7251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + }, + { + "id": 7254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + }, + { + "id": 7255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 7256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 7257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 58 + ] + }, + { + "id": 7259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 7260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 62 + ] + }, + { + "id": 7261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + }, + { + "id": 7262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 61 + ] + } + ] + }, + { + "id": 361, + "name": "light_weighted_pressure_plate", + "translation_key": "block.minecraft.light_weighted_pressure_plate", + "properties": [ + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7263, + "states": [ + { + "id": 7263, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7264, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7265, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7266, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7267, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7268, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7269, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7270, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7271, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7272, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7273, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7274, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7275, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7276, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7277, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7278, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 362, + "name": "heavy_weighted_pressure_plate", + "translation_key": "block.minecraft.heavy_weighted_pressure_plate", + "properties": [ + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7279, + "states": [ + { + "id": 7279, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7280, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7281, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7282, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7283, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7284, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7285, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7286, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7287, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7288, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7289, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7290, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7291, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7292, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7293, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7294, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 363, + "name": "comparator", + "translation_key": "block.minecraft.comparator", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "mode", + "values": [ + "compare", + "subtract" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7296, + "states": [ + { + "id": 7295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + }, + { + "id": 7310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68 + ] + } + ] + }, + { + "id": 364, + "name": "daylight_detector", + "translation_key": "block.minecraft.daylight_detector", + "properties": [ + { + "name": "inverted", + "values": [ + "true", + "false" + ] + }, + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 7327, + "states": [ + { + "id": 7311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + }, + { + "id": 7342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 69 + ] + } + ] + }, + { + "id": 365, + "name": "redstone_block", + "translation_key": "block.minecraft.redstone_block", + "properties": [], + "default_state_id": 7343, + "states": [ + { + "id": 7343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 366, + "name": "nether_quartz_ore", + "translation_key": "block.minecraft.nether_quartz_ore", + "properties": [], + "default_state_id": 7344, + "states": [ + { + "id": 7344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 367, + "name": "hopper", + "translation_key": "block.minecraft.hopper", + "properties": [ + { + "name": "enabled", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "down", + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 7345, + "states": [ + { + "id": 7345, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7346, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 186, + 187, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7347, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 186, + 188, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7348, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 189, + 190, + 191, + 192, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7349, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 186, + 193, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7350, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7351, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 186, + 187, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7352, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 186, + 188, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7353, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 189, + 190, + 191, + 192, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + }, + { + "id": 7354, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 186, + 193, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185 + ] + } + ] + }, + { + "id": 368, + "name": "quartz_block", + "translation_key": "block.minecraft.quartz_block", + "properties": [], + "default_state_id": 7355, + "states": [ + { + "id": 7355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 369, + "name": "chiseled_quartz_block", + "translation_key": "block.minecraft.chiseled_quartz_block", + "properties": [], + "default_state_id": 7356, + "states": [ + { + "id": 7356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 370, + "name": "quartz_pillar", + "translation_key": "block.minecraft.quartz_pillar", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 7358, + "states": [ + { + "id": 7357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 371, + "name": "quartz_stairs", + "translation_key": "block.minecraft.quartz_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7371, + "states": [ + { + "id": 7360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 372, + "name": "activator_rail", + "translation_key": "block.minecraft.activator_rail", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "shape", + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7453, + "states": [ + { + "id": 7440, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7441, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7442, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7443, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7444, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7445, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7446, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7447, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7448, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7449, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7450, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7451, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7452, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7453, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7454, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7455, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7456, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7457, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7458, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7459, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7460, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7461, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7462, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 7463, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 373, + "name": "dropper", + "translation_key": "block.minecraft.dropper", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "triggered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7465, + "states": [ + { + "id": 7464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 7475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 374, + "name": "white_terracotta", + "translation_key": "block.minecraft.white_terracotta", + "properties": [], + "default_state_id": 7476, + "states": [ + { + "id": 7476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 375, + "name": "orange_terracotta", + "translation_key": "block.minecraft.orange_terracotta", + "properties": [], + "default_state_id": 7477, + "states": [ + { + "id": 7477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 376, + "name": "magenta_terracotta", + "translation_key": "block.minecraft.magenta_terracotta", + "properties": [], + "default_state_id": 7478, + "states": [ + { + "id": 7478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 377, + "name": "light_blue_terracotta", + "translation_key": "block.minecraft.light_blue_terracotta", + "properties": [], + "default_state_id": 7479, + "states": [ + { + "id": 7479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 378, + "name": "yellow_terracotta", + "translation_key": "block.minecraft.yellow_terracotta", + "properties": [], + "default_state_id": 7480, + "states": [ + { + "id": 7480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 379, + "name": "lime_terracotta", + "translation_key": "block.minecraft.lime_terracotta", + "properties": [], + "default_state_id": 7481, + "states": [ + { + "id": 7481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 380, + "name": "pink_terracotta", + "translation_key": "block.minecraft.pink_terracotta", + "properties": [], + "default_state_id": 7482, + "states": [ + { + "id": 7482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 381, + "name": "gray_terracotta", + "translation_key": "block.minecraft.gray_terracotta", + "properties": [], + "default_state_id": 7483, + "states": [ + { + "id": 7483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 382, + "name": "light_gray_terracotta", + "translation_key": "block.minecraft.light_gray_terracotta", + "properties": [], + "default_state_id": 7484, + "states": [ + { + "id": 7484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 383, + "name": "cyan_terracotta", + "translation_key": "block.minecraft.cyan_terracotta", + "properties": [], + "default_state_id": 7485, + "states": [ + { + "id": 7485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 384, + "name": "purple_terracotta", + "translation_key": "block.minecraft.purple_terracotta", + "properties": [], + "default_state_id": 7486, + "states": [ + { + "id": 7486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 385, + "name": "blue_terracotta", + "translation_key": "block.minecraft.blue_terracotta", + "properties": [], + "default_state_id": 7487, + "states": [ + { + "id": 7487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 386, + "name": "brown_terracotta", + "translation_key": "block.minecraft.brown_terracotta", + "properties": [], + "default_state_id": 7488, + "states": [ + { + "id": 7488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 387, + "name": "green_terracotta", + "translation_key": "block.minecraft.green_terracotta", + "properties": [], + "default_state_id": 7489, + "states": [ + { + "id": 7489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 388, + "name": "red_terracotta", + "translation_key": "block.minecraft.red_terracotta", + "properties": [], + "default_state_id": 7490, + "states": [ + { + "id": 7490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 389, + "name": "black_terracotta", + "translation_key": "block.minecraft.black_terracotta", + "properties": [], + "default_state_id": 7491, + "states": [ + { + "id": 7491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 390, + "name": "white_stained_glass_pane", + "translation_key": "block.minecraft.white_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7523, + "states": [ + { + "id": 7492, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7493, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7494, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7495, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7496, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7497, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7498, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7499, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7500, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7501, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7502, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7503, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7504, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7505, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7506, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7507, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7508, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7509, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7510, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7511, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7512, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7513, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7514, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7515, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7516, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7517, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7518, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7519, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7520, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7521, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7522, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7523, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 391, + "name": "orange_stained_glass_pane", + "translation_key": "block.minecraft.orange_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7555, + "states": [ + { + "id": 7524, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7525, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7526, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7527, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7528, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7529, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7530, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7531, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7532, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7533, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7534, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7535, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7536, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7537, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7538, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7539, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7540, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7541, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7542, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7543, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7544, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7545, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7546, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7547, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7548, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7549, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7550, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7551, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7552, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7553, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7554, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7555, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 392, + "name": "magenta_stained_glass_pane", + "translation_key": "block.minecraft.magenta_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7587, + "states": [ + { + "id": 7556, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7557, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7558, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7559, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7560, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7561, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7562, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7563, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7564, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7565, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7566, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7567, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7568, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7569, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7570, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7571, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7572, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7573, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7574, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7575, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7576, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7577, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7578, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7579, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7580, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7581, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7582, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7583, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7584, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7585, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7586, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7587, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 393, + "name": "light_blue_stained_glass_pane", + "translation_key": "block.minecraft.light_blue_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7619, + "states": [ + { + "id": 7588, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7589, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7590, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7591, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7592, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7593, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7594, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7595, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7596, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7597, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7598, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7599, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7600, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7601, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7602, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7603, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7604, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7605, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7606, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7607, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7608, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7609, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7610, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7611, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7612, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7613, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7614, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7615, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7616, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7617, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7618, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7619, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 394, + "name": "yellow_stained_glass_pane", + "translation_key": "block.minecraft.yellow_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7651, + "states": [ + { + "id": 7620, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7621, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7622, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7623, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7624, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7625, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7626, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7627, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7628, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7629, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7630, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7631, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7632, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7633, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7634, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7635, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7636, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7637, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7638, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7639, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7640, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7641, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7642, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7643, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7644, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7645, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7646, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7647, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7648, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7649, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7650, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7651, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 395, + "name": "lime_stained_glass_pane", + "translation_key": "block.minecraft.lime_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7683, + "states": [ + { + "id": 7652, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7653, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7654, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7655, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7656, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7657, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7658, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7659, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7660, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7661, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7662, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7663, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7664, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7665, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7666, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7667, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7668, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7669, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7670, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7671, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7672, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7673, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7674, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7675, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7676, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7677, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7678, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7679, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7680, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7681, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7682, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7683, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 396, + "name": "pink_stained_glass_pane", + "translation_key": "block.minecraft.pink_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7715, + "states": [ + { + "id": 7684, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7685, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7686, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7687, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7688, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7689, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7690, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7691, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7692, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7693, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7694, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7695, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7696, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7697, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7698, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7699, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7700, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7701, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7702, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7703, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7704, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7705, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7706, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7707, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7708, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7709, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7710, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7711, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7712, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7713, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7714, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7715, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 397, + "name": "gray_stained_glass_pane", + "translation_key": "block.minecraft.gray_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7747, + "states": [ + { + "id": 7716, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7717, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7718, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7719, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7720, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7721, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7722, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7723, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7724, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7725, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7726, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7727, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7728, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7729, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7730, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7731, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7732, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7733, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7734, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7735, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7736, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7737, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7738, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7739, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7740, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7741, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7742, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7743, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7744, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7745, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7746, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7747, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 398, + "name": "light_gray_stained_glass_pane", + "translation_key": "block.minecraft.light_gray_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7779, + "states": [ + { + "id": 7748, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7749, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7750, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7751, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7752, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7753, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7754, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7755, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7756, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7757, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7758, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7759, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7760, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7761, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7762, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7763, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7764, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7765, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7766, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7767, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7768, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7769, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7770, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7771, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7772, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7773, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7774, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7775, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7776, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7777, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7778, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7779, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 399, + "name": "cyan_stained_glass_pane", + "translation_key": "block.minecraft.cyan_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7811, + "states": [ + { + "id": 7780, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7781, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7782, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7783, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7784, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7785, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7786, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7787, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7788, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7789, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7790, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7791, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7792, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7793, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7794, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7795, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7796, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7797, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7798, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7799, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7800, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7801, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7802, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7803, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7804, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7805, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7806, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7807, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7808, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7809, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7810, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7811, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 400, + "name": "purple_stained_glass_pane", + "translation_key": "block.minecraft.purple_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7843, + "states": [ + { + "id": 7812, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7813, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7814, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7815, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7816, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7817, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7818, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7819, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7820, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7821, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7822, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7823, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7824, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7825, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7826, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7827, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7828, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7829, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7830, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7831, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7832, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7833, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7834, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7835, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7836, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7837, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7838, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7839, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7840, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7841, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7842, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7843, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 401, + "name": "blue_stained_glass_pane", + "translation_key": "block.minecraft.blue_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7875, + "states": [ + { + "id": 7844, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7845, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7846, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7847, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7848, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7849, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7850, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7851, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7852, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7853, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7854, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7855, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7856, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7857, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7858, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7859, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7860, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7861, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7862, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7863, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7864, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7865, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7866, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7867, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7868, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7869, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7870, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7871, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7872, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7873, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7874, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7875, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 402, + "name": "brown_stained_glass_pane", + "translation_key": "block.minecraft.brown_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7907, + "states": [ + { + "id": 7876, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7877, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7878, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7879, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7880, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7881, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7882, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7883, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7884, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7885, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7886, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7887, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7888, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7889, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7890, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7891, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7892, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7893, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7894, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7895, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7896, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7897, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7898, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7899, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7900, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7901, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7902, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7903, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7904, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7905, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7906, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7907, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 403, + "name": "green_stained_glass_pane", + "translation_key": "block.minecraft.green_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7939, + "states": [ + { + "id": 7908, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7909, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7910, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7911, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7912, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7913, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7914, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7915, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7916, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7917, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7918, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7919, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7920, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7921, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7922, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7923, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7924, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7925, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7926, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7927, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7928, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7929, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7930, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7931, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7932, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7933, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7934, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7935, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7936, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7937, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7938, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7939, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 404, + "name": "red_stained_glass_pane", + "translation_key": "block.minecraft.red_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7971, + "states": [ + { + "id": 7940, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7941, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7942, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7943, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7944, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7945, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7946, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7947, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7948, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7949, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7950, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7951, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7952, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7953, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7954, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7955, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7956, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7957, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7958, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7959, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7960, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7961, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7962, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7963, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7964, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7965, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7966, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7967, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7968, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7969, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 7970, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 7971, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 405, + "name": "black_stained_glass_pane", + "translation_key": "block.minecraft.black_stained_glass_pane", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8003, + "states": [ + { + "id": 7972, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7973, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7974, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93, + 94 + ] + }, + { + "id": 7975, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95, + 96 + ] + }, + { + "id": 7976, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7977, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7978, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 93 + ] + }, + { + "id": 7979, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97, + 96 + ] + }, + { + "id": 7980, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7981, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7982, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92, + 94 + ] + }, + { + "id": 7983, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98, + 96 + ] + }, + { + "id": 7984, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7985, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7986, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 7987, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 7988, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7989, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7990, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93, + 94 + ] + }, + { + "id": 7991, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 95 + ] + }, + { + "id": 7992, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7993, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7994, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 93 + ] + }, + { + "id": 7995, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 7996, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7997, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 7998, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100, + 94 + ] + }, + { + "id": 7999, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 98 + ] + }, + { + "id": 8000, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 8001, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 8002, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 8003, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 101 + ] + } + ] + }, + { + "id": 406, + "name": "acacia_stairs", + "translation_key": "block.minecraft.acacia_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8015, + "states": [ + { + "id": 8004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 407, + "name": "dark_oak_stairs", + "translation_key": "block.minecraft.dark_oak_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8095, + "states": [ + { + "id": 8084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 408, + "name": "mangrove_stairs", + "translation_key": "block.minecraft.mangrove_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8175, + "states": [ + { + "id": 8164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 409, + "name": "slime_block", + "translation_key": "block.minecraft.slime_block", + "properties": [], + "default_state_id": 8244, + "states": [ + { + "id": 8244, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 410, + "name": "barrier", + "translation_key": "block.minecraft.barrier", + "properties": [], + "default_state_id": 8245, + "states": [ + { + "id": 8245, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 411, + "name": "light", + "translation_key": "block.minecraft.light", + "properties": [ + { + "name": "level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8277, + "states": [ + { + "id": 8246, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8247, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8248, + "luminance": 1, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8249, + "luminance": 1, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8250, + "luminance": 2, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8251, + "luminance": 2, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8252, + "luminance": 3, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8253, + "luminance": 3, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8254, + "luminance": 4, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8255, + "luminance": 4, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8256, + "luminance": 5, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8257, + "luminance": 5, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8258, + "luminance": 6, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8259, + "luminance": 6, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8260, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8261, + "luminance": 7, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8262, + "luminance": 8, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8263, + "luminance": 8, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8264, + "luminance": 9, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8265, + "luminance": 9, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8266, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8267, + "luminance": 10, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8268, + "luminance": 11, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8269, + "luminance": 11, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8270, + "luminance": 12, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8271, + "luminance": 12, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8272, + "luminance": 13, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8273, + "luminance": 13, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8274, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8275, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8276, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8277, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 412, + "name": "iron_trapdoor", + "translation_key": "block.minecraft.iron_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8293, + "states": [ + { + "id": 8278, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8279, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8280, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8281, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8282, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8283, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8284, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8285, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8286, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8287, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8288, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8289, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 8290, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8291, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8292, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8293, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8294, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8295, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8296, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8297, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8298, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8299, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8300, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8301, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8302, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8303, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8304, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8305, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 8306, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8307, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8308, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8309, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8310, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8311, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8312, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8313, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8314, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8315, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8316, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8317, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8318, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8319, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8320, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8321, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 8322, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8323, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8324, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8325, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8326, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8327, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8328, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8329, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8330, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8331, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8332, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8333, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 8334, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8335, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8336, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8337, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 8338, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8339, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8340, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 8341, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 413, + "name": "prismarine", + "translation_key": "block.minecraft.prismarine", + "properties": [], + "default_state_id": 8342, + "states": [ + { + "id": 8342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 414, + "name": "prismarine_bricks", + "translation_key": "block.minecraft.prismarine_bricks", + "properties": [], + "default_state_id": 8343, + "states": [ + { + "id": 8343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 415, + "name": "dark_prismarine", + "translation_key": "block.minecraft.dark_prismarine", + "properties": [], + "default_state_id": 8344, + "states": [ + { + "id": 8344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 416, + "name": "prismarine_stairs", + "translation_key": "block.minecraft.prismarine_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8356, + "states": [ + { + "id": 8345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 417, + "name": "prismarine_brick_stairs", + "translation_key": "block.minecraft.prismarine_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8436, + "states": [ + { + "id": 8425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 418, + "name": "dark_prismarine_stairs", + "translation_key": "block.minecraft.dark_prismarine_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8516, + "states": [ + { + "id": 8505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 8547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 8557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 8563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 8567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 8577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 419, + "name": "prismarine_slab", + "translation_key": "block.minecraft.prismarine_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8588, + "states": [ + { + "id": 8585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 8586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 8587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 8588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 8589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 8590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 420, + "name": "prismarine_brick_slab", + "translation_key": "block.minecraft.prismarine_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8594, + "states": [ + { + "id": 8591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 8592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 8593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 8594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 8595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 8596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 421, + "name": "dark_prismarine_slab", + "translation_key": "block.minecraft.dark_prismarine_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8600, + "states": [ + { + "id": 8597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 8598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 8599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 8600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 8601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 8602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 422, + "name": "sea_lantern", + "translation_key": "block.minecraft.sea_lantern", + "properties": [], + "default_state_id": 8603, + "states": [ + { + "id": 8603, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 423, + "name": "hay_block", + "translation_key": "block.minecraft.hay_block", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 8605, + "states": [ + { + "id": 8604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 8605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 8606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 424, + "name": "white_carpet", + "translation_key": "block.minecraft.white_carpet", + "properties": [], + "default_state_id": 8607, + "states": [ + { + "id": 8607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 425, + "name": "orange_carpet", + "translation_key": "block.minecraft.orange_carpet", + "properties": [], + "default_state_id": 8608, + "states": [ + { + "id": 8608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 426, + "name": "magenta_carpet", + "translation_key": "block.minecraft.magenta_carpet", + "properties": [], + "default_state_id": 8609, + "states": [ + { + "id": 8609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 427, + "name": "light_blue_carpet", + "translation_key": "block.minecraft.light_blue_carpet", + "properties": [], + "default_state_id": 8610, + "states": [ + { + "id": 8610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 428, + "name": "yellow_carpet", + "translation_key": "block.minecraft.yellow_carpet", + "properties": [], + "default_state_id": 8611, + "states": [ + { + "id": 8611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 429, + "name": "lime_carpet", + "translation_key": "block.minecraft.lime_carpet", + "properties": [], + "default_state_id": 8612, + "states": [ + { + "id": 8612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 430, + "name": "pink_carpet", + "translation_key": "block.minecraft.pink_carpet", + "properties": [], + "default_state_id": 8613, + "states": [ + { + "id": 8613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 431, + "name": "gray_carpet", + "translation_key": "block.minecraft.gray_carpet", + "properties": [], + "default_state_id": 8614, + "states": [ + { + "id": 8614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 432, + "name": "light_gray_carpet", + "translation_key": "block.minecraft.light_gray_carpet", + "properties": [], + "default_state_id": 8615, + "states": [ + { + "id": 8615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 433, + "name": "cyan_carpet", + "translation_key": "block.minecraft.cyan_carpet", + "properties": [], + "default_state_id": 8616, + "states": [ + { + "id": 8616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 434, + "name": "purple_carpet", + "translation_key": "block.minecraft.purple_carpet", + "properties": [], + "default_state_id": 8617, + "states": [ + { + "id": 8617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 435, + "name": "blue_carpet", + "translation_key": "block.minecraft.blue_carpet", + "properties": [], + "default_state_id": 8618, + "states": [ + { + "id": 8618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 436, + "name": "brown_carpet", + "translation_key": "block.minecraft.brown_carpet", + "properties": [], + "default_state_id": 8619, + "states": [ + { + "id": 8619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 437, + "name": "green_carpet", + "translation_key": "block.minecraft.green_carpet", + "properties": [], + "default_state_id": 8620, + "states": [ + { + "id": 8620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 438, + "name": "red_carpet", + "translation_key": "block.minecraft.red_carpet", + "properties": [], + "default_state_id": 8621, + "states": [ + { + "id": 8621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 439, + "name": "black_carpet", + "translation_key": "block.minecraft.black_carpet", + "properties": [], + "default_state_id": 8622, + "states": [ + { + "id": 8622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 440, + "name": "terracotta", + "translation_key": "block.minecraft.terracotta", + "properties": [], + "default_state_id": 8623, + "states": [ + { + "id": 8623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 441, + "name": "coal_block", + "translation_key": "block.minecraft.coal_block", + "properties": [], + "default_state_id": 8624, + "states": [ + { + "id": 8624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 442, + "name": "packed_ice", + "translation_key": "block.minecraft.packed_ice", + "properties": [], + "default_state_id": 8625, + "states": [ + { + "id": 8625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 443, + "name": "sunflower", + "translation_key": "block.minecraft.sunflower", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 8627, + "states": [ + { + "id": 8626, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8627, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 444, + "name": "lilac", + "translation_key": "block.minecraft.lilac", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 8629, + "states": [ + { + "id": 8628, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8629, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 445, + "name": "rose_bush", + "translation_key": "block.minecraft.rose_bush", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 8631, + "states": [ + { + "id": 8630, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8631, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 446, + "name": "peony", + "translation_key": "block.minecraft.peony", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 8633, + "states": [ + { + "id": 8632, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8633, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 447, + "name": "tall_grass", + "translation_key": "block.minecraft.tall_grass", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 8635, + "states": [ + { + "id": 8634, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8635, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 448, + "name": "large_fern", + "translation_key": "block.minecraft.large_fern", + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 8637, + "states": [ + { + "id": 8636, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8637, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 449, + "name": "white_banner", + "translation_key": "block.minecraft.white_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8638, + "states": [ + { + "id": 8638, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8639, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8640, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8641, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8642, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8643, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8644, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8645, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8646, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8647, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8648, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8649, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8650, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8651, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8652, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8653, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 450, + "name": "orange_banner", + "translation_key": "block.minecraft.orange_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8654, + "states": [ + { + "id": 8654, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8655, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8656, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8657, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8658, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8659, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8660, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8661, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8662, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8663, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8664, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8665, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8666, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8667, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8668, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8669, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 451, + "name": "magenta_banner", + "translation_key": "block.minecraft.magenta_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8670, + "states": [ + { + "id": 8670, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8671, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8672, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8673, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8674, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8675, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8676, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8677, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8678, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8679, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8680, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8681, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8682, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8683, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8684, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8685, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 452, + "name": "light_blue_banner", + "translation_key": "block.minecraft.light_blue_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8686, + "states": [ + { + "id": 8686, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8687, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8688, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8689, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8690, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8691, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8692, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8693, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8694, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8695, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8696, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8697, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8698, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8699, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8700, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8701, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 453, + "name": "yellow_banner", + "translation_key": "block.minecraft.yellow_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8702, + "states": [ + { + "id": 8702, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8703, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8704, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8705, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8706, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8707, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8708, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8709, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8710, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8711, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8712, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8713, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8714, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8715, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8716, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8717, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 454, + "name": "lime_banner", + "translation_key": "block.minecraft.lime_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8718, + "states": [ + { + "id": 8718, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8719, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8720, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8721, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8722, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8723, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8724, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8725, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8726, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8727, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8728, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8729, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8730, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8731, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8732, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8733, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 455, + "name": "pink_banner", + "translation_key": "block.minecraft.pink_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8734, + "states": [ + { + "id": 8734, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8735, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8736, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8737, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8738, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8739, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8740, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8741, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8742, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8743, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8744, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8745, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8746, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8747, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8748, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8749, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 456, + "name": "gray_banner", + "translation_key": "block.minecraft.gray_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8750, + "states": [ + { + "id": 8750, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8751, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8752, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8753, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8754, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8755, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8756, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8757, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8758, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8759, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8760, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8761, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8762, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8763, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8764, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8765, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 457, + "name": "light_gray_banner", + "translation_key": "block.minecraft.light_gray_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8766, + "states": [ + { + "id": 8766, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8767, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8768, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8769, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8770, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8771, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8772, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8773, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8774, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8775, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8776, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8777, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8778, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8779, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8780, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8781, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 458, + "name": "cyan_banner", + "translation_key": "block.minecraft.cyan_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8782, + "states": [ + { + "id": 8782, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8783, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8784, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8785, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8786, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8787, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8788, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8789, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8790, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8791, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8792, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8793, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8794, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8795, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8796, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8797, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 459, + "name": "purple_banner", + "translation_key": "block.minecraft.purple_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8798, + "states": [ + { + "id": 8798, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8799, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8800, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8801, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8802, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8803, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8804, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8805, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8806, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8807, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8808, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8809, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8810, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8811, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8812, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8813, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 460, + "name": "blue_banner", + "translation_key": "block.minecraft.blue_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8814, + "states": [ + { + "id": 8814, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8815, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8816, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8817, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8818, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8819, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8820, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8821, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8822, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8823, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8824, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8825, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8826, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8827, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8828, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8829, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 461, + "name": "brown_banner", + "translation_key": "block.minecraft.brown_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8830, + "states": [ + { + "id": 8830, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8831, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8832, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8833, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8834, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8835, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8836, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8837, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8838, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8839, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8840, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8841, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8842, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8843, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8844, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8845, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 462, + "name": "green_banner", + "translation_key": "block.minecraft.green_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8846, + "states": [ + { + "id": 8846, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8847, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8848, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8849, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8850, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8851, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8852, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8853, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8854, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8855, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8856, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8857, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8858, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8859, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8860, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8861, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 463, + "name": "red_banner", + "translation_key": "block.minecraft.red_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8862, + "states": [ + { + "id": 8862, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8863, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8864, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8865, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8866, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8867, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8868, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8869, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8870, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8871, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8872, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8873, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8874, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8875, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8876, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8877, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 464, + "name": "black_banner", + "translation_key": "block.minecraft.black_banner", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 8878, + "states": [ + { + "id": 8878, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8879, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8880, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8881, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8882, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8883, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8884, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8885, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8886, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8887, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8888, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8889, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8890, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8891, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8892, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8893, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 465, + "name": "white_wall_banner", + "translation_key": "block.minecraft.white_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8894, + "states": [ + { + "id": 8894, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8895, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8896, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8897, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 466, + "name": "orange_wall_banner", + "translation_key": "block.minecraft.orange_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8898, + "states": [ + { + "id": 8898, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8899, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8900, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8901, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 467, + "name": "magenta_wall_banner", + "translation_key": "block.minecraft.magenta_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8902, + "states": [ + { + "id": 8902, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8903, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8904, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8905, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 468, + "name": "light_blue_wall_banner", + "translation_key": "block.minecraft.light_blue_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8906, + "states": [ + { + "id": 8906, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8907, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8908, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8909, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 469, + "name": "yellow_wall_banner", + "translation_key": "block.minecraft.yellow_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8910, + "states": [ + { + "id": 8910, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8911, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8912, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8913, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 470, + "name": "lime_wall_banner", + "translation_key": "block.minecraft.lime_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8914, + "states": [ + { + "id": 8914, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8915, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8916, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8917, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 471, + "name": "pink_wall_banner", + "translation_key": "block.minecraft.pink_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8918, + "states": [ + { + "id": 8918, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8919, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8920, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8921, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 472, + "name": "gray_wall_banner", + "translation_key": "block.minecraft.gray_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8922, + "states": [ + { + "id": 8922, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8923, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8924, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8925, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 473, + "name": "light_gray_wall_banner", + "translation_key": "block.minecraft.light_gray_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8926, + "states": [ + { + "id": 8926, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8927, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8928, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8929, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 474, + "name": "cyan_wall_banner", + "translation_key": "block.minecraft.cyan_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8930, + "states": [ + { + "id": 8930, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8931, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8932, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8933, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 475, + "name": "purple_wall_banner", + "translation_key": "block.minecraft.purple_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8934, + "states": [ + { + "id": 8934, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8935, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8936, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8937, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 476, + "name": "blue_wall_banner", + "translation_key": "block.minecraft.blue_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8938, + "states": [ + { + "id": 8938, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8939, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8940, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8941, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 477, + "name": "brown_wall_banner", + "translation_key": "block.minecraft.brown_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8942, + "states": [ + { + "id": 8942, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8943, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8944, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8945, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 478, + "name": "green_wall_banner", + "translation_key": "block.minecraft.green_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8946, + "states": [ + { + "id": 8946, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8947, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8948, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8949, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 479, + "name": "red_wall_banner", + "translation_key": "block.minecraft.red_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8950, + "states": [ + { + "id": 8950, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8951, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8952, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8953, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 480, + "name": "black_wall_banner", + "translation_key": "block.minecraft.black_banner", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8954, + "states": [ + { + "id": 8954, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8955, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8956, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 8957, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 481, + "name": "red_sandstone", + "translation_key": "block.minecraft.red_sandstone", + "properties": [], + "default_state_id": 8958, + "states": [ + { + "id": 8958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 482, + "name": "chiseled_red_sandstone", + "translation_key": "block.minecraft.chiseled_red_sandstone", + "properties": [], + "default_state_id": 8959, + "states": [ + { + "id": 8959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 483, + "name": "cut_red_sandstone", + "translation_key": "block.minecraft.cut_red_sandstone", + "properties": [], + "default_state_id": 8960, + "states": [ + { + "id": 8960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 484, + "name": "red_sandstone_stairs", + "translation_key": "block.minecraft.red_sandstone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8972, + "states": [ + { + "id": 8961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 8963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 8965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 8967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 8969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 8971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 8973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 8975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 8977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 8979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 8981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 8983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 8985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 8987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 8989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 8991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 8993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 8995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 8997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 8999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 9000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 9001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 9002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 9003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 9004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 9005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 9006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 9007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 9008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 9009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 9010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 9011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 9012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 9013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 9014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 9015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 9016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 9017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 9018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 9019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 9020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 9021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 9022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 9023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 9024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 9025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 9026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 9027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 9028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 9029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 9030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 9031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 9032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 9033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 9034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 9035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 9036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 9037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 9038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 9039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 9040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 485, + "name": "oak_slab", + "translation_key": "block.minecraft.oak_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9044, + "states": [ + { + "id": 9041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 486, + "name": "spruce_slab", + "translation_key": "block.minecraft.spruce_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9050, + "states": [ + { + "id": 9047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 487, + "name": "birch_slab", + "translation_key": "block.minecraft.birch_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9056, + "states": [ + { + "id": 9053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 488, + "name": "jungle_slab", + "translation_key": "block.minecraft.jungle_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9062, + "states": [ + { + "id": 9059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 489, + "name": "acacia_slab", + "translation_key": "block.minecraft.acacia_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9068, + "states": [ + { + "id": 9065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 490, + "name": "dark_oak_slab", + "translation_key": "block.minecraft.dark_oak_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9074, + "states": [ + { + "id": 9071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 491, + "name": "mangrove_slab", + "translation_key": "block.minecraft.mangrove_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9080, + "states": [ + { + "id": 9077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 492, + "name": "stone_slab", + "translation_key": "block.minecraft.stone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9086, + "states": [ + { + "id": 9083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 493, + "name": "smooth_stone_slab", + "translation_key": "block.minecraft.smooth_stone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9092, + "states": [ + { + "id": 9089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 494, + "name": "sandstone_slab", + "translation_key": "block.minecraft.sandstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9098, + "states": [ + { + "id": 9095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 495, + "name": "cut_sandstone_slab", + "translation_key": "block.minecraft.cut_sandstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9104, + "states": [ + { + "id": 9101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 496, + "name": "petrified_oak_slab", + "translation_key": "block.minecraft.petrified_oak_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9110, + "states": [ + { + "id": 9107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 497, + "name": "cobblestone_slab", + "translation_key": "block.minecraft.cobblestone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9116, + "states": [ + { + "id": 9113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 498, + "name": "brick_slab", + "translation_key": "block.minecraft.brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9122, + "states": [ + { + "id": 9119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 499, + "name": "stone_brick_slab", + "translation_key": "block.minecraft.stone_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9128, + "states": [ + { + "id": 9125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 500, + "name": "mud_brick_slab", + "translation_key": "block.minecraft.mud_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9134, + "states": [ + { + "id": 9131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 501, + "name": "nether_brick_slab", + "translation_key": "block.minecraft.nether_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9140, + "states": [ + { + "id": 9137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 502, + "name": "quartz_slab", + "translation_key": "block.minecraft.quartz_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9146, + "states": [ + { + "id": 9143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 503, + "name": "red_sandstone_slab", + "translation_key": "block.minecraft.red_sandstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9152, + "states": [ + { + "id": 9149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 504, + "name": "cut_red_sandstone_slab", + "translation_key": "block.minecraft.cut_red_sandstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9158, + "states": [ + { + "id": 9155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 505, + "name": "purpur_slab", + "translation_key": "block.minecraft.purpur_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9164, + "states": [ + { + "id": 9161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 9163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 9165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 506, + "name": "smooth_stone", + "translation_key": "block.minecraft.smooth_stone", + "properties": [], + "default_state_id": 9167, + "states": [ + { + "id": 9167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 507, + "name": "smooth_sandstone", + "translation_key": "block.minecraft.smooth_sandstone", + "properties": [], + "default_state_id": 9168, + "states": [ + { + "id": 9168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 508, + "name": "smooth_quartz", + "translation_key": "block.minecraft.smooth_quartz", + "properties": [], + "default_state_id": 9169, + "states": [ + { + "id": 9169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 509, + "name": "smooth_red_sandstone", + "translation_key": "block.minecraft.smooth_red_sandstone", + "properties": [], + "default_state_id": 9170, + "states": [ + { + "id": 9170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 510, + "name": "spruce_fence_gate", + "translation_key": "block.minecraft.spruce_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9178, + "states": [ + { + "id": 9171, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9172, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9175, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9176, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9179, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9180, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9183, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9184, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9187, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9188, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9191, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9192, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9195, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9196, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9199, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9200, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 511, + "name": "birch_fence_gate", + "translation_key": "block.minecraft.birch_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9210, + "states": [ + { + "id": 9203, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9204, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9207, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9208, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9211, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9212, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9215, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9216, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9219, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9220, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9223, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9224, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9227, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9228, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9231, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9232, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 512, + "name": "jungle_fence_gate", + "translation_key": "block.minecraft.jungle_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9242, + "states": [ + { + "id": 9235, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9236, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9239, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9240, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9243, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9244, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9247, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9248, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9251, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9252, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9255, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9256, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9259, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9260, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9263, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9264, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 513, + "name": "acacia_fence_gate", + "translation_key": "block.minecraft.acacia_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9274, + "states": [ + { + "id": 9267, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9268, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9271, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9272, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9275, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9276, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9279, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9280, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9283, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9284, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9287, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9288, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9291, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9292, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9295, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9296, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 514, + "name": "dark_oak_fence_gate", + "translation_key": "block.minecraft.dark_oak_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9306, + "states": [ + { + "id": 9299, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9300, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9303, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9304, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9307, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9308, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9311, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9312, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9315, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9316, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9319, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9320, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9323, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9324, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9327, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9328, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 515, + "name": "mangrove_fence_gate", + "translation_key": "block.minecraft.mangrove_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9338, + "states": [ + { + "id": 9331, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9332, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9335, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9336, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9339, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9340, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9343, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9344, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9347, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9348, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9351, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9352, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9355, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9356, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9359, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9360, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 9361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 516, + "name": "spruce_fence", + "translation_key": "block.minecraft.spruce_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9394, + "states": [ + { + "id": 9363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 9393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 517, + "name": "birch_fence", + "translation_key": "block.minecraft.birch_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9426, + "states": [ + { + "id": 9395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 9425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 518, + "name": "jungle_fence", + "translation_key": "block.minecraft.jungle_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9458, + "states": [ + { + "id": 9427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 9457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 519, + "name": "acacia_fence", + "translation_key": "block.minecraft.acacia_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9490, + "states": [ + { + "id": 9459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 9489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 520, + "name": "dark_oak_fence", + "translation_key": "block.minecraft.dark_oak_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9522, + "states": [ + { + "id": 9491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 9521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 521, + "name": "mangrove_fence", + "translation_key": "block.minecraft.mangrove_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9554, + "states": [ + { + "id": 9523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 9526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 9527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 9530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 9531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 9534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 9535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 9538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 9539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 9542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 9543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 9546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 9547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 9550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 9551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 9553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 9554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 522, + "name": "spruce_door", + "translation_key": "block.minecraft.spruce_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9566, + "states": [ + { + "id": 9555, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9556, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9557, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9558, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9559, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9560, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9561, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9562, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9563, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9564, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9565, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9566, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9567, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9568, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9569, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9570, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9571, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9572, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9573, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9574, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9575, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9576, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9577, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9578, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9579, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9580, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9581, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9582, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9583, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9584, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9585, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9586, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9587, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9588, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9589, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9590, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9591, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9592, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9593, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9594, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9595, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9596, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9597, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9598, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9599, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9600, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9601, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9602, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9603, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9604, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9605, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9606, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9607, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9608, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9609, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9610, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9611, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9612, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9613, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9614, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9615, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9616, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9617, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9618, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 523, + "name": "birch_door", + "translation_key": "block.minecraft.birch_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9630, + "states": [ + { + "id": 9619, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9620, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9621, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9622, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9623, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9624, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9625, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9626, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9627, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9628, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9629, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9630, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9631, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9632, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9633, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9634, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9635, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9636, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9637, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9638, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9639, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9640, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9641, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9642, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9643, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9644, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9645, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9646, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9647, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9648, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9649, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9650, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9651, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9652, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9653, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9654, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9655, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9656, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9657, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9658, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9659, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9660, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9661, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9662, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9663, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9664, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9665, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9666, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9667, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9668, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9669, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9670, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9671, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9672, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9673, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9674, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9675, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9676, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9677, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9678, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9679, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9680, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9681, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9682, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 524, + "name": "jungle_door", + "translation_key": "block.minecraft.jungle_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9694, + "states": [ + { + "id": 9683, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9684, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9685, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9686, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9687, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9688, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9689, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9690, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9691, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9692, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9693, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9694, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9695, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9696, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9697, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9698, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9699, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9700, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9701, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9702, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9703, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9704, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9705, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9706, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9707, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9708, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9709, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9710, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9711, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9712, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9713, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9714, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9715, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9716, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9717, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9718, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9719, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9720, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9721, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9722, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9723, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9724, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9725, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9726, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9727, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9728, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9729, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9730, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9731, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9732, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9733, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9734, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9735, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9736, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9737, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9738, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9739, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9740, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9741, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9742, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9743, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9744, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9745, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9746, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 525, + "name": "acacia_door", + "translation_key": "block.minecraft.acacia_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9758, + "states": [ + { + "id": 9747, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9748, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9749, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9750, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9751, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9752, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9753, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9754, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9755, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9756, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9757, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9758, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9759, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9760, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9761, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9762, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9763, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9764, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9765, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9766, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9767, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9768, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9769, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9770, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9771, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9772, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9773, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9774, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9775, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9776, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9777, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9778, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9779, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9780, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9781, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9782, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9783, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9784, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9785, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9786, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9787, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9788, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9789, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9790, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9791, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9792, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9793, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9794, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9795, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9796, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9797, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9798, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9799, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9800, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9801, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9802, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9803, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9804, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9805, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9806, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9807, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9808, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9809, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9810, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 526, + "name": "dark_oak_door", + "translation_key": "block.minecraft.dark_oak_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9822, + "states": [ + { + "id": 9811, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9812, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9813, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9814, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9815, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9816, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9817, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9818, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9819, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9820, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9821, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9822, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9823, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9824, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9825, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9826, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9827, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9828, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9829, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9830, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9831, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9832, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9833, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9834, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9835, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9836, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9837, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9838, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9839, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9840, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9841, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9842, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9843, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9844, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9845, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9846, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9847, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9848, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9849, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9850, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9851, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9852, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9853, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9854, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9855, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9856, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9857, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9858, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9859, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9860, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9861, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9862, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9863, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9864, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9865, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9866, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9867, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9868, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9869, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9870, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9871, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9872, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9873, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9874, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 527, + "name": "mangrove_door", + "translation_key": "block.minecraft.mangrove_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9886, + "states": [ + { + "id": 9875, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9876, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9877, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9878, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9879, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9880, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9881, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9882, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9883, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9884, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9885, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9886, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9887, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9888, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9889, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9890, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9891, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9892, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9893, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9894, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9895, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9896, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9897, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9898, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9899, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9900, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9901, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9902, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9903, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9904, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9905, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9906, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9907, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9908, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9909, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9910, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9911, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9912, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9913, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9914, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9915, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9916, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9917, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9918, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9919, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9920, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9921, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9922, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 9923, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9924, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9925, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9926, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9927, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9928, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9929, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9930, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9931, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9932, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 9933, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9934, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9935, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9936, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 9937, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 9938, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 528, + "name": "end_rod", + "translation_key": "block.minecraft.end_rod", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 9943, + "states": [ + { + "id": 9939, + "luminance": 14, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 9940, + "luminance": 14, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 9941, + "luminance": 14, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 9942, + "luminance": 14, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 9943, + "luminance": 14, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 9944, + "luminance": 14, + "opaque": false, + "collision_shapes": [ + 32 + ] + } + ] + }, + { + "id": 529, + "name": "chorus_plant", + "translation_key": "block.minecraft.chorus_plant", + "properties": [ + { + "name": "down", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10008, + "states": [ + { + "id": 9945, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 200, + 201, + 202 + ] + }, + { + "id": 9946, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 200, + 201, + 202 + ] + }, + { + "id": 9947, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 200, + 201, + 202 + ] + }, + { + "id": 9948, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 200, + 201, + 202 + ] + }, + { + "id": 9949, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 200, + 202 + ] + }, + { + "id": 9950, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 200, + 202 + ] + }, + { + "id": 9951, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 200, + 202 + ] + }, + { + "id": 9952, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 200, + 202 + ] + }, + { + "id": 9953, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 201, + 202 + ] + }, + { + "id": 9954, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 201, + 202 + ] + }, + { + "id": 9955, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 201, + 202 + ] + }, + { + "id": 9956, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 201, + 202 + ] + }, + { + "id": 9957, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 202 + ] + }, + { + "id": 9958, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 202 + ] + }, + { + "id": 9959, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 202 + ] + }, + { + "id": 9960, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 202 + ] + }, + { + "id": 9961, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 200, + 201 + ] + }, + { + "id": 9962, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 200, + 201 + ] + }, + { + "id": 9963, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 200, + 201 + ] + }, + { + "id": 9964, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 200, + 201 + ] + }, + { + "id": 9965, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 200 + ] + }, + { + "id": 9966, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 200 + ] + }, + { + "id": 9967, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 200 + ] + }, + { + "id": 9968, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 200 + ] + }, + { + "id": 9969, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199, + 201 + ] + }, + { + "id": 9970, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 201 + ] + }, + { + "id": 9971, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199, + 201 + ] + }, + { + "id": 9972, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 201 + ] + }, + { + "id": 9973, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198, + 199 + ] + }, + { + "id": 9974, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 198 + ] + }, + { + "id": 9975, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203, + 199 + ] + }, + { + "id": 9976, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 203 + ] + }, + { + "id": 9977, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 200, + 201, + 205 + ] + }, + { + "id": 9978, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 206, + 202, + 205 + ] + }, + { + "id": 9979, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 200, + 201 + ] + }, + { + "id": 9980, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 206, + 202 + ] + }, + { + "id": 9981, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 200, + 205 + ] + }, + { + "id": 9982, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 207, + 202, + 205 + ] + }, + { + "id": 9983, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 200 + ] + }, + { + "id": 9984, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 207, + 202 + ] + }, + { + "id": 9985, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 201, + 205 + ] + }, + { + "id": 9986, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 208, + 202, + 205 + ] + }, + { + "id": 9987, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 201 + ] + }, + { + "id": 9988, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 208, + 202 + ] + }, + { + "id": 9989, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204, + 205 + ] + }, + { + "id": 9990, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 209, + 205 + ] + }, + { + "id": 9991, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 204 + ] + }, + { + "id": 9992, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 209 + ] + }, + { + "id": 9993, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 200, + 201, + 205 + ] + }, + { + "id": 9994, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 206, + 205 + ] + }, + { + "id": 9995, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 200, + 201 + ] + }, + { + "id": 9996, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 206 + ] + }, + { + "id": 9997, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 200, + 205 + ] + }, + { + "id": 9998, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 207, + 205 + ] + }, + { + "id": 9999, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 200 + ] + }, + { + "id": 10000, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 207 + ] + }, + { + "id": 10001, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 201, + 205 + ] + }, + { + "id": 10002, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 208, + 205 + ] + }, + { + "id": 10003, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 201 + ] + }, + { + "id": 10004, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 208 + ] + }, + { + "id": 10005, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210, + 205 + ] + }, + { + "id": 10006, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 211 + ] + }, + { + "id": 10007, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 210 + ] + }, + { + "id": 10008, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 212 + ] + } + ] + }, + { + "id": 530, + "name": "chorus_flower", + "translation_key": "block.minecraft.chorus_flower", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "default_state_id": 10009, + "states": [ + { + "id": 10009, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10010, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10011, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10012, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10013, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10014, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 531, + "name": "purpur_block", + "translation_key": "block.minecraft.purpur_block", + "properties": [], + "default_state_id": 10015, + "states": [ + { + "id": 10015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 532, + "name": "purpur_pillar", + "translation_key": "block.minecraft.purpur_pillar", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 10017, + "states": [ + { + "id": 10016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 533, + "name": "purpur_stairs", + "translation_key": "block.minecraft.purpur_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10030, + "states": [ + { + "id": 10019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 534, + "name": "end_stone_bricks", + "translation_key": "block.minecraft.end_stone_bricks", + "properties": [], + "default_state_id": 10099, + "states": [ + { + "id": 10099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 535, + "name": "beetroots", + "translation_key": "block.minecraft.beetroots", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "default_state_id": 10100, + "states": [ + { + "id": 10100, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10101, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10102, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10103, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 536, + "name": "dirt_path", + "translation_key": "block.minecraft.dirt_path", + "properties": [], + "default_state_id": 10104, + "states": [ + { + "id": 10104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 63 + ] + } + ] + }, + { + "id": 537, + "name": "end_gateway", + "translation_key": "block.minecraft.end_gateway", + "properties": [], + "default_state_id": 10105, + "states": [ + { + "id": 10105, + "luminance": 15, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 538, + "name": "repeating_command_block", + "translation_key": "block.minecraft.repeating_command_block", + "properties": [ + { + "name": "conditional", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10112, + "states": [ + { + "id": 10106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 539, + "name": "chain_command_block", + "translation_key": "block.minecraft.chain_command_block", + "properties": [ + { + "name": "conditional", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10124, + "states": [ + { + "id": 10118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 540, + "name": "frosted_ice", + "translation_key": "block.minecraft.frosted_ice", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "default_state_id": 10130, + "states": [ + { + "id": 10130, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10131, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10132, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10133, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 541, + "name": "magma_block", + "translation_key": "block.minecraft.magma_block", + "properties": [], + "default_state_id": 10134, + "states": [ + { + "id": 10134, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 542, + "name": "nether_wart_block", + "translation_key": "block.minecraft.nether_wart_block", + "properties": [], + "default_state_id": 10135, + "states": [ + { + "id": 10135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 543, + "name": "red_nether_bricks", + "translation_key": "block.minecraft.red_nether_bricks", + "properties": [], + "default_state_id": 10136, + "states": [ + { + "id": 10136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 544, + "name": "bone_block", + "translation_key": "block.minecraft.bone_block", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 10138, + "states": [ + { + "id": 10137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 545, + "name": "structure_void", + "translation_key": "block.minecraft.structure_void", + "properties": [], + "default_state_id": 10140, + "states": [ + { + "id": 10140, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 546, + "name": "observer", + "translation_key": "block.minecraft.observer", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10146, + "states": [ + { + "id": 10141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 547, + "name": "shulker_box", + "translation_key": "block.minecraft.shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10157, + "states": [ + { + "id": 10153, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10154, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10155, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10156, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10157, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10158, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 548, + "name": "white_shulker_box", + "translation_key": "block.minecraft.white_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10163, + "states": [ + { + "id": 10159, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10160, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10161, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10162, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10163, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10164, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 549, + "name": "orange_shulker_box", + "translation_key": "block.minecraft.orange_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10169, + "states": [ + { + "id": 10165, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10166, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10167, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10168, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10169, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10170, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 550, + "name": "magenta_shulker_box", + "translation_key": "block.minecraft.magenta_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10175, + "states": [ + { + "id": 10171, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10172, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10173, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10174, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10175, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10176, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 551, + "name": "light_blue_shulker_box", + "translation_key": "block.minecraft.light_blue_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10181, + "states": [ + { + "id": 10177, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10178, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10179, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10180, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10181, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10182, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 552, + "name": "yellow_shulker_box", + "translation_key": "block.minecraft.yellow_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10187, + "states": [ + { + "id": 10183, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10184, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10185, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10186, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10187, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10188, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 553, + "name": "lime_shulker_box", + "translation_key": "block.minecraft.lime_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10193, + "states": [ + { + "id": 10189, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10190, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10191, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10192, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10193, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10194, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 554, + "name": "pink_shulker_box", + "translation_key": "block.minecraft.pink_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10199, + "states": [ + { + "id": 10195, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10196, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10197, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10198, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10199, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10200, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 555, + "name": "gray_shulker_box", + "translation_key": "block.minecraft.gray_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10205, + "states": [ + { + "id": 10201, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10202, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10203, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10204, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10205, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10206, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 556, + "name": "light_gray_shulker_box", + "translation_key": "block.minecraft.light_gray_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10211, + "states": [ + { + "id": 10207, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10208, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10209, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10210, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10211, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10212, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 557, + "name": "cyan_shulker_box", + "translation_key": "block.minecraft.cyan_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10217, + "states": [ + { + "id": 10213, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10214, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10215, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10216, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10217, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10218, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 558, + "name": "purple_shulker_box", + "translation_key": "block.minecraft.purple_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10223, + "states": [ + { + "id": 10219, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10220, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10221, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10222, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10223, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10224, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 559, + "name": "blue_shulker_box", + "translation_key": "block.minecraft.blue_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10229, + "states": [ + { + "id": 10225, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10226, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10227, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10228, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10229, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10230, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 560, + "name": "brown_shulker_box", + "translation_key": "block.minecraft.brown_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10235, + "states": [ + { + "id": 10231, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10232, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10233, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10234, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10235, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10236, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 561, + "name": "green_shulker_box", + "translation_key": "block.minecraft.green_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10241, + "states": [ + { + "id": 10237, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10238, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10239, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10240, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10241, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10242, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 562, + "name": "red_shulker_box", + "translation_key": "block.minecraft.red_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10247, + "states": [ + { + "id": 10243, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10244, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10245, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10246, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10247, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10248, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 563, + "name": "black_shulker_box", + "translation_key": "block.minecraft.black_shulker_box", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 10253, + "states": [ + { + "id": 10249, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10250, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10251, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10252, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10253, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10254, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 564, + "name": "white_glazed_terracotta", + "translation_key": "block.minecraft.white_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10255, + "states": [ + { + "id": 10255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 565, + "name": "orange_glazed_terracotta", + "translation_key": "block.minecraft.orange_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10259, + "states": [ + { + "id": 10259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 566, + "name": "magenta_glazed_terracotta", + "translation_key": "block.minecraft.magenta_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10263, + "states": [ + { + "id": 10263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 567, + "name": "light_blue_glazed_terracotta", + "translation_key": "block.minecraft.light_blue_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10267, + "states": [ + { + "id": 10267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 568, + "name": "yellow_glazed_terracotta", + "translation_key": "block.minecraft.yellow_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10271, + "states": [ + { + "id": 10271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 569, + "name": "lime_glazed_terracotta", + "translation_key": "block.minecraft.lime_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10275, + "states": [ + { + "id": 10275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 570, + "name": "pink_glazed_terracotta", + "translation_key": "block.minecraft.pink_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10279, + "states": [ + { + "id": 10279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 571, + "name": "gray_glazed_terracotta", + "translation_key": "block.minecraft.gray_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10283, + "states": [ + { + "id": 10283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 572, + "name": "light_gray_glazed_terracotta", + "translation_key": "block.minecraft.light_gray_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10287, + "states": [ + { + "id": 10287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 573, + "name": "cyan_glazed_terracotta", + "translation_key": "block.minecraft.cyan_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10291, + "states": [ + { + "id": 10291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 574, + "name": "purple_glazed_terracotta", + "translation_key": "block.minecraft.purple_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10295, + "states": [ + { + "id": 10295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 575, + "name": "blue_glazed_terracotta", + "translation_key": "block.minecraft.blue_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10299, + "states": [ + { + "id": 10299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 576, + "name": "brown_glazed_terracotta", + "translation_key": "block.minecraft.brown_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10303, + "states": [ + { + "id": 10303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 577, + "name": "green_glazed_terracotta", + "translation_key": "block.minecraft.green_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10307, + "states": [ + { + "id": 10307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 578, + "name": "red_glazed_terracotta", + "translation_key": "block.minecraft.red_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10311, + "states": [ + { + "id": 10311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 579, + "name": "black_glazed_terracotta", + "translation_key": "block.minecraft.black_glazed_terracotta", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 10315, + "states": [ + { + "id": 10315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 580, + "name": "white_concrete", + "translation_key": "block.minecraft.white_concrete", + "properties": [], + "default_state_id": 10319, + "states": [ + { + "id": 10319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 581, + "name": "orange_concrete", + "translation_key": "block.minecraft.orange_concrete", + "properties": [], + "default_state_id": 10320, + "states": [ + { + "id": 10320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 582, + "name": "magenta_concrete", + "translation_key": "block.minecraft.magenta_concrete", + "properties": [], + "default_state_id": 10321, + "states": [ + { + "id": 10321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 583, + "name": "light_blue_concrete", + "translation_key": "block.minecraft.light_blue_concrete", + "properties": [], + "default_state_id": 10322, + "states": [ + { + "id": 10322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 584, + "name": "yellow_concrete", + "translation_key": "block.minecraft.yellow_concrete", + "properties": [], + "default_state_id": 10323, + "states": [ + { + "id": 10323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 585, + "name": "lime_concrete", + "translation_key": "block.minecraft.lime_concrete", + "properties": [], + "default_state_id": 10324, + "states": [ + { + "id": 10324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 586, + "name": "pink_concrete", + "translation_key": "block.minecraft.pink_concrete", + "properties": [], + "default_state_id": 10325, + "states": [ + { + "id": 10325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 587, + "name": "gray_concrete", + "translation_key": "block.minecraft.gray_concrete", + "properties": [], + "default_state_id": 10326, + "states": [ + { + "id": 10326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 588, + "name": "light_gray_concrete", + "translation_key": "block.minecraft.light_gray_concrete", + "properties": [], + "default_state_id": 10327, + "states": [ + { + "id": 10327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 589, + "name": "cyan_concrete", + "translation_key": "block.minecraft.cyan_concrete", + "properties": [], + "default_state_id": 10328, + "states": [ + { + "id": 10328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 590, + "name": "purple_concrete", + "translation_key": "block.minecraft.purple_concrete", + "properties": [], + "default_state_id": 10329, + "states": [ + { + "id": 10329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 591, + "name": "blue_concrete", + "translation_key": "block.minecraft.blue_concrete", + "properties": [], + "default_state_id": 10330, + "states": [ + { + "id": 10330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 592, + "name": "brown_concrete", + "translation_key": "block.minecraft.brown_concrete", + "properties": [], + "default_state_id": 10331, + "states": [ + { + "id": 10331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 593, + "name": "green_concrete", + "translation_key": "block.minecraft.green_concrete", + "properties": [], + "default_state_id": 10332, + "states": [ + { + "id": 10332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 594, + "name": "red_concrete", + "translation_key": "block.minecraft.red_concrete", + "properties": [], + "default_state_id": 10333, + "states": [ + { + "id": 10333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 595, + "name": "black_concrete", + "translation_key": "block.minecraft.black_concrete", + "properties": [], + "default_state_id": 10334, + "states": [ + { + "id": 10334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 596, + "name": "white_concrete_powder", + "translation_key": "block.minecraft.white_concrete_powder", + "properties": [], + "default_state_id": 10335, + "states": [ + { + "id": 10335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 597, + "name": "orange_concrete_powder", + "translation_key": "block.minecraft.orange_concrete_powder", + "properties": [], + "default_state_id": 10336, + "states": [ + { + "id": 10336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 598, + "name": "magenta_concrete_powder", + "translation_key": "block.minecraft.magenta_concrete_powder", + "properties": [], + "default_state_id": 10337, + "states": [ + { + "id": 10337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 599, + "name": "light_blue_concrete_powder", + "translation_key": "block.minecraft.light_blue_concrete_powder", + "properties": [], + "default_state_id": 10338, + "states": [ + { + "id": 10338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 600, + "name": "yellow_concrete_powder", + "translation_key": "block.minecraft.yellow_concrete_powder", + "properties": [], + "default_state_id": 10339, + "states": [ + { + "id": 10339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 601, + "name": "lime_concrete_powder", + "translation_key": "block.minecraft.lime_concrete_powder", + "properties": [], + "default_state_id": 10340, + "states": [ + { + "id": 10340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 602, + "name": "pink_concrete_powder", + "translation_key": "block.minecraft.pink_concrete_powder", + "properties": [], + "default_state_id": 10341, + "states": [ + { + "id": 10341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 603, + "name": "gray_concrete_powder", + "translation_key": "block.minecraft.gray_concrete_powder", + "properties": [], + "default_state_id": 10342, + "states": [ + { + "id": 10342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 604, + "name": "light_gray_concrete_powder", + "translation_key": "block.minecraft.light_gray_concrete_powder", + "properties": [], + "default_state_id": 10343, + "states": [ + { + "id": 10343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 605, + "name": "cyan_concrete_powder", + "translation_key": "block.minecraft.cyan_concrete_powder", + "properties": [], + "default_state_id": 10344, + "states": [ + { + "id": 10344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 606, + "name": "purple_concrete_powder", + "translation_key": "block.minecraft.purple_concrete_powder", + "properties": [], + "default_state_id": 10345, + "states": [ + { + "id": 10345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 607, + "name": "blue_concrete_powder", + "translation_key": "block.minecraft.blue_concrete_powder", + "properties": [], + "default_state_id": 10346, + "states": [ + { + "id": 10346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 608, + "name": "brown_concrete_powder", + "translation_key": "block.minecraft.brown_concrete_powder", + "properties": [], + "default_state_id": 10347, + "states": [ + { + "id": 10347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 609, + "name": "green_concrete_powder", + "translation_key": "block.minecraft.green_concrete_powder", + "properties": [], + "default_state_id": 10348, + "states": [ + { + "id": 10348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 610, + "name": "red_concrete_powder", + "translation_key": "block.minecraft.red_concrete_powder", + "properties": [], + "default_state_id": 10349, + "states": [ + { + "id": 10349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 611, + "name": "black_concrete_powder", + "translation_key": "block.minecraft.black_concrete_powder", + "properties": [], + "default_state_id": 10350, + "states": [ + { + "id": 10350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 612, + "name": "kelp", + "translation_key": "block.minecraft.kelp", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "default_state_id": 10351, + "states": [ + { + "id": 10351, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10352, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10353, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10354, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10355, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10356, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10357, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10358, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10359, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10360, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10361, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10362, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10363, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10364, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10365, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10366, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10367, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10368, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10369, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10370, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10371, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10372, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10373, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10374, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10375, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10376, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 613, + "name": "kelp_plant", + "translation_key": "block.minecraft.kelp_plant", + "properties": [], + "default_state_id": 10377, + "states": [ + { + "id": 10377, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 614, + "name": "dried_kelp_block", + "translation_key": "block.minecraft.dried_kelp_block", + "properties": [], + "default_state_id": 10378, + "states": [ + { + "id": 10378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 615, + "name": "turtle_egg", + "translation_key": "block.minecraft.turtle_egg", + "properties": [ + { + "name": "eggs", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "hatch", + "values": [ + "0", + "1", + "2" + ] + } + ], + "default_state_id": 10379, + "states": [ + { + "id": 10379, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 213 + ] + }, + { + "id": 10380, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 213 + ] + }, + { + "id": 10381, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 213 + ] + }, + { + "id": 10382, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10383, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10384, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10385, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10386, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10387, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10388, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10389, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + }, + { + "id": 10390, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 214 + ] + } + ] + }, + { + "id": 616, + "name": "dead_tube_coral_block", + "translation_key": "block.minecraft.dead_tube_coral_block", + "properties": [], + "default_state_id": 10391, + "states": [ + { + "id": 10391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 617, + "name": "dead_brain_coral_block", + "translation_key": "block.minecraft.dead_brain_coral_block", + "properties": [], + "default_state_id": 10392, + "states": [ + { + "id": 10392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 618, + "name": "dead_bubble_coral_block", + "translation_key": "block.minecraft.dead_bubble_coral_block", + "properties": [], + "default_state_id": 10393, + "states": [ + { + "id": 10393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 619, + "name": "dead_fire_coral_block", + "translation_key": "block.minecraft.dead_fire_coral_block", + "properties": [], + "default_state_id": 10394, + "states": [ + { + "id": 10394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 620, + "name": "dead_horn_coral_block", + "translation_key": "block.minecraft.dead_horn_coral_block", + "properties": [], + "default_state_id": 10395, + "states": [ + { + "id": 10395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 621, + "name": "tube_coral_block", + "translation_key": "block.minecraft.tube_coral_block", + "properties": [], + "default_state_id": 10396, + "states": [ + { + "id": 10396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 622, + "name": "brain_coral_block", + "translation_key": "block.minecraft.brain_coral_block", + "properties": [], + "default_state_id": 10397, + "states": [ + { + "id": 10397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 623, + "name": "bubble_coral_block", + "translation_key": "block.minecraft.bubble_coral_block", + "properties": [], + "default_state_id": 10398, + "states": [ + { + "id": 10398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 624, + "name": "fire_coral_block", + "translation_key": "block.minecraft.fire_coral_block", + "properties": [], + "default_state_id": 10399, + "states": [ + { + "id": 10399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 625, + "name": "horn_coral_block", + "translation_key": "block.minecraft.horn_coral_block", + "properties": [], + "default_state_id": 10400, + "states": [ + { + "id": 10400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 626, + "name": "dead_tube_coral", + "translation_key": "block.minecraft.dead_tube_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10401, + "states": [ + { + "id": 10401, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10402, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 627, + "name": "dead_brain_coral", + "translation_key": "block.minecraft.dead_brain_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10403, + "states": [ + { + "id": 10403, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10404, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 628, + "name": "dead_bubble_coral", + "translation_key": "block.minecraft.dead_bubble_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10405, + "states": [ + { + "id": 10405, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10406, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 629, + "name": "dead_fire_coral", + "translation_key": "block.minecraft.dead_fire_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10407, + "states": [ + { + "id": 10407, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10408, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 630, + "name": "dead_horn_coral", + "translation_key": "block.minecraft.dead_horn_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10409, + "states": [ + { + "id": 10409, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10410, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 631, + "name": "tube_coral", + "translation_key": "block.minecraft.tube_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10411, + "states": [ + { + "id": 10411, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10412, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 632, + "name": "brain_coral", + "translation_key": "block.minecraft.brain_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10413, + "states": [ + { + "id": 10413, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10414, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 633, + "name": "bubble_coral", + "translation_key": "block.minecraft.bubble_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10415, + "states": [ + { + "id": 10415, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10416, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 634, + "name": "fire_coral", + "translation_key": "block.minecraft.fire_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10417, + "states": [ + { + "id": 10417, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10418, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 635, + "name": "horn_coral", + "translation_key": "block.minecraft.horn_coral", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10419, + "states": [ + { + "id": 10419, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10420, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 636, + "name": "dead_tube_coral_fan", + "translation_key": "block.minecraft.dead_tube_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10421, + "states": [ + { + "id": 10421, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10422, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 637, + "name": "dead_brain_coral_fan", + "translation_key": "block.minecraft.dead_brain_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10423, + "states": [ + { + "id": 10423, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10424, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 638, + "name": "dead_bubble_coral_fan", + "translation_key": "block.minecraft.dead_bubble_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10425, + "states": [ + { + "id": 10425, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10426, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 639, + "name": "dead_fire_coral_fan", + "translation_key": "block.minecraft.dead_fire_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10427, + "states": [ + { + "id": 10427, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10428, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 640, + "name": "dead_horn_coral_fan", + "translation_key": "block.minecraft.dead_horn_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10429, + "states": [ + { + "id": 10429, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10430, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 641, + "name": "tube_coral_fan", + "translation_key": "block.minecraft.tube_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10431, + "states": [ + { + "id": 10431, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10432, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 642, + "name": "brain_coral_fan", + "translation_key": "block.minecraft.brain_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10433, + "states": [ + { + "id": 10433, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10434, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 643, + "name": "bubble_coral_fan", + "translation_key": "block.minecraft.bubble_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10435, + "states": [ + { + "id": 10435, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10436, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 644, + "name": "fire_coral_fan", + "translation_key": "block.minecraft.fire_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10437, + "states": [ + { + "id": 10437, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10438, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 645, + "name": "horn_coral_fan", + "translation_key": "block.minecraft.horn_coral_fan", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10439, + "states": [ + { + "id": 10439, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10440, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 646, + "name": "dead_tube_coral_wall_fan", + "translation_key": "block.minecraft.dead_tube_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10441, + "states": [ + { + "id": 10441, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10442, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10443, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10444, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10445, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10446, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10447, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10448, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 647, + "name": "dead_brain_coral_wall_fan", + "translation_key": "block.minecraft.dead_brain_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10449, + "states": [ + { + "id": 10449, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10450, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10451, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10452, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10453, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10454, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10455, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10456, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 648, + "name": "dead_bubble_coral_wall_fan", + "translation_key": "block.minecraft.dead_bubble_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10457, + "states": [ + { + "id": 10457, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10458, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10459, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10460, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10461, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10462, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10463, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10464, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 649, + "name": "dead_fire_coral_wall_fan", + "translation_key": "block.minecraft.dead_fire_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10465, + "states": [ + { + "id": 10465, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10466, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10467, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10468, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10469, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10470, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10471, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10472, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 650, + "name": "dead_horn_coral_wall_fan", + "translation_key": "block.minecraft.dead_horn_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10473, + "states": [ + { + "id": 10473, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10474, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10475, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10476, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10477, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10478, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10479, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10480, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 651, + "name": "tube_coral_wall_fan", + "translation_key": "block.minecraft.tube_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10481, + "states": [ + { + "id": 10481, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10482, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10483, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10484, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10485, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10486, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10487, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10488, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 652, + "name": "brain_coral_wall_fan", + "translation_key": "block.minecraft.brain_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10489, + "states": [ + { + "id": 10489, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10490, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10491, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10492, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10493, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10494, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10495, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10496, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 653, + "name": "bubble_coral_wall_fan", + "translation_key": "block.minecraft.bubble_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10497, + "states": [ + { + "id": 10497, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10498, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10499, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10500, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10501, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10502, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10503, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10504, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 654, + "name": "fire_coral_wall_fan", + "translation_key": "block.minecraft.fire_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10505, + "states": [ + { + "id": 10505, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10506, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10507, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10508, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10509, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10510, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10511, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10512, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 655, + "name": "horn_coral_wall_fan", + "translation_key": "block.minecraft.horn_coral_wall_fan", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10513, + "states": [ + { + "id": 10513, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10514, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10515, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10516, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10517, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10518, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10519, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10520, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 656, + "name": "sea_pickle", + "translation_key": "block.minecraft.sea_pickle", + "properties": [ + { + "name": "pickles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10521, + "states": [ + { + "id": 10521, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 215 + ] + }, + { + "id": 10522, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 215 + ] + }, + { + "id": 10523, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 216 + ] + }, + { + "id": 10524, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 216 + ] + }, + { + "id": 10525, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 217 + ] + }, + { + "id": 10526, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 217 + ] + }, + { + "id": 10527, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 218 + ] + }, + { + "id": 10528, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 218 + ] + } + ] + }, + { + "id": 657, + "name": "blue_ice", + "translation_key": "block.minecraft.blue_ice", + "properties": [], + "default_state_id": 10529, + "states": [ + { + "id": 10529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 658, + "name": "conduit", + "translation_key": "block.minecraft.conduit", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10530, + "states": [ + { + "id": 10530, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 219 + ] + }, + { + "id": 10531, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 219 + ] + } + ] + }, + { + "id": 659, + "name": "bamboo_sapling", + "translation_key": "block.minecraft.bamboo_sapling", + "properties": [], + "default_state_id": 10532, + "states": [ + { + "id": 10532, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 660, + "name": "bamboo", + "translation_key": "block.minecraft.bamboo", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1" + ] + }, + { + "name": "leaves", + "values": [ + "none", + "small", + "large" + ] + }, + { + "name": "stage", + "values": [ + "0", + "1" + ] + } + ], + "default_state_id": 10533, + "states": [ + { + "id": 10533, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10534, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10535, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10536, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10537, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10538, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10539, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10540, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10541, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10542, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10543, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 10544, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 220 + ] + } + ] + }, + { + "id": 661, + "name": "potted_bamboo", + "translation_key": "block.minecraft.potted_bamboo", + "properties": [], + "default_state_id": 10545, + "states": [ + { + "id": 10545, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 662, + "name": "void_air", + "translation_key": "block.minecraft.void_air", + "properties": [], + "default_state_id": 10546, + "states": [ + { + "id": 10546, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 663, + "name": "cave_air", + "translation_key": "block.minecraft.cave_air", + "properties": [], + "default_state_id": 10547, + "states": [ + { + "id": 10547, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 664, + "name": "bubble_column", + "translation_key": "block.minecraft.bubble_column", + "properties": [ + { + "name": "drag", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10548, + "states": [ + { + "id": 10548, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 10549, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 665, + "name": "polished_granite_stairs", + "translation_key": "block.minecraft.polished_granite_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10561, + "states": [ + { + "id": 10550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 666, + "name": "smooth_red_sandstone_stairs", + "translation_key": "block.minecraft.smooth_red_sandstone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10641, + "states": [ + { + "id": 10630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 667, + "name": "mossy_stone_brick_stairs", + "translation_key": "block.minecraft.mossy_stone_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10721, + "states": [ + { + "id": 10710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 668, + "name": "polished_diorite_stairs", + "translation_key": "block.minecraft.polished_diorite_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10801, + "states": [ + { + "id": 10790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 669, + "name": "mossy_cobblestone_stairs", + "translation_key": "block.minecraft.mossy_cobblestone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10881, + "states": [ + { + "id": 10870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 670, + "name": "end_stone_brick_stairs", + "translation_key": "block.minecraft.end_stone_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10961, + "states": [ + { + "id": 10950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 671, + "name": "stone_stairs", + "translation_key": "block.minecraft.stone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11041, + "states": [ + { + "id": 11030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 672, + "name": "smooth_sandstone_stairs", + "translation_key": "block.minecraft.smooth_sandstone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11121, + "states": [ + { + "id": 11110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 673, + "name": "smooth_quartz_stairs", + "translation_key": "block.minecraft.smooth_quartz_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11201, + "states": [ + { + "id": 11190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 674, + "name": "granite_stairs", + "translation_key": "block.minecraft.granite_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11281, + "states": [ + { + "id": 11270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 675, + "name": "andesite_stairs", + "translation_key": "block.minecraft.andesite_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11361, + "states": [ + { + "id": 11350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 676, + "name": "red_nether_brick_stairs", + "translation_key": "block.minecraft.red_nether_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11441, + "states": [ + { + "id": 11430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 677, + "name": "polished_andesite_stairs", + "translation_key": "block.minecraft.polished_andesite_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11521, + "states": [ + { + "id": 11510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 678, + "name": "diorite_stairs", + "translation_key": "block.minecraft.diorite_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11601, + "states": [ + { + "id": 11590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 11592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 11602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 11612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 11622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 11632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 11634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 11636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 11638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 11640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 11642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 11644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 11646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 11648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 11650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 11652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 11654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 11656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 11658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 11660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 11662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 11664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 679, + "name": "polished_granite_slab", + "translation_key": "block.minecraft.polished_granite_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11673, + "states": [ + { + "id": 11670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 680, + "name": "smooth_red_sandstone_slab", + "translation_key": "block.minecraft.smooth_red_sandstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11679, + "states": [ + { + "id": 11676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 681, + "name": "mossy_stone_brick_slab", + "translation_key": "block.minecraft.mossy_stone_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11685, + "states": [ + { + "id": 11682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 682, + "name": "polished_diorite_slab", + "translation_key": "block.minecraft.polished_diorite_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11691, + "states": [ + { + "id": 11688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 683, + "name": "mossy_cobblestone_slab", + "translation_key": "block.minecraft.mossy_cobblestone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11697, + "states": [ + { + "id": 11694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 684, + "name": "end_stone_brick_slab", + "translation_key": "block.minecraft.end_stone_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11703, + "states": [ + { + "id": 11700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 685, + "name": "smooth_sandstone_slab", + "translation_key": "block.minecraft.smooth_sandstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11709, + "states": [ + { + "id": 11706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 686, + "name": "smooth_quartz_slab", + "translation_key": "block.minecraft.smooth_quartz_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11715, + "states": [ + { + "id": 11712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 687, + "name": "granite_slab", + "translation_key": "block.minecraft.granite_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11721, + "states": [ + { + "id": 11718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 688, + "name": "andesite_slab", + "translation_key": "block.minecraft.andesite_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11727, + "states": [ + { + "id": 11724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 689, + "name": "red_nether_brick_slab", + "translation_key": "block.minecraft.red_nether_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11733, + "states": [ + { + "id": 11730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 690, + "name": "polished_andesite_slab", + "translation_key": "block.minecraft.polished_andesite_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11739, + "states": [ + { + "id": 11736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 691, + "name": "diorite_slab", + "translation_key": "block.minecraft.diorite_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11745, + "states": [ + { + "id": 11742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 11744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 692, + "name": "brick_wall", + "translation_key": "block.minecraft.brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 11751, + "states": [ + { + "id": 11748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 11749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 11750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 11751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 11752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 11753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 11754, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 11755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 11756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 11757, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 11758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 11759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 11760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 11761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 11764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 11767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 11770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 11773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 11776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 11778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 11779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 11782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 11784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 11785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 11788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 11791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 11794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 11821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 11824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 11826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 11827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 11830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 11832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 11848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 11854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 11856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 11857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 11860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 11863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 11866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 11893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 11896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 11899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 11902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 11929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 11932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 11934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 11935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 11938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 11940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 11956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 11958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 11962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 11964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 11965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 11968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 11970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 11971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 11974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 11976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 11992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 11994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 11998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 11999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 693, + "name": "prismarine_wall", + "translation_key": "block.minecraft.prismarine_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 12075, + "states": [ + { + "id": 12072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 12073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 12076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12078, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 12079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12081, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 12082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 694, + "name": "red_sandstone_wall", + "translation_key": "block.minecraft.red_sandstone_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 12399, + "states": [ + { + "id": 12396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 12397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 12400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12402, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 12403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12405, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 12406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 695, + "name": "mossy_stone_brick_wall", + "translation_key": "block.minecraft.mossy_stone_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 12723, + "states": [ + { + "id": 12720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 12721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 12724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 12726, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 12727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12729, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 12730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 12732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 12748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 12750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 12754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 12756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 12796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 12798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 12802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 12804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 12820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 12826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 12828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 12940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 12942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 12946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 12948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 12964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 12966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 12970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 12972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 12976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 12978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 12982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 12984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 12994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 12996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 12997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 12999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 696, + "name": "granite_wall", + "translation_key": "block.minecraft.granite_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 13047, + "states": [ + { + "id": 13044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 13045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 13048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13050, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 13051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13053, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 13054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 697, + "name": "stone_brick_wall", + "translation_key": "block.minecraft.stone_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 13371, + "states": [ + { + "id": 13368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 13369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 13372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13374, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 13375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13377, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 13378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 698, + "name": "mud_brick_wall", + "translation_key": "block.minecraft.mud_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 13695, + "states": [ + { + "id": 13692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 13693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 13696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 13698, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 13699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13701, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 13702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 13704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 13720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 13722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 13726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 13728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 13768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 13770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 13774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 13776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 13792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 13798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 13800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 13912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 13914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 13918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 13920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 13936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 13938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 13942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 13944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 13980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 13984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 13986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 13990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 13992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 13996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 13998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 13999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 699, + "name": "nether_brick_wall", + "translation_key": "block.minecraft.nether_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 14019, + "states": [ + { + "id": 14016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14022, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14025, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 700, + "name": "andesite_wall", + "translation_key": "block.minecraft.andesite_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 14343, + "states": [ + { + "id": 14340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14346, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14349, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 701, + "name": "red_nether_brick_wall", + "translation_key": "block.minecraft.red_nether_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 14667, + "states": [ + { + "id": 14664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14670, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14673, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 14692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 14694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 14698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 14700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 14740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 14742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 14746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 14748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 14764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 14770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 14772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 14884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 14886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 14890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 14892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 14908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 14910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 14914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 14916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 14956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 14958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 14962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 14964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 14980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 14982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 14986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 14987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 702, + "name": "sandstone_wall", + "translation_key": "block.minecraft.sandstone_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 14991, + "states": [ + { + "id": 14988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 14992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 14994, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14997, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 14998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 14999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 703, + "name": "end_stone_brick_wall", + "translation_key": "block.minecraft.end_stone_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 15315, + "states": [ + { + "id": 15312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 15313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 15316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15318, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 15319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15321, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 15322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 704, + "name": "diorite_wall", + "translation_key": "block.minecraft.diorite_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 15639, + "states": [ + { + "id": 15636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 15637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 15640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 15642, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 15643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15645, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 15646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 15648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 15664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 15666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 15670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 15672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 15712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 15714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 15718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 15720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 15736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 15742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 15744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 15856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 15858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 15862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 15864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 15880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 15882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 15886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 15888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 15928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 15930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 15934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 15936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 15952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 15954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 15958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 15959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 705, + "name": "scaffolding", + "translation_key": "block.minecraft.scaffolding", + "properties": [ + { + "name": "bottom", + "values": [ + "true", + "false" + ] + }, + { + "name": "distance", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 15991, + "states": [ + { + "id": 15960, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15961, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15962, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15963, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15964, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15965, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15966, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15967, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15968, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15969, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15970, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15971, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15972, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15973, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15974, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15975, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15976, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15977, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15978, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15979, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15980, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15981, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15982, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15983, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15984, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15985, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15986, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15987, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15988, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15989, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15990, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + }, + { + "id": 15991, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 221, + 222, + 223, + 224, + 225, + 226, + 227 + ] + } + ] + }, + { + "id": 706, + "name": "loom", + "translation_key": "block.minecraft.loom", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 15992, + "states": [ + { + "id": 15992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 15993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 15994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 15995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 707, + "name": "barrel", + "translation_key": "block.minecraft.barrel", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 15997, + "states": [ + { + "id": 15996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 15997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 15998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 15999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 708, + "name": "smoker", + "translation_key": "block.minecraft.smoker", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16009, + "states": [ + { + "id": 16008, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16010, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16012, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16014, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 709, + "name": "blast_furnace", + "translation_key": "block.minecraft.blast_furnace", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16017, + "states": [ + { + "id": 16016, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16018, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16020, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16022, + "luminance": 13, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 710, + "name": "cartography_table", + "translation_key": "block.minecraft.cartography_table", + "properties": [], + "default_state_id": 16024, + "states": [ + { + "id": 16024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 711, + "name": "fletching_table", + "translation_key": "block.minecraft.fletching_table", + "properties": [], + "default_state_id": 16025, + "states": [ + { + "id": 16025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 712, + "name": "grindstone", + "translation_key": "block.minecraft.grindstone", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 16030, + "states": [ + { + "id": 16026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 228, + 229, + 230, + 231, + 232, + 233, + 234 + ] + }, + { + "id": 16027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 228, + 229, + 230, + 231, + 232, + 233, + 234 + ] + }, + { + "id": 16028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 235, + 236, + 237, + 238, + 239, + 240, + 241 + ] + }, + { + "id": 16029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 235, + 236, + 237, + 238, + 239, + 240, + 241 + ] + }, + { + "id": 16030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 242, + 243, + 244, + 245, + 246 + ] + }, + { + "id": 16031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 247, + 248, + 249, + 250, + 251 + ] + }, + { + "id": 16032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 252, + 253, + 254, + 255, + 256 + ] + }, + { + "id": 16033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 257, + 258, + 259, + 260, + 261 + ] + }, + { + "id": 16034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 262, + 263, + 264, + 265, + 266 + ] + }, + { + "id": 16035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 262, + 263, + 264, + 265, + 266 + ] + }, + { + "id": 16036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 267, + 268, + 269, + 270, + 271 + ] + }, + { + "id": 16037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 267, + 268, + 269, + 270, + 271 + ] + } + ] + }, + { + "id": 713, + "name": "lectern", + "translation_key": "block.minecraft.lectern", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "has_book", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16041, + "states": [ + { + "id": 16038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + }, + { + "id": 16053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 272 + ] + } + ] + }, + { + "id": 714, + "name": "smithing_table", + "translation_key": "block.minecraft.smithing_table", + "properties": [], + "default_state_id": 16054, + "states": [ + { + "id": 16054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 715, + "name": "stonecutter", + "translation_key": "block.minecraft.stonecutter", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 16055, + "states": [ + { + "id": 16055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 273 + ] + }, + { + "id": 16056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 273 + ] + }, + { + "id": 16057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 273 + ] + }, + { + "id": 16058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 273 + ] + } + ] + }, + { + "id": 716, + "name": "bell", + "translation_key": "block.minecraft.bell", + "properties": [ + { + "name": "attachment", + "values": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16060, + "states": [ + { + "id": 16059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 274 + ] + }, + { + "id": 16060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 274 + ] + }, + { + "id": 16061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 274 + ] + }, + { + "id": 16062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 274 + ] + }, + { + "id": 16063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 275 + ] + }, + { + "id": 16064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 275 + ] + }, + { + "id": 16065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 275 + ] + }, + { + "id": 16066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 275 + ] + }, + { + "id": 16067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 278 + ] + }, + { + "id": 16075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 279 + ] + }, + { + "id": 16076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 279 + ] + }, + { + "id": 16077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 280 + ] + }, + { + "id": 16078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 280 + ] + }, + { + "id": 16079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 281 + ] + }, + { + "id": 16080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 281 + ] + }, + { + "id": 16081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 282 + ] + }, + { + "id": 16082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 282 + ] + }, + { + "id": 16083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 283 + ] + }, + { + "id": 16084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 283 + ] + }, + { + "id": 16085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 283 + ] + }, + { + "id": 16086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 283 + ] + }, + { + "id": 16087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 284 + ] + }, + { + "id": 16088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 284 + ] + }, + { + "id": 16089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 284 + ] + }, + { + "id": 16090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 276, + 277, + 284 + ] + } + ] + }, + { + "id": 717, + "name": "lantern", + "translation_key": "block.minecraft.lantern", + "properties": [ + { + "name": "hanging", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16094, + "states": [ + { + "id": 16091, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 285, + 286 + ] + }, + { + "id": 16092, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 285, + 286 + ] + }, + { + "id": 16093, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 287, + 288 + ] + }, + { + "id": 16094, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 287, + 288 + ] + } + ] + }, + { + "id": 718, + "name": "soul_lantern", + "translation_key": "block.minecraft.soul_lantern", + "properties": [ + { + "name": "hanging", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16098, + "states": [ + { + "id": 16095, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 285, + 286 + ] + }, + { + "id": 16096, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 285, + 286 + ] + }, + { + "id": 16097, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 287, + 288 + ] + }, + { + "id": 16098, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 287, + 288 + ] + } + ] + }, + { + "id": 719, + "name": "campfire", + "translation_key": "block.minecraft.campfire", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "signal_fire", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16102, + "states": [ + { + "id": 16099, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16100, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16101, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16102, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16103, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16104, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16105, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16106, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16107, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16108, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16109, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16110, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16111, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16112, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16113, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16114, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16115, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16116, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16117, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16118, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16119, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16120, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16121, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16122, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16123, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16124, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16125, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16126, + "luminance": 15, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16127, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16128, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16129, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16130, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + } + ] + }, + { + "id": 720, + "name": "soul_campfire", + "translation_key": "block.minecraft.soul_campfire", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "signal_fire", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16134, + "states": [ + { + "id": 16131, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16132, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16133, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16134, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16135, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16136, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16137, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16138, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16139, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16140, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16141, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16142, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16143, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16144, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16145, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16146, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16147, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16148, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16149, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16150, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16151, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16152, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16153, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16154, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16155, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16156, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16157, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16158, + "luminance": 10, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16159, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16160, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16161, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + }, + { + "id": 16162, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 289 + ] + } + ] + }, + { + "id": 721, + "name": "sweet_berry_bush", + "translation_key": "block.minecraft.sweet_berry_bush", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "default_state_id": 16163, + "states": [ + { + "id": 16163, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16164, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16165, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16166, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 722, + "name": "warped_stem", + "translation_key": "block.minecraft.warped_stem", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16168, + "states": [ + { + "id": 16167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 723, + "name": "stripped_warped_stem", + "translation_key": "block.minecraft.stripped_warped_stem", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16171, + "states": [ + { + "id": 16170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 724, + "name": "warped_hyphae", + "translation_key": "block.minecraft.warped_hyphae", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16174, + "states": [ + { + "id": 16173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 725, + "name": "stripped_warped_hyphae", + "translation_key": "block.minecraft.stripped_warped_hyphae", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16177, + "states": [ + { + "id": 16176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 726, + "name": "warped_nylium", + "translation_key": "block.minecraft.warped_nylium", + "properties": [], + "default_state_id": 16179, + "states": [ + { + "id": 16179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 727, + "name": "warped_fungus", + "translation_key": "block.minecraft.warped_fungus", + "properties": [], + "default_state_id": 16180, + "states": [ + { + "id": 16180, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 728, + "name": "warped_wart_block", + "translation_key": "block.minecraft.warped_wart_block", + "properties": [], + "default_state_id": 16181, + "states": [ + { + "id": 16181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 729, + "name": "warped_roots", + "translation_key": "block.minecraft.warped_roots", + "properties": [], + "default_state_id": 16182, + "states": [ + { + "id": 16182, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 730, + "name": "nether_sprouts", + "translation_key": "block.minecraft.nether_sprouts", + "properties": [], + "default_state_id": 16183, + "states": [ + { + "id": 16183, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 731, + "name": "crimson_stem", + "translation_key": "block.minecraft.crimson_stem", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16185, + "states": [ + { + "id": 16184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 732, + "name": "stripped_crimson_stem", + "translation_key": "block.minecraft.stripped_crimson_stem", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16188, + "states": [ + { + "id": 16187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 733, + "name": "crimson_hyphae", + "translation_key": "block.minecraft.crimson_hyphae", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16191, + "states": [ + { + "id": 16190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 734, + "name": "stripped_crimson_hyphae", + "translation_key": "block.minecraft.stripped_crimson_hyphae", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 16194, + "states": [ + { + "id": 16193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 735, + "name": "crimson_nylium", + "translation_key": "block.minecraft.crimson_nylium", + "properties": [], + "default_state_id": 16196, + "states": [ + { + "id": 16196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 736, + "name": "crimson_fungus", + "translation_key": "block.minecraft.crimson_fungus", + "properties": [], + "default_state_id": 16197, + "states": [ + { + "id": 16197, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 737, + "name": "shroomlight", + "translation_key": "block.minecraft.shroomlight", + "properties": [], + "default_state_id": 16198, + "states": [ + { + "id": 16198, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 738, + "name": "weeping_vines", + "translation_key": "block.minecraft.weeping_vines", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "default_state_id": 16199, + "states": [ + { + "id": 16199, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16200, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16201, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16202, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16203, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16204, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16205, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16206, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16207, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16208, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16209, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16210, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16211, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16212, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16213, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16214, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16215, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16216, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16217, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16218, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16219, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16220, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16221, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16222, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16223, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16224, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 739, + "name": "weeping_vines_plant", + "translation_key": "block.minecraft.weeping_vines_plant", + "properties": [], + "default_state_id": 16225, + "states": [ + { + "id": 16225, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 740, + "name": "twisting_vines", + "translation_key": "block.minecraft.twisting_vines", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "default_state_id": 16226, + "states": [ + { + "id": 16226, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16227, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16228, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16229, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16230, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16231, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16232, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16233, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16234, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16235, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16236, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16237, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16238, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16239, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16240, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16241, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16242, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16243, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16244, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16245, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16246, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16247, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16248, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16249, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16250, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16251, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 741, + "name": "twisting_vines_plant", + "translation_key": "block.minecraft.twisting_vines_plant", + "properties": [], + "default_state_id": 16252, + "states": [ + { + "id": 16252, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 742, + "name": "crimson_roots", + "translation_key": "block.minecraft.crimson_roots", + "properties": [], + "default_state_id": 16253, + "states": [ + { + "id": 16253, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 743, + "name": "crimson_planks", + "translation_key": "block.minecraft.crimson_planks", + "properties": [], + "default_state_id": 16254, + "states": [ + { + "id": 16254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 744, + "name": "warped_planks", + "translation_key": "block.minecraft.warped_planks", + "properties": [], + "default_state_id": 16255, + "states": [ + { + "id": 16255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 745, + "name": "crimson_slab", + "translation_key": "block.minecraft.crimson_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16259, + "states": [ + { + "id": 16256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 16257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 16258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 16259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 16260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 746, + "name": "warped_slab", + "translation_key": "block.minecraft.warped_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16265, + "states": [ + { + "id": 16262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 16263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 16264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 16265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 16266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 747, + "name": "crimson_pressure_plate", + "translation_key": "block.minecraft.crimson_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16269, + "states": [ + { + "id": 16268, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16269, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 748, + "name": "warped_pressure_plate", + "translation_key": "block.minecraft.warped_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16271, + "states": [ + { + "id": 16270, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16271, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 749, + "name": "crimson_fence", + "translation_key": "block.minecraft.crimson_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16303, + "states": [ + { + "id": 16272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 16273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 16274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 16275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 16276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 16277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 16278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 16279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 16280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 16281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 16282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 16283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 16284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 16286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 16288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 16289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 16291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 16293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 16294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 16295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 16296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 16297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 16298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 16299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 16300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 16301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 16302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 16303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 750, + "name": "warped_fence", + "translation_key": "block.minecraft.warped_fence", + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16335, + "states": [ + { + "id": 16304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 16305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 16306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74, + 75 + ] + }, + { + "id": 16307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76, + 77 + ] + }, + { + "id": 16308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 16309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 16310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 74 + ] + }, + { + "id": 16311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78, + 77 + ] + }, + { + "id": 16312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 16313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 16314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73, + 75 + ] + }, + { + "id": 16315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79, + 77 + ] + }, + { + "id": 16316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 16318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 80 + ] + }, + { + "id": 16320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 16321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74, + 75 + ] + }, + { + "id": 16323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 16325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 16326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 74 + ] + }, + { + "id": 16327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 78 + ] + }, + { + "id": 16328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 16329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 16330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81, + 75 + ] + }, + { + "id": 16331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 79 + ] + }, + { + "id": 16332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 16333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + }, + { + "id": 16334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 81 + ] + }, + { + "id": 16335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 82 + ] + } + ] + }, + { + "id": 751, + "name": "crimson_trapdoor", + "translation_key": "block.minecraft.crimson_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16351, + "states": [ + { + "id": 16336, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16337, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16338, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16339, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16340, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16341, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16342, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16343, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16344, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16345, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16346, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16347, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16348, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16349, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16350, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16351, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16352, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16353, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16354, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16355, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16356, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16357, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16358, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16359, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16360, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16361, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16362, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16363, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16364, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16365, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16366, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16367, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16368, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16369, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16370, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16371, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16372, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16373, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16374, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16375, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16376, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16377, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16378, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16379, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16380, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16381, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16382, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16383, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16384, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16385, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16386, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16387, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16388, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16389, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16390, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16391, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16392, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16393, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16394, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16395, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16396, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16397, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16398, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16399, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 752, + "name": "warped_trapdoor", + "translation_key": "block.minecraft.warped_trapdoor", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16415, + "states": [ + { + "id": 16400, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16401, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16402, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16403, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16404, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16405, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16406, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16407, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16408, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16409, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16410, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16411, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16412, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16413, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16414, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16415, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16416, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16417, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16418, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16419, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16420, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16421, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16422, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16423, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16424, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16425, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16426, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16427, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16428, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16429, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16430, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16431, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16432, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16433, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16434, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16435, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16436, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16437, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16438, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16439, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16440, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16441, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16442, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16443, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16444, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16445, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16446, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16447, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16448, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16449, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16450, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16451, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16452, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16453, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16454, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16455, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 90 + ] + }, + { + "id": 16456, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16457, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16458, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16459, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16460, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16461, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16462, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + }, + { + "id": 16463, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 91 + ] + } + ] + }, + { + "id": 753, + "name": "crimson_fence_gate", + "translation_key": "block.minecraft.crimson_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16471, + "states": [ + { + "id": 16464, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16465, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16468, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16469, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16472, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16473, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16476, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16477, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16480, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16481, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16484, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16485, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16488, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16489, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16492, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16493, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 754, + "name": "warped_fence_gate", + "translation_key": "block.minecraft.warped_fence_gate", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "values": [ + "true", + "false" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16503, + "states": [ + { + "id": 16496, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16497, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16500, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16501, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16504, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16505, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16508, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16509, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 73 + ] + }, + { + "id": 16512, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16513, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16516, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16517, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16520, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16521, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16524, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16525, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 16526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + }, + { + "id": 16527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 76 + ] + } + ] + }, + { + "id": 755, + "name": "crimson_stairs", + "translation_key": "block.minecraft.crimson_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16539, + "states": [ + { + "id": 16528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 16529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 16530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 16539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 16540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 16549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 16550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 16559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 16560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 16565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 16566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 16569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 16570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 16579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 16580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 16589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 16590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 16599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 16600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 16607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 756, + "name": "warped_stairs", + "translation_key": "block.minecraft.warped_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16619, + "states": [ + { + "id": 16608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 16609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 16610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 16619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 16620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 16629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 16630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 16639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 16640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 16645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 16646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 16649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 16650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 16652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 16654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 16656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 16658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 16659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 16660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 16662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 16664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 16666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 16668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 16669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 16670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 16672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 16674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 16676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 16678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 16679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 16680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 16682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 16684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 16686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 16687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 757, + "name": "crimson_button", + "translation_key": "block.minecraft.crimson_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16697, + "states": [ + { + "id": 16688, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16689, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16690, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16691, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16692, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16693, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16694, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16695, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16696, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16697, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16698, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16699, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16700, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16701, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16702, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16703, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16704, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16705, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16706, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16707, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16708, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16709, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16710, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16711, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 758, + "name": "warped_button", + "translation_key": "block.minecraft.warped_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16721, + "states": [ + { + "id": 16712, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16713, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16714, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16715, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16716, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16717, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16718, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16719, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16720, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16721, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16722, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16723, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16724, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16725, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16726, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16727, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16728, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16729, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16730, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16731, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16732, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16733, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16734, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16735, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 759, + "name": "crimson_door", + "translation_key": "block.minecraft.crimson_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16747, + "states": [ + { + "id": 16736, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16737, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16738, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16739, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16740, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16741, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16742, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16743, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16744, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16745, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16746, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16747, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16748, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16749, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16750, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16751, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16752, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16753, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16754, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16755, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16756, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16757, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16758, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16759, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16760, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16761, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16762, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16763, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16764, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16765, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16766, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16767, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16768, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16769, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16770, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16771, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16772, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16773, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16774, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16775, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16776, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16777, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16778, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16779, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16780, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16781, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16782, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16783, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16784, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16785, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16786, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16787, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16788, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16789, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16790, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16791, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16792, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16793, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16794, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16795, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16796, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16797, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16798, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16799, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 760, + "name": "warped_door", + "translation_key": "block.minecraft.warped_door", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16811, + "states": [ + { + "id": 16800, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16801, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16802, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16803, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16804, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16805, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16806, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16807, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16808, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16809, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16810, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16811, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16812, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16813, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16814, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16815, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16816, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16817, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16818, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16819, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16820, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16821, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16822, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16823, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16824, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16825, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16826, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16827, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16828, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16829, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16830, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16831, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16832, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16833, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16834, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16835, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16836, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16837, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16838, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16839, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16840, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16841, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16842, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16843, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16844, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16845, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16846, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16847, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 16848, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16849, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16850, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16851, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16852, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16853, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16854, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16855, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16856, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16857, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 16858, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16859, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16860, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16861, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 16862, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 16863, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 761, + "name": "crimson_sign", + "translation_key": "block.minecraft.crimson_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16865, + "states": [ + { + "id": 16864, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16865, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16866, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16867, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16868, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16869, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16870, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16871, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16872, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16873, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16874, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16875, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16876, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16877, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16878, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16879, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16880, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16881, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16882, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16883, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16884, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16885, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16886, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16887, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16888, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16889, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16890, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16891, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16892, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16893, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16894, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16895, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 762, + "name": "warped_sign", + "translation_key": "block.minecraft.warped_sign", + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16897, + "states": [ + { + "id": 16896, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16897, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16898, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16899, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16900, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16901, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16902, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16903, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16904, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16905, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16906, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16907, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16908, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16909, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16910, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16911, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16912, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16913, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16914, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16915, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16916, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16917, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16918, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16919, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16920, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16921, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16922, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16923, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16924, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16925, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16926, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16927, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 763, + "name": "crimson_wall_sign", + "translation_key": "block.minecraft.crimson_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16929, + "states": [ + { + "id": 16928, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16929, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16930, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16931, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16932, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16933, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16934, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16935, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 764, + "name": "warped_wall_sign", + "translation_key": "block.minecraft.warped_sign", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 16937, + "states": [ + { + "id": 16936, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16937, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16938, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16939, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16940, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16941, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16942, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 16943, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 765, + "name": "structure_block", + "translation_key": "block.minecraft.structure_block", + "properties": [ + { + "name": "mode", + "values": [ + "save", + "load", + "corner", + "data" + ] + } + ], + "default_state_id": 16945, + "states": [ + { + "id": 16944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 766, + "name": "jigsaw", + "translation_key": "block.minecraft.jigsaw", + "properties": [ + { + "name": "orientation", + "values": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + } + ], + "default_state_id": 16958, + "states": [ + { + "id": 16948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 767, + "name": "composter", + "translation_key": "block.minecraft.composter", + "properties": [ + { + "name": "level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + } + ], + "default_state_id": 16960, + "states": [ + { + "id": 16960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + }, + { + "id": 16968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 68, + 290, + 291, + 292, + 293 + ] + } + ] + }, + { + "id": 768, + "name": "target", + "translation_key": "block.minecraft.target", + "properties": [ + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 16969, + "states": [ + { + "id": 16969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 769, + "name": "bee_nest", + "translation_key": "block.minecraft.bee_nest", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "honey_level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "default_state_id": 16985, + "states": [ + { + "id": 16985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 16999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 770, + "name": "beehive", + "translation_key": "block.minecraft.beehive", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "honey_level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "default_state_id": 17009, + "states": [ + { + "id": 17009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 771, + "name": "honey_block", + "translation_key": "block.minecraft.honey_block", + "properties": [], + "default_state_id": 17033, + "states": [ + { + "id": 17033, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 72 + ] + } + ] + }, + { + "id": 772, + "name": "honeycomb_block", + "translation_key": "block.minecraft.honeycomb_block", + "properties": [], + "default_state_id": 17034, + "states": [ + { + "id": 17034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 773, + "name": "netherite_block", + "translation_key": "block.minecraft.netherite_block", + "properties": [], + "default_state_id": 17035, + "states": [ + { + "id": 17035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 774, + "name": "ancient_debris", + "translation_key": "block.minecraft.ancient_debris", + "properties": [], + "default_state_id": 17036, + "states": [ + { + "id": 17036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 775, + "name": "crying_obsidian", + "translation_key": "block.minecraft.crying_obsidian", + "properties": [], + "default_state_id": 17037, + "states": [ + { + "id": 17037, + "luminance": 10, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 776, + "name": "respawn_anchor", + "translation_key": "block.minecraft.respawn_anchor", + "properties": [ + { + "name": "charges", + "values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + ], + "default_state_id": 17038, + "states": [ + { + "id": 17038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17039, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17040, + "luminance": 7, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17041, + "luminance": 11, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17042, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 777, + "name": "potted_crimson_fungus", + "translation_key": "block.minecraft.potted_crimson_fungus", + "properties": [], + "default_state_id": 17043, + "states": [ + { + "id": 17043, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 778, + "name": "potted_warped_fungus", + "translation_key": "block.minecraft.potted_warped_fungus", + "properties": [], + "default_state_id": 17044, + "states": [ + { + "id": 17044, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 779, + "name": "potted_crimson_roots", + "translation_key": "block.minecraft.potted_crimson_roots", + "properties": [], + "default_state_id": 17045, + "states": [ + { + "id": 17045, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 780, + "name": "potted_warped_roots", + "translation_key": "block.minecraft.potted_warped_roots", + "properties": [], + "default_state_id": 17046, + "states": [ + { + "id": 17046, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 781, + "name": "lodestone", + "translation_key": "block.minecraft.lodestone", + "properties": [], + "default_state_id": 17047, + "states": [ + { + "id": 17047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 782, + "name": "blackstone", + "translation_key": "block.minecraft.blackstone", + "properties": [], + "default_state_id": 17048, + "states": [ + { + "id": 17048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 783, + "name": "blackstone_stairs", + "translation_key": "block.minecraft.blackstone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17060, + "states": [ + { + "id": 17049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 17050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 17051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 17060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 17061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 17070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 17071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 17080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 17081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 17090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 17091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 17100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 17101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 17110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 17111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 17120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 17121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 784, + "name": "blackstone_wall", + "translation_key": "block.minecraft.blackstone_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 17132, + "states": [ + { + "id": 17129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 17130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 17133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17135, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 17136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17138, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 17139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 785, + "name": "blackstone_slab", + "translation_key": "block.minecraft.blackstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17456, + "states": [ + { + "id": 17453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 17454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 17455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 17456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 17457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 786, + "name": "polished_blackstone", + "translation_key": "block.minecraft.polished_blackstone", + "properties": [], + "default_state_id": 17459, + "states": [ + { + "id": 17459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 787, + "name": "polished_blackstone_bricks", + "translation_key": "block.minecraft.polished_blackstone_bricks", + "properties": [], + "default_state_id": 17460, + "states": [ + { + "id": 17460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 788, + "name": "cracked_polished_blackstone_bricks", + "translation_key": "block.minecraft.cracked_polished_blackstone_bricks", + "properties": [], + "default_state_id": 17461, + "states": [ + { + "id": 17461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 789, + "name": "chiseled_polished_blackstone", + "translation_key": "block.minecraft.chiseled_polished_blackstone", + "properties": [], + "default_state_id": 17462, + "states": [ + { + "id": 17462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 790, + "name": "polished_blackstone_brick_slab", + "translation_key": "block.minecraft.polished_blackstone_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17466, + "states": [ + { + "id": 17463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 17464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 17465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 17466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 17467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 791, + "name": "polished_blackstone_brick_stairs", + "translation_key": "block.minecraft.polished_blackstone_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17480, + "states": [ + { + "id": 17469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 17470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 17471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 17480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 17481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 17490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 17491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 17500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 17501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 17510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 17511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 17520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 17521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 17530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 17531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 17540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 17541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 792, + "name": "polished_blackstone_brick_wall", + "translation_key": "block.minecraft.polished_blackstone_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 17552, + "states": [ + { + "id": 17549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 17550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 17553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17555, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 17556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17558, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 17559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 17579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 17585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 17625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 17627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 17631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 17633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 17649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 17657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17696, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17699, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 17769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 17771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 17775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 17793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 17795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 17799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 17801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 17841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 17843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 17847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 17849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 17865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 17867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 17871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 17872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 793, + "name": "gilded_blackstone", + "translation_key": "block.minecraft.gilded_blackstone", + "properties": [], + "default_state_id": 17873, + "states": [ + { + "id": 17873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 794, + "name": "polished_blackstone_stairs", + "translation_key": "block.minecraft.polished_blackstone_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17885, + "states": [ + { + "id": 17874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 17875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 17876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 17885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 17886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 17895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 17896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 17905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 17906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 17915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 17916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 17918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 17920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 17922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 17924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 17925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 17926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 17928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 17930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 17932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 17934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 17935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 17936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 17938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 17940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 17942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 17944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 17945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 17946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 17948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 17950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 17952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 17953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 795, + "name": "polished_blackstone_slab", + "translation_key": "block.minecraft.polished_blackstone_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17957, + "states": [ + { + "id": 17954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 17955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 17956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 17957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 17958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 17959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 796, + "name": "polished_blackstone_pressure_plate", + "translation_key": "block.minecraft.polished_blackstone_pressure_plate", + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17961, + "states": [ + { + "id": 17960, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17961, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 797, + "name": "polished_blackstone_button", + "translation_key": "block.minecraft.polished_blackstone_button", + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 17971, + "states": [ + { + "id": 17962, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17963, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17964, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17965, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17966, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17967, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17968, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17969, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17970, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17971, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17972, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17973, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17974, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17975, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17976, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17977, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17978, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17979, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17980, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17981, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17982, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17983, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17984, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 17985, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 798, + "name": "polished_blackstone_wall", + "translation_key": "block.minecraft.polished_blackstone_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 17989, + "states": [ + { + "id": 17986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 17987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 17990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 17992, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 17993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17995, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 17996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 17998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 17999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 18002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 18005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 18008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 18011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 18014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 18016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 18017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 18020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 18022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 18023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 18026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 18029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 18032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 18059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 18062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 18064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 18065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 18068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 18070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 18086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 18092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 18094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 18095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 18098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 18101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 18104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 18203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 18206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 18208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 18209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 18212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 18230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 18232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 18236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 18238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 18278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 18280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 18284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 18286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 18302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 18304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 18308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 18309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 799, + "name": "chiseled_nether_bricks", + "translation_key": "block.minecraft.chiseled_nether_bricks", + "properties": [], + "default_state_id": 18310, + "states": [ + { + "id": 18310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 800, + "name": "cracked_nether_bricks", + "translation_key": "block.minecraft.cracked_nether_bricks", + "properties": [], + "default_state_id": 18311, + "states": [ + { + "id": 18311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 801, + "name": "quartz_bricks", + "translation_key": "block.minecraft.quartz_bricks", + "properties": [], + "default_state_id": 18312, + "states": [ + { + "id": 18312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 802, + "name": "candle", + "translation_key": "block.minecraft.candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18316, + "states": [ + { + "id": 18313, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18314, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18315, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18316, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18317, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18318, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18319, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18320, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18321, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18322, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18323, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18324, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18325, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18326, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18327, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18328, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 803, + "name": "white_candle", + "translation_key": "block.minecraft.white_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18332, + "states": [ + { + "id": 18329, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18330, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18331, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18332, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18333, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18334, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18335, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18336, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18337, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18338, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18339, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18340, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18341, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18342, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18343, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18344, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 804, + "name": "orange_candle", + "translation_key": "block.minecraft.orange_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18348, + "states": [ + { + "id": 18345, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18346, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18347, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18348, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18349, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18350, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18351, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18352, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18353, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18354, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18355, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18356, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18357, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18358, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18359, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18360, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 805, + "name": "magenta_candle", + "translation_key": "block.minecraft.magenta_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18364, + "states": [ + { + "id": 18361, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18362, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18363, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18364, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18365, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18366, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18367, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18368, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18369, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18370, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18371, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18372, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18373, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18374, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18375, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18376, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 806, + "name": "light_blue_candle", + "translation_key": "block.minecraft.light_blue_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18380, + "states": [ + { + "id": 18377, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18378, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18379, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18380, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18381, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18382, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18383, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18384, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18385, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18386, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18387, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18388, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18389, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18390, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18391, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18392, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 807, + "name": "yellow_candle", + "translation_key": "block.minecraft.yellow_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18396, + "states": [ + { + "id": 18393, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18394, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18395, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18396, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18397, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18398, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18399, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18400, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18401, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18402, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18403, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18404, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18405, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18406, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18407, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18408, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 808, + "name": "lime_candle", + "translation_key": "block.minecraft.lime_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18412, + "states": [ + { + "id": 18409, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18410, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18411, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18412, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18413, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18414, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18415, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18416, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18417, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18418, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18419, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18420, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18421, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18422, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18423, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18424, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 809, + "name": "pink_candle", + "translation_key": "block.minecraft.pink_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18428, + "states": [ + { + "id": 18425, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18426, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18427, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18428, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18429, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18430, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18431, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18432, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18433, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18434, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18435, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18436, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18437, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18438, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18439, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18440, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 810, + "name": "gray_candle", + "translation_key": "block.minecraft.gray_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18444, + "states": [ + { + "id": 18441, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18442, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18443, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18444, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18445, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18446, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18447, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18448, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18449, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18450, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18451, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18452, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18453, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18454, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18455, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18456, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 811, + "name": "light_gray_candle", + "translation_key": "block.minecraft.light_gray_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18460, + "states": [ + { + "id": 18457, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18458, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18459, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18460, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18461, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18462, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18463, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18464, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18465, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18466, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18467, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18468, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18469, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18470, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18471, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18472, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 812, + "name": "cyan_candle", + "translation_key": "block.minecraft.cyan_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18476, + "states": [ + { + "id": 18473, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18474, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18475, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18476, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18477, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18478, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18479, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18480, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18481, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18482, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18483, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18484, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18485, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18486, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18487, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18488, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 813, + "name": "purple_candle", + "translation_key": "block.minecraft.purple_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18492, + "states": [ + { + "id": 18489, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18490, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18491, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18492, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18493, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18494, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18495, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18496, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18497, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18498, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18499, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18500, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18501, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18502, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18503, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18504, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 814, + "name": "blue_candle", + "translation_key": "block.minecraft.blue_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18508, + "states": [ + { + "id": 18505, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18506, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18507, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18508, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18509, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18510, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18511, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18512, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18513, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18514, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18515, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18516, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18517, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18518, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18519, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18520, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 815, + "name": "brown_candle", + "translation_key": "block.minecraft.brown_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18524, + "states": [ + { + "id": 18521, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18522, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18523, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18524, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18525, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18526, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18527, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18528, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18529, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18530, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18531, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18532, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18533, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18534, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18535, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18536, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 816, + "name": "green_candle", + "translation_key": "block.minecraft.green_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18540, + "states": [ + { + "id": 18537, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18538, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18539, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18540, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18541, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18542, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18543, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18544, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18545, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18546, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18547, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18548, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18549, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18550, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18551, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18552, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 817, + "name": "red_candle", + "translation_key": "block.minecraft.red_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18556, + "states": [ + { + "id": 18553, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18554, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18555, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18556, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18557, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18558, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18559, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18560, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18561, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18562, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18563, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18564, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18565, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18566, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18567, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18568, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 818, + "name": "black_candle", + "translation_key": "block.minecraft.black_candle", + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18572, + "states": [ + { + "id": 18569, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18570, + "luminance": 3, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18571, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18572, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 294 + ] + }, + { + "id": 18573, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18574, + "luminance": 6, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18575, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18576, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 295 + ] + }, + { + "id": 18577, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18578, + "luminance": 9, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18579, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18580, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 296 + ] + }, + { + "id": 18581, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18582, + "luminance": 12, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18583, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + }, + { + "id": 18584, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 297 + ] + } + ] + }, + { + "id": 819, + "name": "candle_cake", + "translation_key": "block.minecraft.candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18586, + "states": [ + { + "id": 18585, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 820, + "name": "white_candle_cake", + "translation_key": "block.minecraft.white_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18588, + "states": [ + { + "id": 18587, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 821, + "name": "orange_candle_cake", + "translation_key": "block.minecraft.orange_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18590, + "states": [ + { + "id": 18589, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 822, + "name": "magenta_candle_cake", + "translation_key": "block.minecraft.magenta_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18592, + "states": [ + { + "id": 18591, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 823, + "name": "light_blue_candle_cake", + "translation_key": "block.minecraft.light_blue_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18594, + "states": [ + { + "id": 18593, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 824, + "name": "yellow_candle_cake", + "translation_key": "block.minecraft.yellow_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18596, + "states": [ + { + "id": 18595, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 825, + "name": "lime_candle_cake", + "translation_key": "block.minecraft.lime_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18598, + "states": [ + { + "id": 18597, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 826, + "name": "pink_candle_cake", + "translation_key": "block.minecraft.pink_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18600, + "states": [ + { + "id": 18599, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 827, + "name": "gray_candle_cake", + "translation_key": "block.minecraft.gray_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18602, + "states": [ + { + "id": 18601, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 828, + "name": "light_gray_candle_cake", + "translation_key": "block.minecraft.light_gray_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18604, + "states": [ + { + "id": 18603, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 829, + "name": "cyan_candle_cake", + "translation_key": "block.minecraft.cyan_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18606, + "states": [ + { + "id": 18605, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 830, + "name": "purple_candle_cake", + "translation_key": "block.minecraft.purple_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18608, + "states": [ + { + "id": 18607, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 831, + "name": "blue_candle_cake", + "translation_key": "block.minecraft.blue_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18610, + "states": [ + { + "id": 18609, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 832, + "name": "brown_candle_cake", + "translation_key": "block.minecraft.brown_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18612, + "states": [ + { + "id": 18611, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 833, + "name": "green_candle_cake", + "translation_key": "block.minecraft.green_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18614, + "states": [ + { + "id": 18613, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 834, + "name": "red_candle_cake", + "translation_key": "block.minecraft.red_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18616, + "states": [ + { + "id": 18615, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 835, + "name": "black_candle_cake", + "translation_key": "block.minecraft.black_candle_cake", + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18618, + "states": [ + { + "id": 18617, + "luminance": 3, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + }, + { + "id": 18618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 83, + 298 + ] + } + ] + }, + { + "id": 836, + "name": "amethyst_block", + "translation_key": "block.minecraft.amethyst_block", + "properties": [], + "default_state_id": 18619, + "states": [ + { + "id": 18619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 837, + "name": "budding_amethyst", + "translation_key": "block.minecraft.budding_amethyst", + "properties": [], + "default_state_id": 18620, + "states": [ + { + "id": 18620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 838, + "name": "amethyst_cluster", + "translation_key": "block.minecraft.amethyst_cluster", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18630, + "states": [ + { + "id": 18621, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 299 + ] + }, + { + "id": 18622, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 299 + ] + }, + { + "id": 18623, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 300 + ] + }, + { + "id": 18624, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 300 + ] + }, + { + "id": 18625, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 301 + ] + }, + { + "id": 18626, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 301 + ] + }, + { + "id": 18627, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 302 + ] + }, + { + "id": 18628, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 302 + ] + }, + { + "id": 18629, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 303 + ] + }, + { + "id": 18630, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 303 + ] + }, + { + "id": 18631, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 18632, + "luminance": 5, + "opaque": false, + "collision_shapes": [ + 304 + ] + } + ] + }, + { + "id": 839, + "name": "large_amethyst_bud", + "translation_key": "block.minecraft.large_amethyst_bud", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18642, + "states": [ + { + "id": 18633, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 18634, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 18635, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 18636, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 18637, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 18638, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 18639, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 308 + ] + }, + { + "id": 18640, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 308 + ] + }, + { + "id": 18641, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 309 + ] + }, + { + "id": 18642, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 309 + ] + }, + { + "id": 18643, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 310 + ] + }, + { + "id": 18644, + "luminance": 4, + "opaque": false, + "collision_shapes": [ + 310 + ] + } + ] + }, + { + "id": 840, + "name": "medium_amethyst_bud", + "translation_key": "block.minecraft.medium_amethyst_bud", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18654, + "states": [ + { + "id": 18645, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 311 + ] + }, + { + "id": 18646, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 311 + ] + }, + { + "id": 18647, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 312 + ] + }, + { + "id": 18648, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 312 + ] + }, + { + "id": 18649, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 313 + ] + }, + { + "id": 18650, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 313 + ] + }, + { + "id": 18651, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 314 + ] + }, + { + "id": 18652, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 314 + ] + }, + { + "id": 18653, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 315 + ] + }, + { + "id": 18654, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 315 + ] + }, + { + "id": 18655, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 316 + ] + }, + { + "id": 18656, + "luminance": 2, + "opaque": false, + "collision_shapes": [ + 316 + ] + } + ] + }, + { + "id": 841, + "name": "small_amethyst_bud", + "translation_key": "block.minecraft.small_amethyst_bud", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18666, + "states": [ + { + "id": 18657, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 317 + ] + }, + { + "id": 18658, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 317 + ] + }, + { + "id": 18659, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 318 + ] + }, + { + "id": 18660, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 318 + ] + }, + { + "id": 18661, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 319 + ] + }, + { + "id": 18662, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 319 + ] + }, + { + "id": 18663, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 320 + ] + }, + { + "id": 18664, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 320 + ] + }, + { + "id": 18665, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 321 + ] + }, + { + "id": 18666, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 321 + ] + }, + { + "id": 18667, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 124 + ] + }, + { + "id": 18668, + "luminance": 1, + "opaque": false, + "collision_shapes": [ + 124 + ] + } + ] + }, + { + "id": 842, + "name": "tuff", + "translation_key": "block.minecraft.tuff", + "properties": [], + "default_state_id": 18669, + "states": [ + { + "id": 18669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 843, + "name": "calcite", + "translation_key": "block.minecraft.calcite", + "properties": [], + "default_state_id": 18670, + "states": [ + { + "id": 18670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 844, + "name": "tinted_glass", + "translation_key": "block.minecraft.tinted_glass", + "properties": [], + "default_state_id": 18671, + "states": [ + { + "id": 18671, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 845, + "name": "powder_snow", + "translation_key": "block.minecraft.powder_snow", + "properties": [], + "default_state_id": 18672, + "states": [ + { + "id": 18672, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + } + ] + }, + { + "id": 846, + "name": "sculk_sensor", + "translation_key": "block.minecraft.sculk_sensor", + "properties": [ + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "sculk_sensor_phase", + "values": [ + "inactive", + "active", + "cooldown" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18674, + "states": [ + { + "id": 18673, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18674, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18675, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18676, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18677, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18678, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18679, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18680, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18681, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18682, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18683, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18684, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18685, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18686, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18687, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18688, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18689, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18690, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18691, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18692, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18693, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18694, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18695, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18696, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18697, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18698, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18699, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18700, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18701, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18702, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18703, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18704, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18705, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18706, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18707, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18708, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18709, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18710, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18711, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18712, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18713, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18714, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18715, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18716, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18717, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18718, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18719, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18720, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18721, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18722, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18723, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18724, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18725, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18726, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18727, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18728, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18729, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18730, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18731, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18732, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18733, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18734, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18735, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18736, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18737, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18738, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18739, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18740, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18741, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18742, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18743, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18744, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18745, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18746, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18747, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18748, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18749, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18750, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18751, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18752, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18753, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18754, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18755, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18756, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18757, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18758, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18759, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18760, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18761, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18762, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18763, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18764, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18765, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18766, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18767, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18768, + "luminance": 1, + "opaque": true, + "collision_shapes": [ + 51 + ] + } + ] + }, + { + "id": 847, + "name": "sculk", + "translation_key": "block.minecraft.sculk", + "properties": [], + "default_state_id": 18769, + "states": [ + { + "id": 18769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 848, + "name": "sculk_vein", + "translation_key": "block.minecraft.sculk_vein", + "properties": [ + { + "name": "down", + "values": [ + "true", + "false" + ] + }, + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18897, + "states": [ + { + "id": 18770, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18771, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18772, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18773, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18774, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18775, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18776, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18777, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18778, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18779, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18780, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18781, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18782, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18783, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18784, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18785, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18786, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18787, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18788, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18789, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18790, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18791, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18792, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18793, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18794, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18795, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18796, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18797, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18798, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18799, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18800, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18801, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18802, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18803, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18804, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18805, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18806, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18807, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18808, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18809, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18810, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18811, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18812, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18813, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18814, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18815, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18816, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18817, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18818, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18819, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18820, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18821, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18822, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18823, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18824, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18825, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18826, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18827, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18828, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18829, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18830, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18831, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18832, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18833, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18834, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18835, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18836, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18837, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18838, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18839, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18840, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18841, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18842, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18843, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18844, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18845, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18846, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18847, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18848, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18849, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18850, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18851, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18852, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18853, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18854, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18855, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18856, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18857, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18858, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18859, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18860, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18861, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18862, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18863, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18864, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18865, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18866, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18867, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18868, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18869, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18870, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18871, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18872, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18873, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18874, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18875, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18876, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18877, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18878, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18879, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18880, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18881, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18882, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18883, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18884, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18885, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18886, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18887, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18888, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18889, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18890, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18891, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18892, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18893, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18894, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18895, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18896, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 18897, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 849, + "name": "sculk_catalyst", + "translation_key": "block.minecraft.sculk_catalyst", + "properties": [ + { + "name": "bloom", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18899, + "states": [ + { + "id": 18898, + "luminance": 6, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18899, + "luminance": 6, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 850, + "name": "sculk_shrieker", + "translation_key": "block.minecraft.sculk_shrieker", + "properties": [ + { + "name": "can_summon", + "values": [ + "true", + "false" + ] + }, + { + "name": "shrieking", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18907, + "states": [ + { + "id": 18900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + } + ] + }, + { + "id": 851, + "name": "oxidized_copper", + "translation_key": "block.minecraft.oxidized_copper", + "properties": [], + "default_state_id": 18908, + "states": [ + { + "id": 18908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 852, + "name": "weathered_copper", + "translation_key": "block.minecraft.weathered_copper", + "properties": [], + "default_state_id": 18909, + "states": [ + { + "id": 18909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 853, + "name": "exposed_copper", + "translation_key": "block.minecraft.exposed_copper", + "properties": [], + "default_state_id": 18910, + "states": [ + { + "id": 18910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 854, + "name": "copper_block", + "translation_key": "block.minecraft.copper_block", + "properties": [], + "default_state_id": 18911, + "states": [ + { + "id": 18911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 855, + "name": "copper_ore", + "translation_key": "block.minecraft.copper_ore", + "properties": [], + "default_state_id": 18912, + "states": [ + { + "id": 18912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 856, + "name": "deepslate_copper_ore", + "translation_key": "block.minecraft.deepslate_copper_ore", + "properties": [], + "default_state_id": 18913, + "states": [ + { + "id": 18913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 857, + "name": "oxidized_cut_copper", + "translation_key": "block.minecraft.oxidized_cut_copper", + "properties": [], + "default_state_id": 18914, + "states": [ + { + "id": 18914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 858, + "name": "weathered_cut_copper", + "translation_key": "block.minecraft.weathered_cut_copper", + "properties": [], + "default_state_id": 18915, + "states": [ + { + "id": 18915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 859, + "name": "exposed_cut_copper", + "translation_key": "block.minecraft.exposed_cut_copper", + "properties": [], + "default_state_id": 18916, + "states": [ + { + "id": 18916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 860, + "name": "cut_copper", + "translation_key": "block.minecraft.cut_copper", + "properties": [], + "default_state_id": 18917, + "states": [ + { + "id": 18917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 861, + "name": "oxidized_cut_copper_stairs", + "translation_key": "block.minecraft.oxidized_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18929, + "states": [ + { + "id": 18918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 18919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 18920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 18921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 18922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 18925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 18926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 18929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 18930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 18931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 18932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 18935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 18936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 18939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 18940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 18943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 18944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 18947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 18948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 18949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 18950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 18953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 18954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 18955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 18956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 18957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 18958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 18959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 18960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 18961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 18962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 18963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 18964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 18965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 18966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 18967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 18968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 18969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 18970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 18971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 18972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 18973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 18974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 18975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 18976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 18977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 18978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 18979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 18980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 18989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 18990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 18997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 862, + "name": "weathered_cut_copper_stairs", + "translation_key": "block.minecraft.weathered_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19009, + "states": [ + { + "id": 18998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 18999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 863, + "name": "exposed_cut_copper_stairs", + "translation_key": "block.minecraft.exposed_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19089, + "states": [ + { + "id": 19078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 864, + "name": "cut_copper_stairs", + "translation_key": "block.minecraft.cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19169, + "states": [ + { + "id": 19158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 865, + "name": "oxidized_cut_copper_slab", + "translation_key": "block.minecraft.oxidized_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19241, + "states": [ + { + "id": 19238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 866, + "name": "weathered_cut_copper_slab", + "translation_key": "block.minecraft.weathered_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19247, + "states": [ + { + "id": 19244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 867, + "name": "exposed_cut_copper_slab", + "translation_key": "block.minecraft.exposed_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19253, + "states": [ + { + "id": 19250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 868, + "name": "cut_copper_slab", + "translation_key": "block.minecraft.cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19259, + "states": [ + { + "id": 19256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 869, + "name": "waxed_copper_block", + "translation_key": "block.minecraft.waxed_copper_block", + "properties": [], + "default_state_id": 19262, + "states": [ + { + "id": 19262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 870, + "name": "waxed_weathered_copper", + "translation_key": "block.minecraft.waxed_weathered_copper", + "properties": [], + "default_state_id": 19263, + "states": [ + { + "id": 19263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 871, + "name": "waxed_exposed_copper", + "translation_key": "block.minecraft.waxed_exposed_copper", + "properties": [], + "default_state_id": 19264, + "states": [ + { + "id": 19264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 872, + "name": "waxed_oxidized_copper", + "translation_key": "block.minecraft.waxed_oxidized_copper", + "properties": [], + "default_state_id": 19265, + "states": [ + { + "id": 19265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 873, + "name": "waxed_oxidized_cut_copper", + "translation_key": "block.minecraft.waxed_oxidized_cut_copper", + "properties": [], + "default_state_id": 19266, + "states": [ + { + "id": 19266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 874, + "name": "waxed_weathered_cut_copper", + "translation_key": "block.minecraft.waxed_weathered_cut_copper", + "properties": [], + "default_state_id": 19267, + "states": [ + { + "id": 19267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 875, + "name": "waxed_exposed_cut_copper", + "translation_key": "block.minecraft.waxed_exposed_cut_copper", + "properties": [], + "default_state_id": 19268, + "states": [ + { + "id": 19268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 876, + "name": "waxed_cut_copper", + "translation_key": "block.minecraft.waxed_cut_copper", + "properties": [], + "default_state_id": 19269, + "states": [ + { + "id": 19269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 877, + "name": "waxed_oxidized_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_oxidized_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19281, + "states": [ + { + "id": 19270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 878, + "name": "waxed_weathered_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_weathered_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19361, + "states": [ + { + "id": 19350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 879, + "name": "waxed_exposed_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_exposed_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19441, + "states": [ + { + "id": 19430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 880, + "name": "waxed_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_cut_copper_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19521, + "states": [ + { + "id": 19510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 881, + "name": "waxed_oxidized_cut_copper_slab", + "translation_key": "block.minecraft.waxed_oxidized_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19593, + "states": [ + { + "id": 19590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 882, + "name": "waxed_weathered_cut_copper_slab", + "translation_key": "block.minecraft.waxed_weathered_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19599, + "states": [ + { + "id": 19596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 883, + "name": "waxed_exposed_cut_copper_slab", + "translation_key": "block.minecraft.waxed_exposed_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19605, + "states": [ + { + "id": 19602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 884, + "name": "waxed_cut_copper_slab", + "translation_key": "block.minecraft.waxed_cut_copper_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19611, + "states": [ + { + "id": 19608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 885, + "name": "lightning_rod", + "translation_key": "block.minecraft.lightning_rod", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19633, + "states": [ + { + "id": 19614, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19615, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19616, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19617, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19618, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19619, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19620, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19621, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19622, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19623, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19624, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19625, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 196 + ] + }, + { + "id": 19626, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19627, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19628, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19629, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 197 + ] + }, + { + "id": 19630, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19631, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19632, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19633, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19634, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19635, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19636, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + }, + { + "id": 19637, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32 + ] + } + ] + }, + { + "id": 886, + "name": "pointed_dripstone", + "translation_key": "block.minecraft.pointed_dripstone", + "properties": [ + { + "name": "thickness", + "values": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ] + }, + { + "name": "vertical_direction", + "values": [ + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19643, + "states": [ + { + "id": 19638, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 322 + ] + }, + { + "id": 19639, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 322 + ] + }, + { + "id": 19640, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 322 + ] + }, + { + "id": 19641, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 322 + ] + }, + { + "id": 19642, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 323 + ] + }, + { + "id": 19643, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 323 + ] + }, + { + "id": 19644, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 324 + ] + }, + { + "id": 19645, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 324 + ] + }, + { + "id": 19646, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 325 + ] + }, + { + "id": 19647, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 325 + ] + }, + { + "id": 19648, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 325 + ] + }, + { + "id": 19649, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 325 + ] + }, + { + "id": 19650, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 326 + ] + }, + { + "id": 19651, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 326 + ] + }, + { + "id": 19652, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 326 + ] + }, + { + "id": 19653, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 326 + ] + }, + { + "id": 19654, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 327 + ] + }, + { + "id": 19655, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 327 + ] + }, + { + "id": 19656, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 327 + ] + }, + { + "id": 19657, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 327 + ] + } + ] + }, + { + "id": 887, + "name": "dripstone_block", + "translation_key": "block.minecraft.dripstone_block", + "properties": [], + "default_state_id": 19658, + "states": [ + { + "id": 19658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 888, + "name": "cave_vines", + "translation_key": "block.minecraft.cave_vines", + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + { + "name": "berries", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19660, + "states": [ + { + "id": 19659, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19660, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19661, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19662, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19663, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19664, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19665, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19666, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19667, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19668, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19669, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19670, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19671, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19672, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19673, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19674, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19675, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19676, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19677, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19678, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19679, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19680, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19681, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19682, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19683, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19684, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19685, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19686, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19687, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19688, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19689, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19690, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19691, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19692, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19693, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19694, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19695, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19696, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19697, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19698, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19699, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19700, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19701, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19702, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19703, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19704, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19705, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19706, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19707, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19708, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19709, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19710, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 889, + "name": "cave_vines_plant", + "translation_key": "block.minecraft.cave_vines_plant", + "properties": [ + { + "name": "berries", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19712, + "states": [ + { + "id": 19711, + "luminance": 14, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19712, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 890, + "name": "spore_blossom", + "translation_key": "block.minecraft.spore_blossom", + "properties": [], + "default_state_id": 19713, + "states": [ + { + "id": 19713, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 891, + "name": "azalea", + "translation_key": "block.minecraft.azalea", + "properties": [], + "default_state_id": 19714, + "states": [ + { + "id": 19714, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32, + 328, + 329, + 330, + 331 + ] + } + ] + }, + { + "id": 892, + "name": "flowering_azalea", + "translation_key": "block.minecraft.flowering_azalea", + "properties": [], + "default_state_id": 19715, + "states": [ + { + "id": 19715, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 32, + 328, + 329, + 330, + 331 + ] + } + ] + }, + { + "id": 893, + "name": "moss_carpet", + "translation_key": "block.minecraft.moss_carpet", + "properties": [], + "default_state_id": 19716, + "states": [ + { + "id": 19716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 195 + ] + } + ] + }, + { + "id": 894, + "name": "moss_block", + "translation_key": "block.minecraft.moss_block", + "properties": [], + "default_state_id": 19717, + "states": [ + { + "id": 19717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 895, + "name": "big_dripleaf", + "translation_key": "block.minecraft.big_dripleaf", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "tilt", + "values": [ + "none", + "unstable", + "partial", + "full" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19719, + "states": [ + { + "id": 19718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19724, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19725, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19732, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19733, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19740, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19741, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 332 + ] + }, + { + "id": 19746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 333 + ] + }, + { + "id": 19748, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19749, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + } + ] + }, + { + "id": 896, + "name": "big_dripleaf_stem", + "translation_key": "block.minecraft.big_dripleaf_stem", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19751, + "states": [ + { + "id": 19750, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19751, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19752, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19753, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19754, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19755, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19756, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19757, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 897, + "name": "small_dripleaf", + "translation_key": "block.minecraft.small_dripleaf", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19761, + "states": [ + { + "id": 19758, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19759, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19760, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19761, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19762, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19763, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19764, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19765, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19766, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19767, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19768, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19769, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19770, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19771, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19772, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19773, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 898, + "name": "hanging_roots", + "translation_key": "block.minecraft.hanging_roots", + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19775, + "states": [ + { + "id": 19774, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + }, + { + "id": 19775, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 899, + "name": "rooted_dirt", + "translation_key": "block.minecraft.rooted_dirt", + "properties": [], + "default_state_id": 19776, + "states": [ + { + "id": 19776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 900, + "name": "mud", + "translation_key": "block.minecraft.mud", + "properties": [], + "default_state_id": 19777, + "states": [ + { + "id": 19777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 71 + ] + } + ] + }, + { + "id": 901, + "name": "deepslate", + "translation_key": "block.minecraft.deepslate", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 19779, + "states": [ + { + "id": 19778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 902, + "name": "cobbled_deepslate", + "translation_key": "block.minecraft.cobbled_deepslate", + "properties": [], + "default_state_id": 19781, + "states": [ + { + "id": 19781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 903, + "name": "cobbled_deepslate_stairs", + "translation_key": "block.minecraft.cobbled_deepslate_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19793, + "states": [ + { + "id": 19782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 19784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 19794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 19804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 19814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 19824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 19826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 19828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 19830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 19832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 19834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 19836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 19838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 19840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 19842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 19844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 19846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 19848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 19850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 19852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 19854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 19856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 19858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 19860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 19861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 904, + "name": "cobbled_deepslate_slab", + "translation_key": "block.minecraft.cobbled_deepslate_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19865, + "states": [ + { + "id": 19862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 19864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 905, + "name": "cobbled_deepslate_wall", + "translation_key": "block.minecraft.cobbled_deepslate_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 19871, + "states": [ + { + "id": 19868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 19869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 19870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 19871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 19872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 19873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 19874, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 19876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 19877, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 19878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 19879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 19880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 19881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 19884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 19887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 19890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 19893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 19896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 19898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 19899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 19902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 19904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 19905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 19908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 19911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 19914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 19941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 19944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 19946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 19947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 19950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 19952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 19968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 19970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 19974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 19976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 19977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 19978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 19979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 19980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 19981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 19982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 19983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 19984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 19985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 19986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 19987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 19988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 19989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 19990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 19991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 19992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 19993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 19994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 19995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 19996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 19997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 19998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 19999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20107, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20110, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 906, + "name": "polished_deepslate", + "translation_key": "block.minecraft.polished_deepslate", + "properties": [], + "default_state_id": 20192, + "states": [ + { + "id": 20192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 907, + "name": "polished_deepslate_stairs", + "translation_key": "block.minecraft.polished_deepslate_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20204, + "states": [ + { + "id": 20193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 20194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 20195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 20204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 20205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 20214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 20215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 20224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 20225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 20234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 20235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 20244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 20245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 20254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 20255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 20264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 20265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 908, + "name": "polished_deepslate_slab", + "translation_key": "block.minecraft.polished_deepslate_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20276, + "states": [ + { + "id": 20273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 20274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 20275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 20276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 20277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 20278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 909, + "name": "polished_deepslate_wall", + "translation_key": "block.minecraft.polished_deepslate_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 20282, + "states": [ + { + "id": 20279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 20280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 20283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20285, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 20286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20288, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 20289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20435, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20436, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20437, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20438, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20439, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20440, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20441, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20442, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20443, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20444, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20445, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20446, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20448, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20449, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20450, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20451, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20452, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20453, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20454, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20455, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20456, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20457, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20458, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20459, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20460, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20461, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20462, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20463, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20464, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20465, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20466, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20467, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20468, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20469, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20470, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20471, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20472, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20473, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20474, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20475, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20476, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20477, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20478, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20479, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20480, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20481, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20482, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20483, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20484, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20485, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20486, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20487, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20488, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20489, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20490, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20491, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20492, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20493, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20494, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20495, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20496, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20497, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20498, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20499, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20500, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20501, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20502, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20503, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20504, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20505, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20506, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20507, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20508, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20509, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20510, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20511, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20512, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20513, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20514, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20515, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20516, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20517, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20518, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20519, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20520, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20521, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20522, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20523, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20524, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20525, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20526, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20527, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20528, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20529, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20530, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20531, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20532, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20533, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20534, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20535, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20536, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20537, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20538, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20539, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20540, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20541, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20542, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20543, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20544, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20545, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20546, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20547, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20548, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20549, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20550, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20551, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20552, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20553, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20554, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20555, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20556, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20557, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20558, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20559, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20560, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20561, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20562, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20563, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20564, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20565, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20566, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20567, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20568, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20569, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20570, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20571, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20572, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20573, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20574, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20575, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20576, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20577, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20578, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20579, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20580, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20581, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20582, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20583, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20584, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20585, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20586, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20587, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20588, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20589, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20590, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20591, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20592, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20593, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20594, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20595, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20596, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20597, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20598, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20599, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20600, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20601, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20602, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 910, + "name": "deepslate_tiles", + "translation_key": "block.minecraft.deepslate_tiles", + "properties": [], + "default_state_id": 20603, + "states": [ + { + "id": 20603, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 911, + "name": "deepslate_tile_stairs", + "translation_key": "block.minecraft.deepslate_tile_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20615, + "states": [ + { + "id": 20604, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 20605, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 20606, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20607, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20608, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20609, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20610, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20611, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20612, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20613, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20614, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 20615, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 20616, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20617, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20618, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20619, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20620, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20621, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20622, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20623, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20624, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 20625, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 20626, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20627, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20628, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20629, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20630, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20631, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20632, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20633, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20634, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 20635, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 20636, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20637, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20638, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20639, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20640, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20641, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20642, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20643, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20644, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 20645, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 20646, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20647, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20648, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20649, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20650, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20651, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20652, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20653, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20654, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 20655, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 20656, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20657, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20658, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20659, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20660, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20661, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20662, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20663, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20664, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 20665, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 20666, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20667, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20668, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20669, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20670, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20671, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20672, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20673, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20674, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 20675, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 20676, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20677, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20678, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20679, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20680, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20681, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20682, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20683, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 912, + "name": "deepslate_tile_slab", + "translation_key": "block.minecraft.deepslate_tile_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20687, + "states": [ + { + "id": 20684, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 20685, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 20686, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 20687, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 20688, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 20689, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 913, + "name": "deepslate_tile_wall", + "translation_key": "block.minecraft.deepslate_tile_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 20693, + "states": [ + { + "id": 20690, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 20691, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20692, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20693, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 20694, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20695, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 20696, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 20697, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20698, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20699, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 20700, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20701, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 20702, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20703, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20704, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20705, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20706, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20707, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20708, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20709, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20710, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20711, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20712, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20713, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20714, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20715, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20716, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20717, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 20718, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20719, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 20720, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20721, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20722, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20723, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20724, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20725, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 20726, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20727, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20728, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20729, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20730, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20731, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20732, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20733, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20734, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20735, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20736, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20737, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20738, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20739, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20740, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20741, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20742, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20743, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20744, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20745, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20746, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20747, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20748, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20749, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20750, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20751, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20752, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20753, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20754, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20755, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20756, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20757, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20758, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20759, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20760, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20761, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20762, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20763, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20764, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20765, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 20766, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20767, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 20768, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20769, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20770, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20771, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 20772, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20773, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 20774, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20775, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20776, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20777, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20778, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20779, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20780, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20781, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20782, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20783, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20784, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20785, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20786, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20787, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20788, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20789, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 20790, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20791, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20792, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20793, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20794, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20795, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20796, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20797, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 20798, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20799, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20800, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20801, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20802, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20803, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20804, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20805, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20806, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20807, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20808, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20809, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20810, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20811, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20812, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20813, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20814, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20815, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20816, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20817, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20818, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20819, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20820, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20821, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20822, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20823, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20824, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20825, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20826, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20827, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20828, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20829, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20830, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20831, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20832, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20833, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20834, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20835, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20836, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20837, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20838, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20839, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20840, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20841, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20842, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20843, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20844, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20845, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20846, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20847, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20848, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20849, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20850, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20851, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20852, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20853, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20854, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20855, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20856, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20857, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20858, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20859, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20860, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20861, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20862, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20863, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20864, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20865, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20866, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20867, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20868, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20869, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20870, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20871, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20872, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20873, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20874, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20875, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20876, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20877, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20878, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20879, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20880, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20881, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20882, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20883, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20884, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20885, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20886, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20887, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20888, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20889, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20890, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20891, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20892, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20893, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20894, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20895, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20896, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20897, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20898, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20899, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20900, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20901, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20902, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20903, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20904, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20905, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20906, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20907, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20908, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20909, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 20910, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20911, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 20912, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20913, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20914, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20915, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 20916, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20917, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20918, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20919, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20920, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20921, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20922, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20923, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20924, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20925, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20926, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20927, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20928, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20929, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20930, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20931, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20932, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20933, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 20934, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20935, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 20936, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20937, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20938, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20939, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 20940, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20941, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 20942, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20943, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20944, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20945, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20946, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20947, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20948, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20949, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20950, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20951, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20952, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20953, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20954, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20955, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20956, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20957, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20958, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20959, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20960, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20961, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20962, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20963, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20964, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20965, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20966, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20967, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20968, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20969, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20970, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20971, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20972, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20973, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20974, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20975, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20976, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20977, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20978, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20979, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20980, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20981, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 20982, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20983, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 20984, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20985, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20986, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20987, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 20988, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20989, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 20990, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20991, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20992, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20993, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 20994, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20995, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 20996, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 20997, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20998, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 20999, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21000, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21001, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21002, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21003, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21004, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21005, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21006, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21007, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21008, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21009, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21010, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21011, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21012, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21013, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 914, + "name": "deepslate_bricks", + "translation_key": "block.minecraft.deepslate_bricks", + "properties": [], + "default_state_id": 21014, + "states": [ + { + "id": 21014, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 915, + "name": "deepslate_brick_stairs", + "translation_key": "block.minecraft.deepslate_brick_stairs", + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21026, + "states": [ + { + "id": 21015, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 21016, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 21017, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21018, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21019, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21020, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21021, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21022, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21023, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21024, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21025, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 21026, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 21027, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21028, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21029, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21030, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21031, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21032, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21033, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21034, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21035, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 21036, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 21037, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21038, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21039, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21040, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21041, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21042, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21043, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21044, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21045, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 21046, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 21047, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21048, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21049, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21050, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21051, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 21052, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 21053, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21054, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21055, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 21056, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 21057, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21058, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21059, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21060, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21061, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21062, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21063, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21064, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21065, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 21066, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 21067, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21068, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21069, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21070, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21071, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21072, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21073, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21074, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21075, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 21076, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 21077, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21078, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21079, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21080, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21081, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21082, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21083, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21084, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21085, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 21086, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 21087, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21088, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21089, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21090, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21091, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21092, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21093, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 21094, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 916, + "name": "deepslate_brick_slab", + "translation_key": "block.minecraft.deepslate_brick_slab", + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21098, + "states": [ + { + "id": 21095, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 21096, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 194 + ] + }, + { + "id": 21097, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21098, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21099, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21100, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 917, + "name": "deepslate_brick_wall", + "translation_key": "block.minecraft.deepslate_brick_wall", + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 21104, + "states": [ + { + "id": 21101, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 21102, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 21103, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 21104, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138 + ] + }, + { + "id": 21105, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 21106, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141 + ] + }, + { + "id": 21107, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 21108, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 21109, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 21110, + "luminance": 0, + "opaque": true, + "collision_shapes": [] + }, + { + "id": 21111, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 21112, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142 + ] + }, + { + "id": 21113, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 21114, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21115, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21116, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 21117, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21118, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21119, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 21120, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21121, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21122, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 21123, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21124, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21125, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 21126, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21127, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21128, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143 + ] + }, + { + "id": 21129, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21130, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 143 + ] + }, + { + "id": 21131, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 21132, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21133, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21134, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144 + ] + }, + { + "id": 21135, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21136, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 145 + ] + }, + { + "id": 21137, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 21138, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21139, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21140, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 21141, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21142, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21143, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 21144, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21145, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21146, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 21147, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21148, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21149, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21150, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21151, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21152, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21153, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21154, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21155, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21156, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21157, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21158, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21159, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21160, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21161, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21162, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21163, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21164, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21165, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21166, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21167, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21168, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21169, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21170, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21171, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21172, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21173, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 21174, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21175, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21176, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146 + ] + }, + { + "id": 21177, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21178, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146 + ] + }, + { + "id": 21179, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 21180, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21181, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21182, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147 + ] + }, + { + "id": 21183, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21184, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148 + ] + }, + { + "id": 21185, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21186, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21187, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21188, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21189, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21190, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21191, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21192, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21193, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21194, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21195, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21196, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21197, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21198, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21199, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21200, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143 + ] + }, + { + "id": 21201, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21202, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 139, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21203, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21204, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21205, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21206, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149 + ] + }, + { + "id": 21207, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21208, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 142, + 148, + 145 + ] + }, + { + "id": 21209, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 21210, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21211, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21212, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 21213, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21214, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21215, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 21216, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21217, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21218, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 21219, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21220, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21221, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21222, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21223, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21224, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21225, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21226, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21227, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21228, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21229, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21230, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21231, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21232, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21233, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21234, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21235, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21236, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21237, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21238, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21239, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21240, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21241, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21242, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21243, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21244, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21245, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21246, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21247, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21248, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21249, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21250, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21251, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21252, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21253, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21254, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21255, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21256, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21257, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21258, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21259, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21260, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21261, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21262, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21263, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21264, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21265, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21266, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21267, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21268, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21269, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21270, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21271, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21272, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21273, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21274, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21275, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21276, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21277, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21278, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21279, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21280, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21281, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21282, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21283, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21284, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21285, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21286, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21287, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21288, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21289, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21290, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21291, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21292, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21293, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21294, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21295, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21296, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21297, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21298, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21299, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21300, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21301, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21302, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21303, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21304, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21305, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21306, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21307, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21308, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21309, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21310, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21311, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21312, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21313, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21314, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21315, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21316, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21317, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 21318, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21319, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21320, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 150 + ] + }, + { + "id": 21321, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21322, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141 + ] + }, + { + "id": 21323, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 21324, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21325, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21326, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 152 + ] + }, + { + "id": 21327, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21328, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151 + ] + }, + { + "id": 21329, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21330, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21331, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21332, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21333, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21334, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21335, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21336, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21337, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21338, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21339, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21340, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21341, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21342, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21343, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21344, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 143, + 150 + ] + }, + { + "id": 21345, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21346, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 143 + ] + }, + { + "id": 21347, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21348, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21349, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21350, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 144, + 153 + ] + }, + { + "id": 21351, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21352, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 145 + ] + }, + { + "id": 21353, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21354, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21355, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21356, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21357, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21358, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21359, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21360, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21361, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21362, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21363, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21364, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21365, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21366, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21367, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21368, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21369, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21370, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21371, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21372, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21373, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21374, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21375, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21376, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21377, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21378, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21379, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21380, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21381, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21382, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21383, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21384, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21385, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21386, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21387, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21388, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21389, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21390, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21391, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21392, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 150 + ] + }, + { + "id": 21393, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21394, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146 + ] + }, + { + "id": 21395, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21396, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21397, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21398, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 147, + 153 + ] + }, + { + "id": 21399, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21400, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148 + ] + }, + { + "id": 21401, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21402, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21403, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21404, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21405, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21406, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21407, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21408, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21409, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21410, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21411, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21412, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21413, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21414, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21415, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21416, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 138, + 146, + 143, + 150 + ] + }, + { + "id": 21417, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21418, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 140, + 141, + 146, + 143 + ] + }, + { + "id": 21419, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21420, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21421, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21422, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 149, + 153 + ] + }, + { + "id": 21423, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + }, + { + "id": 21424, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 151, + 148, + 145 + ] + } + ] + }, + { + "id": 918, + "name": "chiseled_deepslate", + "translation_key": "block.minecraft.chiseled_deepslate", + "properties": [], + "default_state_id": 21425, + "states": [ + { + "id": 21425, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 919, + "name": "cracked_deepslate_bricks", + "translation_key": "block.minecraft.cracked_deepslate_bricks", + "properties": [], + "default_state_id": 21426, + "states": [ + { + "id": 21426, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 920, + "name": "cracked_deepslate_tiles", + "translation_key": "block.minecraft.cracked_deepslate_tiles", + "properties": [], + "default_state_id": 21427, + "states": [ + { + "id": 21427, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 921, + "name": "infested_deepslate", + "translation_key": "block.minecraft.infested_deepslate", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 21429, + "states": [ + { + "id": 21428, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21429, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21430, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 922, + "name": "smooth_basalt", + "translation_key": "block.minecraft.smooth_basalt", + "properties": [], + "default_state_id": 21431, + "states": [ + { + "id": 21431, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 923, + "name": "raw_iron_block", + "translation_key": "block.minecraft.raw_iron_block", + "properties": [], + "default_state_id": 21432, + "states": [ + { + "id": 21432, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 924, + "name": "raw_copper_block", + "translation_key": "block.minecraft.raw_copper_block", + "properties": [], + "default_state_id": 21433, + "states": [ + { + "id": 21433, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 925, + "name": "raw_gold_block", + "translation_key": "block.minecraft.raw_gold_block", + "properties": [], + "default_state_id": 21434, + "states": [ + { + "id": 21434, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 926, + "name": "potted_azalea_bush", + "translation_key": "block.minecraft.potted_azalea_bush", + "properties": [], + "default_state_id": 21435, + "states": [ + { + "id": 21435, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 927, + "name": "potted_flowering_azalea_bush", + "translation_key": "block.minecraft.potted_flowering_azalea_bush", + "properties": [], + "default_state_id": 21436, + "states": [ + { + "id": 21436, + "luminance": 0, + "opaque": false, + "collision_shapes": [ + 154 + ] + } + ] + }, + { + "id": 928, + "name": "ochre_froglight", + "translation_key": "block.minecraft.ochre_froglight", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 21438, + "states": [ + { + "id": 21437, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21438, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21439, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 929, + "name": "verdant_froglight", + "translation_key": "block.minecraft.verdant_froglight", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 21441, + "states": [ + { + "id": 21440, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21441, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21442, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 930, + "name": "pearlescent_froglight", + "translation_key": "block.minecraft.pearlescent_froglight", + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 21444, + "states": [ + { + "id": 21443, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21444, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21445, + "luminance": 15, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 931, + "name": "frogspawn", + "translation_key": "block.minecraft.frogspawn", + "properties": [], + "default_state_id": 21446, + "states": [ + { + "id": 21446, + "luminance": 0, + "opaque": false, + "collision_shapes": [] + } + ] + }, + { + "id": 932, + "name": "reinforced_deepslate", + "translation_key": "block.minecraft.reinforced_deepslate", + "properties": [], + "default_state_id": 21447, + "states": [ + { + "id": 21447, + "luminance": 0, + "opaque": true, + "collision_shapes": [ + 0 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/extracted/entities.json b/extracted/entities.json index f1dba60..2fd66e6 100644 --- a/extracted/entities.json +++ b/extracted/entities.json @@ -2426,7 +2426,7 @@ "type": "villager_data", "default_value": { "type": "plains", - "profession": "mason", + "profession": "none", "level": 1 }, "bits": [] diff --git a/extractor/src/main/java/dev/_00a/valence_extractor/extractors/Blocks.java b/extractor/src/main/java/dev/_00a/valence_extractor/extractors/Blocks.java index 4571f95..7f504ab 100644 --- a/extractor/src/main/java/dev/_00a/valence_extractor/extractors/Blocks.java +++ b/extractor/src/main/java/dev/_00a/valence_extractor/extractors/Blocks.java @@ -9,6 +9,7 @@ import net.minecraft.util.registry.Registry; import net.minecraft.world.EmptyBlockView; import java.util.LinkedHashMap; +import java.util.Locale; import java.util.Objects; public class Blocks implements Main.Extractor { @@ -45,7 +46,7 @@ public class Blocks implements Main.Extractor { var valuesJson = new JsonArray(); for (var value : prop.getValues()) { - valuesJson.add(value.toString()); + valuesJson.add(value.toString().toLowerCase(Locale.ROOT)); } propJson.add("values", valuesJson);