From a997820b7a169d3200238004545d9902c061892a Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 17 Apr 2022 17:04:39 -0700 Subject: [PATCH] Add block state generator --- Cargo.toml | 14 +- build/block.rs | 584 + build/main.rs | 32 + data/blocks.json | 32733 ++++++++++++++++++++++++++++++++++++++ src/block.rs | 20 + src/lib.rs | 1 + valence-data/Cargo.toml | 9 - valence-data/src/lib.rs | 8 - 8 files changed, 33380 insertions(+), 21 deletions(-) create mode 100644 build/block.rs create mode 100644 build/main.rs create mode 100644 data/blocks.json create mode 100644 src/block.rs delete mode 100644 valence-data/Cargo.toml delete mode 100644 valence-data/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index c19b272..4aedfbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,9 +5,7 @@ edition = "2021" description = "A framework for building Minecraft servers in Rust." repository = "https://github.com/rj00a/valence" license = "MIT" - -[workspace] -members = ["valence-data"] +build = "build/main.rs" [dependencies] aes = "0.7" @@ -47,4 +45,12 @@ default-features = false features = ["rustls-tls", "json"] [dev-dependencies] -env_logger = "0.9" \ No newline at end of file +env_logger = "0.9" + +[build-dependencies] +anyhow = "1" +heck = "0.4" +proc-macro2 = "1" +quote = "1" +serde = {version = "1", features = ["derive"]} +serde_json = "1" diff --git a/build/block.rs b/build/block.rs new file mode 100644 index 0000000..b7c8720 --- /dev/null +++ b/build/block.rs @@ -0,0 +1,584 @@ +// TODO: can't match on str in const fn. + +use std::collections::BTreeSet; +use std::path::Path; +use std::process::Command; +use std::{env, fs}; + +use anyhow::Context; +use heck::{ToPascalCase, ToShoutySnakeCase}; +use proc_macro2::TokenStream; +use quote::quote; +use serde::Deserialize; + +use crate::ident; + +pub fn build() -> anyhow::Result<()> { + let blocks = parse_blocks_json()?; + + let max_block_state = blocks.iter().map(|b| b.max_state_id).max().unwrap(); + + let state_to_type = blocks + .iter() + .map(|b| { + let min = b.min_state_id; + let max = b.max_state_id; + let name = ident(b.name.to_pascal_case()); + quote! { + #min..=#max => BlockType::#name, + } + }) + .collect::(); + + let get_arms = blocks + .iter() + .filter(|&b| !b.props.is_empty()) + .map(|b| { + let block_type_name = ident(b.name.to_pascal_case()); + + let arms = b + .props + .iter() + .map(|p| { + let prop_name = ident(p.name.to_pascal_case()); + let min_state_id = b.min_state_id; + let product: u16 = b + .props + .iter() + .take_while(|&other| p.name != other.name) + .map(|p| p.vals.len() as u16) + .product(); + + let num_values = p.vals.len() as u16; + + let arms = p.vals.iter().enumerate().map(|(i, v)| { + let value_idx = i as u16; + let value_name = ident(v.to_pascal_case()); + quote! { + #value_idx => Some(PropValue::#value_name), + } + }).collect::(); + + quote! { + PropName::#prop_name => match (self.0 - #min_state_id) / #product % #num_values { + #arms + _ => unreachable!(), + }, + } + }) + .collect::(); + + quote! { + BlockType::#block_type_name => match name { + #arms + _ => None, + }, + } + }) + .collect::(); + + let set_arms = blocks + .iter() + .filter(|&b| !b.props.is_empty()) + .map(|b| { + let block_type_name = ident(b.name.to_pascal_case()); + + let arms = b + .props + .iter() + .map(|p| { + let prop_name = ident(p.name.to_pascal_case()); + let min_state_id = b.min_state_id; + let product: u16 = b + .props + .iter() + .take_while(|&other| p.name != other.name) + .map(|p| p.vals.len() as u16) + .product(); + + let num_values = p.vals.len() as u16; + + let arms = p + .vals + .iter() + .enumerate() + .map(|(i, v)| { + let val_idx = i as u16; + let val_name = ident(v.to_pascal_case()); + quote! { + PropValue::#val_name => + Self(self.0 - (self.0 - #min_state_id) / #product % #num_values * #product + + #val_idx * #product), + } + }) + .collect::(); + + quote! { + PropName::#prop_name => match val { + #arms + _ => self, + }, + } + }) + .collect::(); + + quote! { + BlockType::#block_type_name => match name { + #arms + _ => self, + }, + } + }) + .collect::(); + + let default_block_states = blocks + .iter() + .map(|b| { + let name = ident(b.name.to_shouty_snake_case()); + let state = b.default_state; + let doc = format!("The default block state for `{}`.", b.name); + quote! { + #[doc = #doc] + pub const #name: BlockState = BlockState(#state); + } + }) + .collect::(); + + let type_to_state = blocks + .iter() + .map(|b| { + let typ = ident(b.name.to_pascal_case()); + let state = ident(b.name.to_shouty_snake_case()); + quote! { + BlockType::#typ => BlockState::#state, + } + }) + .collect::(); + + let block_type_variants = blocks + .iter() + .map(|b| ident(b.name.to_pascal_case())) + .collect::>(); + + let block_type_from_str_arms = blocks + .iter() + .map(|b| { + let name = &b.name; + let name_ident = ident(name.to_pascal_case()); + quote! { + #name => Some(BlockType::#name_ident), + } + }) + .collect::(); + + let block_type_to_str_arms = blocks + .iter() + .map(|b| { + let name = &b.name; + let name_ident = ident(name.to_pascal_case()); + quote! { + BlockType::#name_ident => #name, + } + }) + .collect::(); + + let block_type_props_arms = blocks + .iter() + .filter(|&b| !b.props.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())); + + quote! { + Self::#name => &[#(PropName::#prop_names,)*], + } + }) + .collect::(); + + let num_block_types = blocks.len(); + + let prop_names = blocks + .iter() + .flat_map(|b| b.props.iter().map(|p| &p.name)) + .collect::>(); + + let prop_name_variants = prop_names + .iter() + .map(|&name| ident(name.to_pascal_case())) + .collect::>(); + + let prop_name_from_str_arms = prop_names + .iter() + .map(|&name| { + let ident = ident(name.to_pascal_case()); + quote! { + #name => Some(PropName::#ident), + } + }) + .collect::(); + + let prop_name_to_str_arms = prop_names + .iter() + .map(|&name| { + let ident = ident(name.to_pascal_case()); + quote! { + PropName::#ident => #name, + } + }) + .collect::(); + + let num_prop_names = prop_names.len(); + + let prop_values = blocks + .iter() + .flat_map(|b| b.props.iter().flat_map(|p| &p.vals)) + .collect::>(); + + let prop_value_variants = prop_values + .iter() + .map(|val| ident(val.to_pascal_case())) + .collect::>(); + + let prop_value_from_str_arms = prop_values + .iter() + .map(|val| { + let ident = ident(val.to_pascal_case()); + quote! { + #val => Some(PropValue::#ident), + } + }) + .collect::(); + + let prop_value_to_str_arms = prop_values + .iter() + .map(|val| { + let ident = ident(val.to_pascal_case()); + quote! { + PropValue::#ident => #val, + } + }) + .collect::(); + + let prop_value_from_u16_arms = prop_values + .iter() + .filter_map(|v| v.parse::().ok()) + .map(|n| { + let ident = ident(n.to_string()); + quote! { + #n => Some(PropValue::#ident), + } + }) + .collect::(); + + let prop_value_to_u16_arms = prop_values + .iter() + .filter_map(|v| v.parse::().ok()) + .map(|n| { + let ident = ident(n.to_string()); + quote! { + PropValue::#ident => Some(#n), + } + }) + .collect::(); + + let num_property_names = prop_values.len(); + + let finshed = quote! { + /// Represents the state of a block, not including 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, Debug)] + pub struct BlockState(u16); + + impl BlockState { + /// Returns the default block state for a given block type. + pub const fn from_type(typ: BlockType) -> Self { + match typ { + #type_to_state + } + } + + /// Returns the [`BlockType`] of this block state. + pub const fn to_type(self) -> BlockType { + match self.0 { + #state_to_type + _ => unreachable!(), + } + } + + /// Constructs a block state from a raw block state ID. + /// + /// If the given ID is invalid, `None` is returned. + pub const fn from_raw(id: u16) -> Option { + if id <= #max_block_state { + Some(Self(id)) + } else { + None + } + } + + /// Converts this block state to its underlying raw block state ID. + /// + /// The original block state can be recovered with [`BlockState::from_raw`]. + pub const fn to_raw(self) -> u16 { + self.0 + } + + /// Gets the value of the property with the given name from this block. + /// + /// If this block does not have the property, then `None` is returned. + pub const fn get(self, name: PropName) -> Option { + match self.to_type() { + #get_arms + _ => None + } + } + + /// Sets the value of a propery 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. + #[must_use] + pub const fn set(self, name: PropName, val: PropValue) -> Self { + match self.to_type() { + #set_arms + _ => self, + } + } + + #default_block_states + } + + /// An enumeration of all block types. + #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] + pub enum BlockType { + #(#block_type_variants,)* + } + + impl BlockType { + /// Construct a block type from its snake_case name. + /// + /// Returns `None` if the given name is not valid. + pub fn from_str(name: &str) -> Option { + match name { + #block_type_from_str_arms + _ => None + } + } + + /// Get the snake_case name of this block type. + pub const fn to_str(self) -> &'static str { + match self { + #block_type_to_str_arms + } + } + + /// Returns the default block state for a given block type. + pub const fn to_state(self) -> BlockState { + BlockState::from_type(self) + } + + /// Returns a slice of all properties this block type has. + pub const fn props(self) -> &'static [PropName] { + match self { + #block_type_props_arms + _ => &[], + } + } + + /// An array of all block types. + pub const ALL: [Self; #num_block_types] = [#(Self::#block_type_variants,)*]; + } + + /// The default block type is `air`. + impl Default for BlockType { + fn default() -> Self { + Self::Air + } + } + + /// Contains all possible block state property names. + /// + /// For example, `waterlogged`, `facing`, and `half` are all property names. + #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] + pub enum PropName { + #(#prop_name_variants,)* + } + + impl PropName { + /// Construct a property name from its snake_case name. + /// + /// Returns `None` if the given name is not valid. + pub fn from_str(name: &str) -> Option { + match name { + #prop_name_from_str_arms + _ => None, + } + } + + /// Get the snake_case name of this property name. + pub const fn to_str(self) -> &'static str { + match self { + #prop_name_to_str_arms + } + } + + /// An array of all property names. + pub const ALL: [Self; #num_prop_names] = [#(Self::#prop_name_variants,)*]; + } + + /// Contains all possible values that a block property might have. + /// + /// For example, `upper`, `true`, and `2` are all property values. + #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] + pub enum PropValue { + #(#prop_value_variants,)* + } + + impl PropValue { + /// Construct a property value from its snake_case name. + /// + /// Returns `None` if the given name is not valid. + pub fn from_str(name: &str) -> Option { + match name { + #prop_value_from_str_arms + _ => None, + } + } + + /// Get the snake_case name of this property value. + pub const fn to_str(self) -> &'static str { + match self { + #prop_value_to_str_arms + } + } + + /// Converts a `u16` into a numeric property value. + /// Returns `None` if the given number does not have a + /// corresponding property value. + pub const fn from_u16(n: u16) -> Option { + match n { + #prop_value_from_u16_arms + _ => None, + } + } + + /// Converts this property value into a `u16` if it is numeric. + /// Returns `None` otherwise. + pub const fn to_u16(self) -> Option { + match self { + #prop_value_to_u16_arms + _ => None, + } + } + + pub const fn from_bool(b: bool) -> Self { + if b { + Self::True + } else { + Self::False + } + } + + pub const fn to_bool(self) -> Option { + match self { + Self::True => Some(true), + Self::False => Some(false), + _ => None, + } + } + + /// An array of all property values. + pub const ALL: [Self; #num_property_names] = [#(Self::#prop_value_variants,)*]; + } + + impl From for PropValue { + fn from(b: bool) -> Self { + Self::from_bool(b) + } + } + }; + + let out_path = + Path::new(&env::var_os("OUT_DIR").context("can't get OUT_DIR env var")?).join("block.rs"); + + fs::write(&out_path, &finshed.to_string())?; + + // Format the output for debugging purposes. + // Doesn't matter if rustfmt is unavailable. + let _ = Command::new("rustfmt").arg(out_path).output(); + + Ok(()) +} + +struct Block { + name: String, + default_state: u16, + min_state_id: u16, + max_state_id: u16, + /// 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, + props: b + .states + .into_iter() + .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!["false".to_string(), "true".to_string()], + }, + }) + .collect(), + }) + .collect()) +} diff --git a/build/main.rs b/build/main.rs new file mode 100644 index 0000000..b05e1bd --- /dev/null +++ b/build/main.rs @@ -0,0 +1,32 @@ +use std::fs; + +use anyhow::Context; +use proc_macro2::{Ident, Span}; + +mod block; + +pub fn main() -> anyhow::Result<()> { + // If any of the files in the data directory are modified, rerun the build + // script. + for entry in fs::read_dir("data")? { + let entry = entry?; + if entry.metadata()?.is_file() { + let buf = entry.path(); + let path = buf.to_str().context("bad file name")?; + println!("cargo:rerun-if-changed={path}"); + } + } + + block::build()?; + + Ok(()) +} + +fn ident(s: impl AsRef) -> Ident { + let s = s.as_ref().trim(); + if s.starts_with(char::is_numeric) { + Ident::new(&format!("_{s}"), Span::call_site()) + } else { + Ident::new(s, Span::call_site()) + } +} diff --git a/data/blocks.json b/data/blocks.json new file mode 100644 index 0000000..1d0184d --- /dev/null +++ b/data/blocks.json @@ -0,0 +1,32733 @@ +[ + { + "id": 0, + "name": "air", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "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, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1, + "minStateId": 1, + "maxStateId": 1, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 21 + ], + "boundingBox": "block" + }, + { + "id": 2, + "name": "granite", + "displayName": "Granite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 2, + "minStateId": 2, + "maxStateId": 2, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 2 + ], + "boundingBox": "block" + }, + { + "id": 3, + "name": "polished_granite", + "displayName": "Polished Granite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3, + "minStateId": 3, + "maxStateId": 3, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 3 + ], + "boundingBox": "block" + }, + { + "id": 4, + "name": "diorite", + "displayName": "Diorite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4, + "minStateId": 4, + "maxStateId": 4, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 4 + ], + "boundingBox": "block" + }, + { + "id": 5, + "name": "polished_diorite", + "displayName": "Polished Diorite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5, + "minStateId": 5, + "maxStateId": 5, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 5 + ], + "boundingBox": "block" + }, + { + "id": 6, + "name": "andesite", + "displayName": "Andesite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6, + "minStateId": 6, + "maxStateId": 6, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 6 + ], + "boundingBox": "block" + }, + { + "id": 7, + "name": "polished_andesite", + "displayName": "Polished Andesite", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7, + "minStateId": 7, + "maxStateId": 7, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": 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, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 14, + "minStateId": 14, + "maxStateId": 14, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 21 + ], + "boundingBox": "block" + }, + { + "id": 13, + "name": "oak_planks", + "displayName": "Oak Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15, + "minStateId": 15, + "maxStateId": 15, + "states": [], + "drops": [ + 22 + ], + "boundingBox": "block" + }, + { + "id": 14, + "name": "spruce_planks", + "displayName": "Spruce Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16, + "minStateId": 16, + "maxStateId": 16, + "states": [], + "drops": [ + 23 + ], + "boundingBox": "block" + }, + { + "id": 15, + "name": "birch_planks", + "displayName": "Birch Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17, + "minStateId": 17, + "maxStateId": 17, + "states": [], + "drops": [ + 24 + ], + "boundingBox": "block" + }, + { + "id": 16, + "name": "jungle_planks", + "displayName": "Jungle Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18, + "minStateId": 18, + "maxStateId": 18, + "states": [], + "drops": [ + 25 + ], + "boundingBox": "block" + }, + { + "id": 17, + "name": "acacia_planks", + "displayName": "Acacia Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19, + "minStateId": 19, + "maxStateId": 19, + "states": [], + "drops": [ + 26 + ], + "boundingBox": "block" + }, + { + "id": 18, + "name": "dark_oak_planks", + "displayName": "Dark Oak Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20, + "minStateId": 20, + "maxStateId": 20, + "states": [], + "drops": [ + 27 + ], + "boundingBox": "block" + }, + { + "id": 19, + "name": "oak_sapling", + "displayName": "Oak Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21, + "minStateId": 21, + "maxStateId": 22, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 30 + ], + "boundingBox": "empty" + }, + { + "id": 20, + "name": "spruce_sapling", + "displayName": "Spruce Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 23, + "minStateId": 23, + "maxStateId": 24, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 31 + ], + "boundingBox": "empty" + }, + { + "id": 21, + "name": "birch_sapling", + "displayName": "Birch Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 25, + "minStateId": 25, + "maxStateId": 26, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 32 + ], + "boundingBox": "empty" + }, + { + "id": 22, + "name": "jungle_sapling", + "displayName": "Jungle Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 27, + "minStateId": 27, + "maxStateId": 28, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 33 + ], + "boundingBox": "empty" + }, + { + "id": 23, + "name": "acacia_sapling", + "displayName": "Acacia Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 29, + "minStateId": 29, + "maxStateId": 30, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 34 + ], + "boundingBox": "empty" + }, + { + "id": 24, + "name": "dark_oak_sapling", + "displayName": "Dark Oak Sapling", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 31, + "minStateId": 31, + "maxStateId": 32, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 35 + ], + "boundingBox": "empty" + }, + { + "id": 25, + "name": "bedrock", + "displayName": "Bedrock", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 33, + "minStateId": 33, + "maxStateId": 33, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 26, + "name": "water", + "displayName": "Air", + "hardness": 100, + "resistance": 100, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 34, + "minStateId": 34, + "maxStateId": 49, + "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": 27, + "name": "lava", + "displayName": "Air", + "hardness": 100, + "resistance": 100, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 50, + "minStateId": 50, + "maxStateId": 65, + "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": 28, + "name": "sand", + "displayName": "Sand", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 66, + "minStateId": 66, + "maxStateId": 66, + "states": [], + "drops": [ + 37 + ], + "boundingBox": "block" + }, + { + "id": 29, + "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": 67, + "minStateId": 67, + "maxStateId": 67, + "states": [], + "drops": [ + 38 + ], + "boundingBox": "block" + }, + { + "id": 30, + "name": "gravel", + "displayName": "Gravel", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 68, + "minStateId": 68, + "maxStateId": 68, + "states": [], + "drops": [ + 39 + ], + "boundingBox": "block" + }, + { + "id": 31, + "name": "gold_ore", + "displayName": "Gold Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 69, + "minStateId": 69, + "maxStateId": 69, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 695 + ], + "boundingBox": "block" + }, + { + "id": 32, + "name": "deepslate_gold_ore", + "displayName": "Deepslate Gold Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 70, + "minStateId": 70, + "maxStateId": 70, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 695 + ], + "boundingBox": "block" + }, + { + "id": 33, + "name": "iron_ore", + "displayName": "Iron Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 71, + "minStateId": 71, + "maxStateId": 71, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 691 + ], + "boundingBox": "block" + }, + { + "id": 34, + "name": "deepslate_iron_ore", + "displayName": "Deepslate Iron Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 72, + "minStateId": 72, + "maxStateId": 72, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 691 + ], + "boundingBox": "block" + }, + { + "id": 35, + "name": "coal_ore", + "displayName": "Coal Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 73, + "minStateId": 73, + "maxStateId": 73, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 684 + ], + "boundingBox": "block" + }, + { + "id": 36, + "name": "deepslate_coal_ore", + "displayName": "Deepslate Coal Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 74, + "minStateId": 74, + "maxStateId": 74, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 684 + ], + "boundingBox": "block" + }, + { + "id": 37, + "name": "nether_gold_ore", + "displayName": "Nether Gold Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 75, + "minStateId": 75, + "maxStateId": 75, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 861 + ], + "boundingBox": "block" + }, + { + "id": 38, + "name": "oak_log", + "displayName": "Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 77, + "minStateId": 76, + "maxStateId": 78, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 101 + ], + "boundingBox": "block" + }, + { + "id": 39, + "name": "spruce_log", + "displayName": "Spruce Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 80, + "minStateId": 79, + "maxStateId": 81, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 102 + ], + "boundingBox": "block" + }, + { + "id": 40, + "name": "birch_log", + "displayName": "Birch Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 83, + "minStateId": 82, + "maxStateId": 84, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 103 + ], + "boundingBox": "block" + }, + { + "id": 41, + "name": "jungle_log", + "displayName": "Jungle Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 86, + "minStateId": 85, + "maxStateId": 87, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 104 + ], + "boundingBox": "block" + }, + { + "id": 42, + "name": "acacia_log", + "displayName": "Acacia Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 89, + "minStateId": 88, + "maxStateId": 90, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 105 + ], + "boundingBox": "block" + }, + { + "id": 43, + "name": "dark_oak_log", + "displayName": "Dark Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 92, + "minStateId": 91, + "maxStateId": 93, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 106 + ], + "boundingBox": "block" + }, + { + "id": 44, + "name": "stripped_spruce_log", + "displayName": "Stripped Spruce Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 95, + "minStateId": 94, + "maxStateId": 96, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 110 + ], + "boundingBox": "block" + }, + { + "id": 45, + "name": "stripped_birch_log", + "displayName": "Stripped Birch Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 98, + "minStateId": 97, + "maxStateId": 99, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 111 + ], + "boundingBox": "block" + }, + { + "id": 46, + "name": "stripped_jungle_log", + "displayName": "Stripped Jungle Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 101, + "minStateId": 100, + "maxStateId": 102, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 112 + ], + "boundingBox": "block" + }, + { + "id": 47, + "name": "stripped_acacia_log", + "displayName": "Stripped Acacia Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 104, + "minStateId": 103, + "maxStateId": 105, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 113 + ], + "boundingBox": "block" + }, + { + "id": 48, + "name": "stripped_dark_oak_log", + "displayName": "Stripped Dark Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 107, + "minStateId": 106, + "maxStateId": 108, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 114 + ], + "boundingBox": "block" + }, + { + "id": 49, + "name": "stripped_oak_log", + "displayName": "Stripped Oak Log", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 110, + "minStateId": 109, + "maxStateId": 111, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 109 + ], + "boundingBox": "block" + }, + { + "id": 50, + "name": "oak_wood", + "displayName": "Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 113, + "minStateId": 112, + "maxStateId": 114, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 125 + ], + "boundingBox": "block" + }, + { + "id": 51, + "name": "spruce_wood", + "displayName": "Spruce Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 116, + "minStateId": 115, + "maxStateId": 117, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 126 + ], + "boundingBox": "block" + }, + { + "id": 52, + "name": "birch_wood", + "displayName": "Birch Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 119, + "minStateId": 118, + "maxStateId": 120, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 127 + ], + "boundingBox": "block" + }, + { + "id": 53, + "name": "jungle_wood", + "displayName": "Jungle Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 122, + "minStateId": 121, + "maxStateId": 123, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 128 + ], + "boundingBox": "block" + }, + { + "id": 54, + "name": "acacia_wood", + "displayName": "Acacia Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 125, + "minStateId": 124, + "maxStateId": 126, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 129 + ], + "boundingBox": "block" + }, + { + "id": 55, + "name": "dark_oak_wood", + "displayName": "Dark Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 128, + "minStateId": 127, + "maxStateId": 129, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 130 + ], + "boundingBox": "block" + }, + { + "id": 56, + "name": "stripped_oak_wood", + "displayName": "Stripped Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 131, + "minStateId": 130, + "maxStateId": 132, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 117 + ], + "boundingBox": "block" + }, + { + "id": 57, + "name": "stripped_spruce_wood", + "displayName": "Stripped Spruce Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 134, + "minStateId": 133, + "maxStateId": 135, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 118 + ], + "boundingBox": "block" + }, + { + "id": 58, + "name": "stripped_birch_wood", + "displayName": "Stripped Birch Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 137, + "minStateId": 136, + "maxStateId": 138, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 119 + ], + "boundingBox": "block" + }, + { + "id": 59, + "name": "stripped_jungle_wood", + "displayName": "Stripped Jungle Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 140, + "minStateId": 139, + "maxStateId": 141, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 120 + ], + "boundingBox": "block" + }, + { + "id": 60, + "name": "stripped_acacia_wood", + "displayName": "Stripped Acacia Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 143, + "minStateId": 142, + "maxStateId": 144, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 121 + ], + "boundingBox": "block" + }, + { + "id": 61, + "name": "stripped_dark_oak_wood", + "displayName": "Stripped Dark Oak Wood", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 146, + "minStateId": 145, + "maxStateId": 147, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 122 + ], + "boundingBox": "block" + }, + { + "id": 62, + "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": 161, + "minStateId": 148, + "maxStateId": 161, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 63, + "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": 175, + "minStateId": 162, + "maxStateId": 175, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 64, + "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": 189, + "minStateId": 176, + "maxStateId": 189, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 65, + "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": 203, + "minStateId": 190, + "maxStateId": 203, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 66, + "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": 217, + "minStateId": 204, + "maxStateId": 217, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 67, + "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": 231, + "minStateId": 218, + "maxStateId": 231, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 68, + "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": 245, + "minStateId": 232, + "maxStateId": 245, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 69, + "name": "flowering_azalea_leaves", + "displayName": "Flowering Azalea Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/axe;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 259, + "minStateId": 246, + "maxStateId": 259, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 70, + "name": "sponge", + "displayName": "Sponge", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 260, + "minStateId": 260, + "maxStateId": 260, + "states": [], + "drops": [ + 141 + ], + "boundingBox": "block" + }, + { + "id": 71, + "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": 261, + "minStateId": 261, + "maxStateId": 261, + "states": [], + "drops": [ + 142 + ], + "boundingBox": "block" + }, + { + "id": 72, + "name": "glass", + "displayName": "Glass", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 262, + "minStateId": 262, + "maxStateId": 262, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 73, + "name": "lapis_ore", + "displayName": "Lapis Lazuli Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 263, + "minStateId": 263, + "maxStateId": 263, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 688 + ], + "boundingBox": "block" + }, + { + "id": 74, + "name": "deepslate_lapis_ore", + "displayName": "Deepslate Lapis Lazuli Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 264, + "minStateId": 264, + "maxStateId": 264, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 688 + ], + "boundingBox": "block" + }, + { + "id": 75, + "name": "lapis_block", + "displayName": "Block of Lapis Lazuli", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 265, + "minStateId": 265, + "maxStateId": 265, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 145 + ], + "boundingBox": "block" + }, + { + "id": 76, + "name": "dispenser", + "displayName": "Dispenser", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 267, + "minStateId": 266, + "maxStateId": 277, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "triggered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 596 + ], + "boundingBox": "block" + }, + { + "id": 77, + "name": "sandstone", + "displayName": "Sandstone", + "hardness": 0.8, + "resistance": 0.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 278, + "minStateId": 278, + "maxStateId": 278, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 146 + ], + "boundingBox": "block" + }, + { + "id": 78, + "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": 279, + "minStateId": 279, + "maxStateId": 279, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 147 + ], + "boundingBox": "block" + }, + { + "id": 79, + "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": 280, + "minStateId": 280, + "maxStateId": 280, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 148 + ], + "boundingBox": "block" + }, + { + "id": 80, + "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": 282, + "minStateId": 281, + "maxStateId": 1080, + "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": [ + 608 + ], + "boundingBox": "block" + }, + { + "id": 81, + "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": 1084, + "minStateId": 1081, + "maxStateId": 1096, + "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": 82, + "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": 1100, + "minStateId": 1097, + "maxStateId": 1112, + "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": 83, + "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": 1116, + "minStateId": 1113, + "maxStateId": 1128, + "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": 84, + "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": 1132, + "minStateId": 1129, + "maxStateId": 1144, + "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": 85, + "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": 1148, + "minStateId": 1145, + "maxStateId": 1160, + "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": 86, + "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": 1164, + "minStateId": 1161, + "maxStateId": 1176, + "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": 87, + "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": 1180, + "minStateId": 1177, + "maxStateId": 1192, + "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": 88, + "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": 1196, + "minStateId": 1193, + "maxStateId": 1208, + "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": 89, + "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": 1212, + "minStateId": 1209, + "maxStateId": 1224, + "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": 90, + "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": 1228, + "minStateId": 1225, + "maxStateId": 1240, + "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": "purple_bed", + "displayName": "Purple Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1244, + "minStateId": 1241, + "maxStateId": 1256, + "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": "blue_bed", + "displayName": "Blue Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1260, + "minStateId": 1257, + "maxStateId": 1272, + "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": "brown_bed", + "displayName": "Brown Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1276, + "minStateId": 1273, + "maxStateId": 1288, + "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": "green_bed", + "displayName": "Green Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1292, + "minStateId": 1289, + "maxStateId": 1304, + "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": "red_bed", + "displayName": "Red Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1308, + "minStateId": 1305, + "maxStateId": 1320, + "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": "black_bed", + "displayName": "Black Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1324, + "minStateId": 1321, + "maxStateId": 1336, + "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": "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": 1350, + "minStateId": 1337, + "maxStateId": 1360, + "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": [ + 657 + ], + "boundingBox": "empty" + }, + { + "id": 98, + "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": 1374, + "minStateId": 1361, + "maxStateId": 1384, + "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": [ + 658 + ], + "boundingBox": "empty" + }, + { + "id": 99, + "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": 1391, + "minStateId": 1385, + "maxStateId": 1396, + "states": [ + { + "name": "extended", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 591 + ], + "boundingBox": "block" + }, + { + "id": 100, + "name": "cobweb", + "displayName": "Cobweb", + "hardness": 4, + "resistance": 4, + "stackSize": 64, + "diggable": true, + "material": "coweb", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1397, + "minStateId": 1397, + "maxStateId": 1397, + "states": [], + "harvestTools": { + "699": true, + "704": true, + "709": true, + "714": true, + "719": true, + "724": true, + "848": true + }, + "drops": [ + 732 + ], + "boundingBox": "empty" + }, + { + "id": 101, + "name": "grass", + "displayName": "Grass", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1398, + "minStateId": 1398, + "maxStateId": 1398, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 102, + "name": "fern", + "displayName": "Fern", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1399, + "minStateId": 1399, + "maxStateId": 1399, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 103, + "name": "dead_bush", + "displayName": "Dead Bush", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1400, + "minStateId": 1400, + "maxStateId": 1400, + "states": [], + "drops": [ + 729 + ], + "boundingBox": "empty" + }, + { + "id": 104, + "name": "seagrass", + "displayName": "Seagrass", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1401, + "minStateId": 1401, + "maxStateId": 1401, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 105, + "name": "tall_seagrass", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 1403, + "minStateId": 1402, + "maxStateId": 1403, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 106, + "name": "piston", + "displayName": "Piston", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1410, + "minStateId": 1404, + "maxStateId": 1415, + "states": [ + { + "name": "extended", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 590 + ], + "boundingBox": "block" + }, + { + "id": 107, + "name": "piston_head", + "displayName": "Air", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1418, + "minStateId": 1416, + "maxStateId": 1439, + "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": 108, + "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": 1440, + "minStateId": 1440, + "maxStateId": 1440, + "states": [], + "drops": [ + 157 + ], + "boundingBox": "block" + }, + { + "id": 109, + "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": 1441, + "minStateId": 1441, + "maxStateId": 1441, + "states": [], + "drops": [ + 158 + ], + "boundingBox": "block" + }, + { + "id": 110, + "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": 1442, + "minStateId": 1442, + "maxStateId": 1442, + "states": [], + "drops": [ + 159 + ], + "boundingBox": "block" + }, + { + "id": 111, + "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": 1443, + "minStateId": 1443, + "maxStateId": 1443, + "states": [], + "drops": [ + 160 + ], + "boundingBox": "block" + }, + { + "id": 112, + "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": 1444, + "minStateId": 1444, + "maxStateId": 1444, + "states": [], + "drops": [ + 161 + ], + "boundingBox": "block" + }, + { + "id": 113, + "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": 1445, + "minStateId": 1445, + "maxStateId": 1445, + "states": [], + "drops": [ + 162 + ], + "boundingBox": "block" + }, + { + "id": 114, + "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": 1446, + "minStateId": 1446, + "maxStateId": 1446, + "states": [], + "drops": [ + 163 + ], + "boundingBox": "block" + }, + { + "id": 115, + "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": 1447, + "minStateId": 1447, + "maxStateId": 1447, + "states": [], + "drops": [ + 164 + ], + "boundingBox": "block" + }, + { + "id": 116, + "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": 1448, + "minStateId": 1448, + "maxStateId": 1448, + "states": [], + "drops": [ + 165 + ], + "boundingBox": "block" + }, + { + "id": 117, + "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": 1449, + "minStateId": 1449, + "maxStateId": 1449, + "states": [], + "drops": [ + 166 + ], + "boundingBox": "block" + }, + { + "id": 118, + "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": 1450, + "minStateId": 1450, + "maxStateId": 1450, + "states": [], + "drops": [ + 167 + ], + "boundingBox": "block" + }, + { + "id": 119, + "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": 1451, + "minStateId": 1451, + "maxStateId": 1451, + "states": [], + "drops": [ + 168 + ], + "boundingBox": "block" + }, + { + "id": 120, + "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": 1452, + "minStateId": 1452, + "maxStateId": 1452, + "states": [], + "drops": [ + 169 + ], + "boundingBox": "block" + }, + { + "id": 121, + "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": 1453, + "minStateId": 1453, + "maxStateId": 1453, + "states": [], + "drops": [ + 170 + ], + "boundingBox": "block" + }, + { + "id": 122, + "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": 1454, + "minStateId": 1454, + "maxStateId": 1454, + "states": [], + "drops": [ + 171 + ], + "boundingBox": "block" + }, + { + "id": 123, + "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": 1455, + "minStateId": 1455, + "maxStateId": 1455, + "states": [], + "drops": [ + 172 + ], + "boundingBox": "block" + }, + { + "id": 124, + "name": "moving_piston", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1456, + "minStateId": 1456, + "maxStateId": 1467, + "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": 125, + "name": "dandelion", + "displayName": "Dandelion", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1468, + "minStateId": 1468, + "maxStateId": 1468, + "states": [], + "drops": [ + 173 + ], + "boundingBox": "empty" + }, + { + "id": 126, + "name": "poppy", + "displayName": "Poppy", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1469, + "minStateId": 1469, + "maxStateId": 1469, + "states": [], + "drops": [ + 174 + ], + "boundingBox": "empty" + }, + { + "id": 127, + "name": "blue_orchid", + "displayName": "Blue Orchid", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1470, + "minStateId": 1470, + "maxStateId": 1470, + "states": [], + "drops": [ + 175 + ], + "boundingBox": "empty" + }, + { + "id": 128, + "name": "allium", + "displayName": "Allium", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1471, + "minStateId": 1471, + "maxStateId": 1471, + "states": [], + "drops": [ + 176 + ], + "boundingBox": "empty" + }, + { + "id": 129, + "name": "azure_bluet", + "displayName": "Azure Bluet", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1472, + "minStateId": 1472, + "maxStateId": 1472, + "states": [], + "drops": [ + 177 + ], + "boundingBox": "empty" + }, + { + "id": 130, + "name": "red_tulip", + "displayName": "Red Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1473, + "minStateId": 1473, + "maxStateId": 1473, + "states": [], + "drops": [ + 178 + ], + "boundingBox": "empty" + }, + { + "id": 131, + "name": "orange_tulip", + "displayName": "Orange Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1474, + "minStateId": 1474, + "maxStateId": 1474, + "states": [], + "drops": [ + 179 + ], + "boundingBox": "empty" + }, + { + "id": 132, + "name": "white_tulip", + "displayName": "White Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1475, + "minStateId": 1475, + "maxStateId": 1475, + "states": [], + "drops": [ + 180 + ], + "boundingBox": "empty" + }, + { + "id": 133, + "name": "pink_tulip", + "displayName": "Pink Tulip", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1476, + "minStateId": 1476, + "maxStateId": 1476, + "states": [], + "drops": [ + 181 + ], + "boundingBox": "empty" + }, + { + "id": 134, + "name": "oxeye_daisy", + "displayName": "Oxeye Daisy", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1477, + "minStateId": 1477, + "maxStateId": 1477, + "states": [], + "drops": [ + 182 + ], + "boundingBox": "empty" + }, + { + "id": 135, + "name": "cornflower", + "displayName": "Cornflower", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1478, + "minStateId": 1478, + "maxStateId": 1478, + "states": [], + "drops": [ + 183 + ], + "boundingBox": "empty" + }, + { + "id": 136, + "name": "wither_rose", + "displayName": "Wither Rose", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1479, + "minStateId": 1479, + "maxStateId": 1479, + "states": [], + "drops": [ + 185 + ], + "boundingBox": "empty" + }, + { + "id": 137, + "name": "lily_of_the_valley", + "displayName": "Lily of the Valley", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1480, + "minStateId": 1480, + "maxStateId": 1480, + "states": [], + "drops": [ + 184 + ], + "boundingBox": "empty" + }, + { + "id": 138, + "name": "brown_mushroom", + "displayName": "Brown Mushroom", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 1481, + "minStateId": 1481, + "maxStateId": 1481, + "states": [], + "drops": [ + 187 + ], + "boundingBox": "empty" + }, + { + "id": 139, + "name": "red_mushroom", + "displayName": "Red Mushroom", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1482, + "minStateId": 1482, + "maxStateId": 1482, + "states": [], + "drops": [ + 188 + ], + "boundingBox": "empty" + }, + { + "id": 140, + "name": "gold_block", + "displayName": "Block of Gold", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1483, + "minStateId": 1483, + "maxStateId": 1483, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 67 + ], + "boundingBox": "block" + }, + { + "id": 141, + "name": "iron_block", + "displayName": "Block of Iron", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1484, + "minStateId": 1484, + "maxStateId": 1484, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 65 + ], + "boundingBox": "block" + }, + { + "id": 142, + "name": "bricks", + "displayName": "Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1485, + "minStateId": 1485, + "maxStateId": 1485, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 232 + ], + "boundingBox": "block" + }, + { + "id": 143, + "name": "tnt", + "displayName": "TNT", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1487, + "minStateId": 1486, + "maxStateId": 1487, + "states": [ + { + "name": "unstable", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 606 + ], + "boundingBox": "block" + }, + { + "id": 144, + "name": "bookshelf", + "displayName": "Bookshelf", + "hardness": 1.5, + "resistance": 1.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1488, + "minStateId": 1488, + "maxStateId": 1488, + "states": [], + "drops": [ + 792 + ], + "boundingBox": "block" + }, + { + "id": 145, + "name": "mossy_cobblestone", + "displayName": "Mossy Cobblestone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1489, + "minStateId": 1489, + "maxStateId": 1489, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 234 + ], + "boundingBox": "block" + }, + { + "id": 146, + "name": "obsidian", + "displayName": "Obsidian", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1490, + "minStateId": 1490, + "maxStateId": 1490, + "states": [], + "harvestTools": { + "721": true, + "726": true + }, + "drops": [ + 235 + ], + "boundingBox": "block" + }, + { + "id": 147, + "name": "torch", + "displayName": "Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 1491, + "minStateId": 1491, + "maxStateId": 1491, + "states": [], + "drops": [ + 236 + ], + "boundingBox": "empty" + }, + { + "id": 148, + "name": "wall_torch", + "displayName": "Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 1492, + "minStateId": 1492, + "maxStateId": 1495, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 236 + ], + "boundingBox": "empty" + }, + { + "id": 149, + "name": "fire", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 1527, + "minStateId": 1496, + "maxStateId": 2007, + "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": 150, + "name": "soul_fire", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 2008, + "minStateId": 2008, + "maxStateId": 2008, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 151, + "name": "spawner", + "displayName": "Spawner", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 2009, + "minStateId": 2009, + "maxStateId": 2009, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "block" + }, + { + "id": 152, + "name": "oak_stairs", + "displayName": "Oak Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2021, + "minStateId": 2010, + "maxStateId": 2089, + "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": [ + 244 + ], + "boundingBox": "block" + }, + { + "id": 153, + "name": "chest", + "displayName": "Chest", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 2091, + "minStateId": 2090, + "maxStateId": 2113, + "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": [ + 245 + ], + "boundingBox": "block" + }, + { + "id": 154, + "name": "redstone_wire", + "displayName": "Redstone Dust", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3274, + "minStateId": 2114, + "maxStateId": 3409, + "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": [ + 585 + ], + "boundingBox": "empty" + }, + { + "id": 155, + "name": "diamond_ore", + "displayName": "Diamond Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3410, + "minStateId": 3410, + "maxStateId": 3410, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 686 + ], + "boundingBox": "block" + }, + { + "id": 156, + "name": "deepslate_diamond_ore", + "displayName": "Deepslate Diamond Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3411, + "minStateId": 3411, + "maxStateId": 3411, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 686 + ], + "boundingBox": "block" + }, + { + "id": 157, + "name": "diamond_block", + "displayName": "Block of Diamond", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3412, + "minStateId": 3412, + "maxStateId": 3412, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 68 + ], + "boundingBox": "block" + }, + { + "id": 158, + "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": 3413, + "minStateId": 3413, + "maxStateId": 3413, + "states": [], + "drops": [ + 246 + ], + "boundingBox": "block" + }, + { + "id": 159, + "name": "wheat", + "displayName": "Wheat Seeds", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3414, + "minStateId": 3414, + "maxStateId": 3421, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 735 + ], + "boundingBox": "empty" + }, + { + "id": 160, + "name": "farmland", + "displayName": "Farmland", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3422, + "minStateId": 3422, + "maxStateId": 3429, + "states": [ + { + "name": "moisture", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 15 + ], + "boundingBox": "block" + }, + { + "id": 161, + "name": "furnace", + "displayName": "Furnace", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3431, + "minStateId": 3430, + "maxStateId": 3437, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 248 + ], + "boundingBox": "block" + }, + { + "id": 162, + "name": "oak_sign", + "displayName": "Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3439, + "minStateId": 3438, + "maxStateId": 3469, + "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": [ + 768 + ], + "boundingBox": "empty" + }, + { + "id": 163, + "name": "spruce_sign", + "displayName": "Spruce Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3471, + "minStateId": 3470, + "maxStateId": 3501, + "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": [ + 769 + ], + "boundingBox": "empty" + }, + { + "id": 164, + "name": "birch_sign", + "displayName": "Birch Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3503, + "minStateId": 3502, + "maxStateId": 3533, + "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": [ + 770 + ], + "boundingBox": "empty" + }, + { + "id": 165, + "name": "acacia_sign", + "displayName": "Acacia Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3535, + "minStateId": 3534, + "maxStateId": 3565, + "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": [ + 772 + ], + "boundingBox": "empty" + }, + { + "id": 166, + "name": "jungle_sign", + "displayName": "Jungle Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3567, + "minStateId": 3566, + "maxStateId": 3597, + "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": [ + 771 + ], + "boundingBox": "empty" + }, + { + "id": 167, + "name": "dark_oak_sign", + "displayName": "Dark Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3599, + "minStateId": 3598, + "maxStateId": 3629, + "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": [ + 773 + ], + "boundingBox": "empty" + }, + { + "id": 168, + "name": "oak_door", + "displayName": "Oak Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3641, + "minStateId": 3630, + "maxStateId": 3693, + "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": [ + 632 + ], + "boundingBox": "block" + }, + { + "id": 169, + "name": "ladder", + "displayName": "Ladder", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3695, + "minStateId": 3694, + "maxStateId": 3701, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 249 + ], + "boundingBox": "block" + }, + { + "id": 170, + "name": "rail", + "displayName": "Rail", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3703, + "minStateId": 3702, + "maxStateId": 3721, + "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": [ + 659 + ], + "boundingBox": "empty" + }, + { + "id": 171, + "name": "cobblestone_stairs", + "displayName": "Cobblestone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3733, + "minStateId": 3722, + "maxStateId": 3801, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 250 + ], + "boundingBox": "block" + }, + { + "id": 172, + "name": "oak_wall_sign", + "displayName": "Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3803, + "minStateId": 3802, + "maxStateId": 3809, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 768 + ], + "boundingBox": "empty" + }, + { + "id": 173, + "name": "spruce_wall_sign", + "displayName": "Spruce Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3811, + "minStateId": 3810, + "maxStateId": 3817, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 769 + ], + "boundingBox": "empty" + }, + { + "id": 174, + "name": "birch_wall_sign", + "displayName": "Birch Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3819, + "minStateId": 3818, + "maxStateId": 3825, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 770 + ], + "boundingBox": "empty" + }, + { + "id": 175, + "name": "acacia_wall_sign", + "displayName": "Acacia Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3827, + "minStateId": 3826, + "maxStateId": 3833, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 772 + ], + "boundingBox": "empty" + }, + { + "id": 176, + "name": "jungle_wall_sign", + "displayName": "Jungle Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3835, + "minStateId": 3834, + "maxStateId": 3841, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 771 + ], + "boundingBox": "empty" + }, + { + "id": 177, + "name": "dark_oak_wall_sign", + "displayName": "Dark Oak Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3843, + "minStateId": 3842, + "maxStateId": 3849, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 773 + ], + "boundingBox": "empty" + }, + { + "id": 178, + "name": "lever", + "displayName": "Lever", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3859, + "minStateId": 3850, + "maxStateId": 3873, + "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": [ + 600 + ], + "boundingBox": "empty" + }, + { + "id": 179, + "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": 3875, + "minStateId": 3874, + "maxStateId": 3875, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 619 + ], + "boundingBox": "empty" + }, + { + "id": 180, + "name": "iron_door", + "displayName": "Iron Door", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3887, + "minStateId": 3876, + "maxStateId": 3939, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 631 + ], + "boundingBox": "block" + }, + { + "id": 181, + "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": 3941, + "minStateId": 3940, + "maxStateId": 3941, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 623 + ], + "boundingBox": "empty" + }, + { + "id": 182, + "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": 3943, + "minStateId": 3942, + "maxStateId": 3943, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 624 + ], + "boundingBox": "empty" + }, + { + "id": 183, + "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": 3945, + "minStateId": 3944, + "maxStateId": 3945, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 625 + ], + "boundingBox": "empty" + }, + { + "id": 184, + "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": 3947, + "minStateId": 3946, + "maxStateId": 3947, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 626 + ], + "boundingBox": "empty" + }, + { + "id": 185, + "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": 3949, + "minStateId": 3948, + "maxStateId": 3949, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 627 + ], + "boundingBox": "empty" + }, + { + "id": 186, + "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": 3951, + "minStateId": 3950, + "maxStateId": 3951, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 628 + ], + "boundingBox": "empty" + }, + { + "id": 187, + "name": "redstone_ore", + "displayName": "Redstone Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3953, + "minStateId": 3952, + "maxStateId": 3953, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 585 + ], + "boundingBox": "block" + }, + { + "id": 188, + "name": "deepslate_redstone_ore", + "displayName": "Deepslate Redstone Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 3955, + "minStateId": 3954, + "maxStateId": 3955, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 585 + ], + "boundingBox": "block" + }, + { + "id": 189, + "name": "redstone_torch", + "displayName": "Redstone Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 7, + "filterLight": 0, + "defaultState": 3956, + "minStateId": 3956, + "maxStateId": 3957, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 586 + ], + "boundingBox": "empty" + }, + { + "id": 190, + "name": "redstone_wall_torch", + "displayName": "Redstone Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 7, + "filterLight": 0, + "defaultState": 3958, + "minStateId": 3958, + "maxStateId": 3965, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 586 + ], + "boundingBox": "empty" + }, + { + "id": 191, + "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": 3975, + "minStateId": 3966, + "maxStateId": 3989, + "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": [ + 609 + ], + "boundingBox": "empty" + }, + { + "id": 192, + "name": "snow", + "displayName": "Snow", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3990, + "minStateId": 3990, + "maxStateId": 3997, + "states": [ + { + "name": "layers", + "type": "int", + "num_values": 8, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + } + ], + "harvestTools": { + "700": true, + "705": true, + "710": true, + "715": true, + "720": true, + "725": true + }, + "drops": [], + "boundingBox": "block" + }, + { + "id": 193, + "name": "ice", + "displayName": "Ice", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 3998, + "minStateId": 3998, + "maxStateId": 3998, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 194, + "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": 3999, + "minStateId": 3999, + "maxStateId": 3999, + "states": [], + "harvestTools": { + "700": true, + "705": true, + "710": true, + "715": true, + "720": true, + "725": true + }, + "drops": [ + 780 + ], + "boundingBox": "block" + }, + { + "id": 195, + "name": "cactus", + "displayName": "Cactus", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4000, + "minStateId": 4000, + "maxStateId": 4015, + "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": [ + 254 + ], + "boundingBox": "block" + }, + { + "id": 196, + "name": "clay", + "displayName": "Clay", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4016, + "minStateId": 4016, + "maxStateId": 4016, + "states": [], + "drops": [ + 789 + ], + "boundingBox": "block" + }, + { + "id": 197, + "name": "sugar_cane", + "displayName": "Sugar Cane", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4017, + "minStateId": 4017, + "maxStateId": 4032, + "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": [ + 196 + ], + "boundingBox": "empty" + }, + { + "id": 198, + "name": "jukebox", + "displayName": "Jukebox", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4034, + "minStateId": 4033, + "maxStateId": 4034, + "states": [ + { + "name": "has_record", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 256 + ], + "boundingBox": "block" + }, + { + "id": 199, + "name": "oak_fence", + "displayName": "Oak Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4066, + "minStateId": 4035, + "maxStateId": 4066, + "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": [ + 257 + ], + "boundingBox": "block" + }, + { + "id": 200, + "name": "pumpkin", + "displayName": "Pumpkin", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4067, + "minStateId": 4067, + "maxStateId": 4067, + "states": [], + "drops": [ + 265 + ], + "boundingBox": "block" + }, + { + "id": 201, + "name": "netherrack", + "displayName": "Netherrack", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4068, + "minStateId": 4068, + "maxStateId": 4068, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 268 + ], + "boundingBox": "block" + }, + { + "id": 202, + "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": 4069, + "minStateId": 4069, + "maxStateId": 4069, + "states": [], + "drops": [ + 269 + ], + "boundingBox": "block" + }, + { + "id": 203, + "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": 4070, + "minStateId": 4070, + "maxStateId": 4070, + "states": [], + "drops": [ + 270 + ], + "boundingBox": "block" + }, + { + "id": 204, + "name": "basalt", + "displayName": "Basalt", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4072, + "minStateId": 4071, + "maxStateId": 4073, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 271 + ], + "boundingBox": "block" + }, + { + "id": 205, + "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": 4075, + "minStateId": 4074, + "maxStateId": 4076, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 272 + ], + "boundingBox": "block" + }, + { + "id": 206, + "name": "soul_torch", + "displayName": "Soul Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 4077, + "minStateId": 4077, + "maxStateId": 4077, + "states": [], + "drops": [ + 274 + ], + "boundingBox": "empty" + }, + { + "id": 207, + "name": "soul_wall_torch", + "displayName": "Soul Torch", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 4078, + "minStateId": 4078, + "maxStateId": 4081, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 274 + ], + "boundingBox": "empty" + }, + { + "id": 208, + "name": "glowstone", + "displayName": "Glowstone", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 4082, + "minStateId": 4082, + "maxStateId": 4082, + "states": [], + "drops": [ + 800 + ], + "boundingBox": "block" + }, + { + "id": 209, + "name": "nether_portal", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 11, + "filterLight": 0, + "defaultState": 4083, + "minStateId": 4083, + "maxStateId": 4084, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 2, + "values": [ + "x", + "z" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 210, + "name": "carved_pumpkin", + "displayName": "Carved Pumpkin", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4085, + "minStateId": 4085, + "maxStateId": 4088, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 266 + ], + "boundingBox": "block" + }, + { + "id": 211, + "name": "jack_o_lantern", + "displayName": "Jack o'Lantern", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 4089, + "minStateId": 4089, + "maxStateId": 4092, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 267 + ], + "boundingBox": "block" + }, + { + "id": 212, + "name": "cake", + "displayName": "Cake", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4093, + "minStateId": 4093, + "maxStateId": 4099, + "states": [ + { + "name": "bites", + "type": "int", + "num_values": 7, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 213, + "name": "repeater", + "displayName": "Redstone Repeater", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4103, + "minStateId": 4100, + "maxStateId": 4163, + "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": [ + 588 + ], + "boundingBox": "block" + }, + { + "id": 214, + "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": 4164, + "minStateId": 4164, + "maxStateId": 4164, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 215, + "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": 4165, + "minStateId": 4165, + "maxStateId": 4165, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 216, + "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": 4166, + "minStateId": 4166, + "maxStateId": 4166, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 217, + "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": 4167, + "minStateId": 4167, + "maxStateId": 4167, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 218, + "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": 4168, + "minStateId": 4168, + "maxStateId": 4168, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 219, + "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": 4169, + "minStateId": 4169, + "maxStateId": 4169, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 220, + "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": 4170, + "minStateId": 4170, + "maxStateId": 4170, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 221, + "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": 4171, + "minStateId": 4171, + "maxStateId": 4171, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 222, + "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": 4172, + "minStateId": 4172, + "maxStateId": 4172, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 223, + "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": 4173, + "minStateId": 4173, + "maxStateId": 4173, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 224, + "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": 4174, + "minStateId": 4174, + "maxStateId": 4174, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 225, + "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": 4175, + "minStateId": 4175, + "maxStateId": 4175, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 226, + "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": 4176, + "minStateId": 4176, + "maxStateId": 4176, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 227, + "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": 4177, + "minStateId": 4177, + "maxStateId": 4177, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 228, + "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": 4178, + "minStateId": 4178, + "maxStateId": 4178, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 229, + "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": 4179, + "minStateId": 4179, + "maxStateId": 4179, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 230, + "name": "oak_trapdoor", + "displayName": "Oak Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4195, + "minStateId": 4180, + "maxStateId": 4243, + "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": [ + 641 + ], + "boundingBox": "block" + }, + { + "id": 231, + "name": "spruce_trapdoor", + "displayName": "Spruce Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4259, + "minStateId": 4244, + "maxStateId": 4307, + "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": [ + 642 + ], + "boundingBox": "block" + }, + { + "id": 232, + "name": "birch_trapdoor", + "displayName": "Birch Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4323, + "minStateId": 4308, + "maxStateId": 4371, + "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": [ + 643 + ], + "boundingBox": "block" + }, + { + "id": 233, + "name": "jungle_trapdoor", + "displayName": "Jungle Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4387, + "minStateId": 4372, + "maxStateId": 4435, + "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": [ + 644 + ], + "boundingBox": "block" + }, + { + "id": 234, + "name": "acacia_trapdoor", + "displayName": "Acacia Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4451, + "minStateId": 4436, + "maxStateId": 4499, + "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": [ + 645 + ], + "boundingBox": "block" + }, + { + "id": 235, + "name": "dark_oak_trapdoor", + "displayName": "Dark Oak Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4515, + "minStateId": 4500, + "maxStateId": 4563, + "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": [ + 646 + ], + "boundingBox": "block" + }, + { + "id": 236, + "name": "stone_bricks", + "displayName": "Stone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4564, + "minStateId": 4564, + "maxStateId": 4564, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 283 + ], + "boundingBox": "block" + }, + { + "id": 237, + "name": "mossy_stone_bricks", + "displayName": "Mossy Stone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4565, + "minStateId": 4565, + "maxStateId": 4565, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 284 + ], + "boundingBox": "block" + }, + { + "id": 238, + "name": "cracked_stone_bricks", + "displayName": "Cracked Stone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4566, + "minStateId": 4566, + "maxStateId": 4566, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 285 + ], + "boundingBox": "block" + }, + { + "id": 239, + "name": "chiseled_stone_bricks", + "displayName": "Chiseled Stone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4567, + "minStateId": 4567, + "maxStateId": 4567, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 286 + ], + "boundingBox": "block" + }, + { + "id": 240, + "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": 4568, + "minStateId": 4568, + "maxStateId": 4568, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 241, + "name": "infested_cobblestone", + "displayName": "Infested Cobblestone", + "hardness": 1, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4569, + "minStateId": 4569, + "maxStateId": 4569, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 242, + "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": 4570, + "minStateId": 4570, + "maxStateId": 4570, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 243, + "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": 4571, + "minStateId": 4571, + "maxStateId": 4571, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 244, + "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": 4572, + "minStateId": 4572, + "maxStateId": 4572, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 245, + "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": 4573, + "minStateId": 4573, + "maxStateId": 4573, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 246, + "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": 4574, + "minStateId": 4574, + "maxStateId": 4637, + "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": 247, + "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": 4638, + "minStateId": 4638, + "maxStateId": 4701, + "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": 248, + "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": 4702, + "minStateId": 4702, + "maxStateId": 4765, + "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": 249, + "name": "iron_bars", + "displayName": "Iron Bars", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4797, + "minStateId": 4766, + "maxStateId": 4797, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 295 + ], + "boundingBox": "block" + }, + { + "id": 250, + "name": "chain", + "displayName": "Chain", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4801, + "minStateId": 4798, + "maxStateId": 4803, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 296 + ], + "boundingBox": "block" + }, + { + "id": 251, + "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": 4835, + "minStateId": 4804, + "maxStateId": 4835, + "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": 252, + "name": "melon", + "displayName": "Melon", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "gourd;mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4836, + "minStateId": 4836, + "maxStateId": 4836, + "states": [], + "drops": [ + 849 + ], + "boundingBox": "block" + }, + { + "id": 253, + "name": "attached_pumpkin_stem", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4837, + "minStateId": 4837, + "maxStateId": 4840, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 851 + ], + "boundingBox": "empty" + }, + { + "id": 254, + "name": "attached_melon_stem", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4841, + "minStateId": 4841, + "maxStateId": 4844, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 852 + ], + "boundingBox": "empty" + }, + { + "id": 255, + "name": "pumpkin_stem", + "displayName": "Pumpkin Seeds", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4845, + "minStateId": 4845, + "maxStateId": 4852, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 0 + ], + "boundingBox": "empty" + }, + { + "id": 256, + "name": "melon_stem", + "displayName": "Melon Seeds", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4853, + "minStateId": 4853, + "maxStateId": 4860, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 0 + ], + "boundingBox": "empty" + }, + { + "id": 257, + "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": 4892, + "minStateId": 4861, + "maxStateId": 4892, + "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": 258, + "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": 5020, + "minStateId": 4893, + "maxStateId": 5020, + "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": 259, + "name": "oak_fence_gate", + "displayName": "Oak Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5028, + "minStateId": 5021, + "maxStateId": 5052, + "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": [ + 649 + ], + "boundingBox": "block" + }, + { + "id": 260, + "name": "brick_stairs", + "displayName": "Brick Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5064, + "minStateId": 5053, + "maxStateId": 5132, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 301 + ], + "boundingBox": "block" + }, + { + "id": 261, + "name": "stone_brick_stairs", + "displayName": "Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5144, + "minStateId": 5133, + "maxStateId": 5212, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 302 + ], + "boundingBox": "block" + }, + { + "id": 262, + "name": "mycelium", + "displayName": "Mycelium", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5214, + "minStateId": 5213, + "maxStateId": 5214, + "states": [ + { + "name": "snowy", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 15 + ], + "boundingBox": "block" + }, + { + "id": 263, + "name": "lily_pad", + "displayName": "Lily Pad", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5215, + "minStateId": 5215, + "maxStateId": 5215, + "states": [], + "drops": [ + 304 + ], + "boundingBox": "block" + }, + { + "id": 264, + "name": "nether_bricks", + "displayName": "Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5216, + "minStateId": 5216, + "maxStateId": 5216, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 305 + ], + "boundingBox": "block" + }, + { + "id": 265, + "name": "nether_brick_fence", + "displayName": "Nether Brick Fence", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5248, + "minStateId": 5217, + "maxStateId": 5248, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 308 + ], + "boundingBox": "block" + }, + { + "id": 266, + "name": "nether_brick_stairs", + "displayName": "Nether Brick Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5260, + "minStateId": 5249, + "maxStateId": 5328, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 309 + ], + "boundingBox": "block" + }, + { + "id": 267, + "name": "nether_wart", + "displayName": "Nether Wart", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5329, + "minStateId": 5329, + "maxStateId": 5332, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [ + 862 + ], + "boundingBox": "empty" + }, + { + "id": 268, + "name": "enchanting_table", + "displayName": "Enchanting Table", + "hardness": 5, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5333, + "minStateId": 5333, + "maxStateId": 5333, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 310 + ], + "boundingBox": "block" + }, + { + "id": 269, + "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": 5341, + "minStateId": 5334, + "maxStateId": 5341, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 869 + ], + "boundingBox": "block" + }, + { + "id": 270, + "name": "cauldron", + "displayName": "Cauldron", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5342, + "minStateId": 5342, + "maxStateId": 5342, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 870 + ], + "boundingBox": "block" + }, + { + "id": 271, + "name": "water_cauldron", + "displayName": "Cauldron", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5343, + "minStateId": 5343, + "maxStateId": 5345, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 3, + "values": [ + "1", + "2", + "3" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 870 + ], + "boundingBox": "block" + }, + { + "id": 272, + "name": "lava_cauldron", + "displayName": "Cauldron", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 5346, + "minStateId": 5346, + "maxStateId": 5346, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 870 + ], + "boundingBox": "block" + }, + { + "id": 273, + "name": "powder_snow_cauldron", + "displayName": "Cauldron", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5347, + "minStateId": 5347, + "maxStateId": 5349, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 3, + "values": [ + "1", + "2", + "3" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 870 + ], + "boundingBox": "block" + }, + { + "id": 274, + "name": "end_portal", + "displayName": "Air", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 5350, + "minStateId": 5350, + "maxStateId": 5350, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 275, + "name": "end_portal_frame", + "displayName": "End Portal Frame", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 1, + "filterLight": 0, + "defaultState": 5355, + "minStateId": 5351, + "maxStateId": 5358, + "states": [ + { + "name": "eye", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 276, + "name": "end_stone", + "displayName": "End Stone", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5359, + "minStateId": 5359, + "maxStateId": 5359, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 312 + ], + "boundingBox": "block" + }, + { + "id": 277, + "name": "dragon_egg", + "displayName": "Dragon Egg", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 5360, + "minStateId": 5360, + "maxStateId": 5360, + "states": [], + "drops": [ + 314 + ], + "boundingBox": "block" + }, + { + "id": 278, + "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": 5362, + "minStateId": 5361, + "maxStateId": 5362, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 607 + ], + "boundingBox": "block" + }, + { + "id": 279, + "name": "cocoa", + "displayName": "Cocoa Beans", + "hardness": 0.2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5363, + "minStateId": 5363, + "maxStateId": 5374, + "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": [ + 809 + ], + "boundingBox": "block" + }, + { + "id": 280, + "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": 5386, + "minStateId": 5375, + "maxStateId": 5454, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 315 + ], + "boundingBox": "block" + }, + { + "id": 281, + "name": "emerald_ore", + "displayName": "Emerald Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5455, + "minStateId": 5455, + "maxStateId": 5455, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 687 + ], + "boundingBox": "block" + }, + { + "id": 282, + "name": "deepslate_emerald_ore", + "displayName": "Deepslate Emerald Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5456, + "minStateId": 5456, + "maxStateId": 5456, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 687 + ], + "boundingBox": "block" + }, + { + "id": 283, + "name": "ender_chest", + "displayName": "Ender Chest", + "hardness": 22.5, + "resistance": 600, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 7, + "filterLight": 0, + "defaultState": 5458, + "minStateId": 5457, + "maxStateId": 5464, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 235 + ], + "boundingBox": "block" + }, + { + "id": 284, + "name": "tripwire_hook", + "displayName": "Tripwire Hook", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5474, + "minStateId": 5465, + "maxStateId": 5480, + "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": [ + 604 + ], + "boundingBox": "empty" + }, + { + "id": 285, + "name": "tripwire", + "displayName": "String", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5608, + "minStateId": 5481, + "maxStateId": 5608, + "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": [ + 732 + ], + "boundingBox": "empty" + }, + { + "id": 286, + "name": "emerald_block", + "displayName": "Block of Emerald", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5609, + "minStateId": 5609, + "maxStateId": 5609, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 317 + ], + "boundingBox": "block" + }, + { + "id": 287, + "name": "spruce_stairs", + "displayName": "Spruce Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5621, + "minStateId": 5610, + "maxStateId": 5689, + "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": [ + 318 + ], + "boundingBox": "block" + }, + { + "id": 288, + "name": "birch_stairs", + "displayName": "Birch Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5701, + "minStateId": 5690, + "maxStateId": 5769, + "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": [ + 319 + ], + "boundingBox": "block" + }, + { + "id": 289, + "name": "jungle_stairs", + "displayName": "Jungle Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5781, + "minStateId": 5770, + "maxStateId": 5849, + "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": [ + 320 + ], + "boundingBox": "block" + }, + { + "id": 290, + "name": "command_block", + "displayName": "Command Block", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 5856, + "minStateId": 5850, + "maxStateId": 5861, + "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": 291, + "name": "beacon", + "displayName": "Beacon", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 5862, + "minStateId": 5862, + "maxStateId": 5862, + "states": [], + "drops": [ + 324 + ], + "boundingBox": "block" + }, + { + "id": 292, + "name": "cobblestone_wall", + "displayName": "Cobblestone Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5866, + "minStateId": 5863, + "maxStateId": 6186, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 325 + ], + "boundingBox": "block" + }, + { + "id": 293, + "name": "mossy_cobblestone_wall", + "displayName": "Mossy Cobblestone Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6190, + "minStateId": 6187, + "maxStateId": 6510, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 326 + ], + "boundingBox": "block" + }, + { + "id": 294, + "name": "flower_pot", + "displayName": "Flower Pot", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6511, + "minStateId": 6511, + "maxStateId": 6511, + "states": [], + "drops": [ + 946 + ], + "boundingBox": "block" + }, + { + "id": 295, + "name": "potted_oak_sapling", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6512, + "minStateId": 6512, + "maxStateId": 6512, + "states": [], + "drops": [ + 946, + 30 + ], + "boundingBox": "block" + }, + { + "id": 296, + "name": "potted_spruce_sapling", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6513, + "minStateId": 6513, + "maxStateId": 6513, + "states": [], + "drops": [ + 946, + 31 + ], + "boundingBox": "block" + }, + { + "id": 297, + "name": "potted_birch_sapling", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6514, + "minStateId": 6514, + "maxStateId": 6514, + "states": [], + "drops": [ + 946, + 32 + ], + "boundingBox": "block" + }, + { + "id": 298, + "name": "potted_jungle_sapling", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6515, + "minStateId": 6515, + "maxStateId": 6515, + "states": [], + "drops": [ + 946, + 33 + ], + "boundingBox": "block" + }, + { + "id": 299, + "name": "potted_acacia_sapling", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6516, + "minStateId": 6516, + "maxStateId": 6516, + "states": [], + "drops": [ + 946, + 34 + ], + "boundingBox": "block" + }, + { + "id": 300, + "name": "potted_dark_oak_sapling", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6517, + "minStateId": 6517, + "maxStateId": 6517, + "states": [], + "drops": [ + 946, + 35 + ], + "boundingBox": "block" + }, + { + "id": 301, + "name": "potted_fern", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6518, + "minStateId": 6518, + "maxStateId": 6518, + "states": [], + "drops": [ + 946, + 151 + ], + "boundingBox": "block" + }, + { + "id": 302, + "name": "potted_dandelion", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6519, + "minStateId": 6519, + "maxStateId": 6519, + "states": [], + "drops": [ + 946, + 173 + ], + "boundingBox": "block" + }, + { + "id": 303, + "name": "potted_poppy", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6520, + "minStateId": 6520, + "maxStateId": 6520, + "states": [], + "drops": [ + 946, + 174 + ], + "boundingBox": "block" + }, + { + "id": 304, + "name": "potted_blue_orchid", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6521, + "minStateId": 6521, + "maxStateId": 6521, + "states": [], + "drops": [ + 946, + 175 + ], + "boundingBox": "block" + }, + { + "id": 305, + "name": "potted_allium", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6522, + "minStateId": 6522, + "maxStateId": 6522, + "states": [], + "drops": [ + 946, + 176 + ], + "boundingBox": "block" + }, + { + "id": 306, + "name": "potted_azure_bluet", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6523, + "minStateId": 6523, + "maxStateId": 6523, + "states": [], + "drops": [ + 946, + 177 + ], + "boundingBox": "block" + }, + { + "id": 307, + "name": "potted_red_tulip", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6524, + "minStateId": 6524, + "maxStateId": 6524, + "states": [], + "drops": [ + 946, + 178 + ], + "boundingBox": "block" + }, + { + "id": 308, + "name": "potted_orange_tulip", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6525, + "minStateId": 6525, + "maxStateId": 6525, + "states": [], + "drops": [ + 946, + 179 + ], + "boundingBox": "block" + }, + { + "id": 309, + "name": "potted_white_tulip", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6526, + "minStateId": 6526, + "maxStateId": 6526, + "states": [], + "drops": [ + 946, + 180 + ], + "boundingBox": "block" + }, + { + "id": 310, + "name": "potted_pink_tulip", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6527, + "minStateId": 6527, + "maxStateId": 6527, + "states": [], + "drops": [ + 946, + 181 + ], + "boundingBox": "block" + }, + { + "id": 311, + "name": "potted_oxeye_daisy", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6528, + "minStateId": 6528, + "maxStateId": 6528, + "states": [], + "drops": [ + 946, + 182 + ], + "boundingBox": "block" + }, + { + "id": 312, + "name": "potted_cornflower", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6529, + "minStateId": 6529, + "maxStateId": 6529, + "states": [], + "drops": [ + 946, + 183 + ], + "boundingBox": "block" + }, + { + "id": 313, + "name": "potted_lily_of_the_valley", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6530, + "minStateId": 6530, + "maxStateId": 6530, + "states": [], + "drops": [ + 946, + 184 + ], + "boundingBox": "block" + }, + { + "id": 314, + "name": "potted_wither_rose", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6531, + "minStateId": 6531, + "maxStateId": 6531, + "states": [], + "drops": [ + 946, + 185 + ], + "boundingBox": "block" + }, + { + "id": 315, + "name": "potted_red_mushroom", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6532, + "minStateId": 6532, + "maxStateId": 6532, + "states": [], + "drops": [ + 946, + 188 + ], + "boundingBox": "block" + }, + { + "id": 316, + "name": "potted_brown_mushroom", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6533, + "minStateId": 6533, + "maxStateId": 6533, + "states": [], + "drops": [ + 946, + 187 + ], + "boundingBox": "block" + }, + { + "id": 317, + "name": "potted_dead_bush", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6534, + "minStateId": 6534, + "maxStateId": 6534, + "states": [], + "drops": [ + 946, + 154 + ], + "boundingBox": "block" + }, + { + "id": 318, + "name": "potted_cactus", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6535, + "minStateId": 6535, + "maxStateId": 6535, + "states": [], + "drops": [ + 946, + 254 + ], + "boundingBox": "block" + }, + { + "id": 319, + "name": "carrots", + "displayName": "Carrot", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6536, + "minStateId": 6536, + "maxStateId": 6543, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 947 + ], + "boundingBox": "empty" + }, + { + "id": 320, + "name": "potatoes", + "displayName": "Potato", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6544, + "minStateId": 6544, + "maxStateId": 6551, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 948 + ], + "boundingBox": "empty" + }, + { + "id": 321, + "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": 6561, + "minStateId": 6552, + "maxStateId": 6575, + "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": [ + 611 + ], + "boundingBox": "empty" + }, + { + "id": 322, + "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": 6585, + "minStateId": 6576, + "maxStateId": 6599, + "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": [ + 612 + ], + "boundingBox": "empty" + }, + { + "id": 323, + "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": 6609, + "minStateId": 6600, + "maxStateId": 6623, + "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": [ + 613 + ], + "boundingBox": "empty" + }, + { + "id": 324, + "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": 6633, + "minStateId": 6624, + "maxStateId": 6647, + "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": [ + 614 + ], + "boundingBox": "empty" + }, + { + "id": 325, + "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": 6657, + "minStateId": 6648, + "maxStateId": 6671, + "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": [ + 615 + ], + "boundingBox": "empty" + }, + { + "id": 326, + "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": 6681, + "minStateId": 6672, + "maxStateId": 6695, + "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": [ + 616 + ], + "boundingBox": "empty" + }, + { + "id": 327, + "name": "skeleton_skull", + "displayName": "Skeleton Skull", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6696, + "minStateId": 6696, + "maxStateId": 6711, + "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": [ + 953 + ], + "boundingBox": "block" + }, + { + "id": 328, + "name": "skeleton_wall_skull", + "displayName": "Skeleton Skull", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6712, + "minStateId": 6712, + "maxStateId": 6715, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 953 + ], + "boundingBox": "block" + }, + { + "id": 329, + "name": "wither_skeleton_skull", + "displayName": "Wither Skeleton Skull", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6716, + "minStateId": 6716, + "maxStateId": 6731, + "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": [ + 954 + ], + "boundingBox": "block" + }, + { + "id": 330, + "name": "wither_skeleton_wall_skull", + "displayName": "Wither Skeleton Skull", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6732, + "minStateId": 6732, + "maxStateId": 6735, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 954 + ], + "boundingBox": "block" + }, + { + "id": 331, + "name": "zombie_head", + "displayName": "Zombie Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6736, + "minStateId": 6736, + "maxStateId": 6751, + "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": [ + 956 + ], + "boundingBox": "block" + }, + { + "id": 332, + "name": "zombie_wall_head", + "displayName": "Zombie Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6752, + "minStateId": 6752, + "maxStateId": 6755, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 956 + ], + "boundingBox": "block" + }, + { + "id": 333, + "name": "player_head", + "displayName": "Player Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6756, + "minStateId": 6756, + "maxStateId": 6771, + "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": [ + 955 + ], + "boundingBox": "block" + }, + { + "id": 334, + "name": "player_wall_head", + "displayName": "Player Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6772, + "minStateId": 6772, + "maxStateId": 6775, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 955 + ], + "boundingBox": "block" + }, + { + "id": 335, + "name": "creeper_head", + "displayName": "Creeper Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6776, + "minStateId": 6776, + "maxStateId": 6791, + "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": [ + 957 + ], + "boundingBox": "block" + }, + { + "id": 336, + "name": "creeper_wall_head", + "displayName": "Creeper Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6792, + "minStateId": 6792, + "maxStateId": 6795, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 957 + ], + "boundingBox": "block" + }, + { + "id": 337, + "name": "dragon_head", + "displayName": "Dragon Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6796, + "minStateId": 6796, + "maxStateId": 6811, + "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": [ + 958 + ], + "boundingBox": "block" + }, + { + "id": 338, + "name": "dragon_wall_head", + "displayName": "Dragon Head", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6812, + "minStateId": 6812, + "maxStateId": 6815, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 958 + ], + "boundingBox": "block" + }, + { + "id": 339, + "name": "anvil", + "displayName": "Anvil", + "hardness": 5, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6816, + "minStateId": 6816, + "maxStateId": 6819, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 346 + ], + "boundingBox": "block" + }, + { + "id": 340, + "name": "chipped_anvil", + "displayName": "Chipped Anvil", + "hardness": 5, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6820, + "minStateId": 6820, + "maxStateId": 6823, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 347 + ], + "boundingBox": "block" + }, + { + "id": 341, + "name": "damaged_anvil", + "displayName": "Damaged Anvil", + "hardness": 5, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6824, + "minStateId": 6824, + "maxStateId": 6827, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 348 + ], + "boundingBox": "block" + }, + { + "id": 342, + "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": 6829, + "minStateId": 6828, + "maxStateId": 6851, + "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": [ + 605 + ], + "boundingBox": "block" + }, + { + "id": 343, + "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": 6852, + "minStateId": 6852, + "maxStateId": 6867, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 621 + ], + "boundingBox": "empty" + }, + { + "id": 344, + "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": 6868, + "minStateId": 6868, + "maxStateId": 6883, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 622 + ], + "boundingBox": "empty" + }, + { + "id": 345, + "name": "comparator", + "displayName": "Redstone Comparator", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6885, + "minStateId": 6884, + "maxStateId": 6899, + "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": [ + 589 + ], + "boundingBox": "block" + }, + { + "id": 346, + "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": 6916, + "minStateId": 6900, + "maxStateId": 6931, + "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": [ + 602 + ], + "boundingBox": "block" + }, + { + "id": 347, + "name": "redstone_block", + "displayName": "Block of Redstone", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6932, + "minStateId": 6932, + "maxStateId": 6932, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 587 + ], + "boundingBox": "block" + }, + { + "id": 348, + "name": "nether_quartz_ore", + "displayName": "Nether Quartz Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 6933, + "minStateId": 6933, + "maxStateId": 6933, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 689 + ], + "boundingBox": "block" + }, + { + "id": 349, + "name": "hopper", + "displayName": "Hopper", + "hardness": 3, + "resistance": 4.8, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6934, + "minStateId": 6934, + "maxStateId": 6943, + "states": [ + { + "name": "enabled", + "type": "bool", + "num_values": 2 + }, + { + "name": "facing", + "type": "enum", + "num_values": 5, + "values": [ + "down", + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 595 + ], + "boundingBox": "block" + }, + { + "id": 350, + "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": 6944, + "minStateId": 6944, + "maxStateId": 6944, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 350 + ], + "boundingBox": "block" + }, + { + "id": 351, + "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": 6945, + "minStateId": 6945, + "maxStateId": 6945, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 349 + ], + "boundingBox": "block" + }, + { + "id": 352, + "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": 6947, + "minStateId": 6946, + "maxStateId": 6948, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 352 + ], + "boundingBox": "block" + }, + { + "id": 353, + "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": 6960, + "minStateId": 6949, + "maxStateId": 7028, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 353 + ], + "boundingBox": "block" + }, + { + "id": 354, + "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": 7042, + "minStateId": 7029, + "maxStateId": 7052, + "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": [ + 660 + ], + "boundingBox": "empty" + }, + { + "id": 355, + "name": "dropper", + "displayName": "Dropper", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7054, + "minStateId": 7053, + "maxStateId": 7064, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "triggered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 597 + ], + "boundingBox": "block" + }, + { + "id": 356, + "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": 7065, + "minStateId": 7065, + "maxStateId": 7065, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 354 + ], + "boundingBox": "block" + }, + { + "id": 357, + "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": 7066, + "minStateId": 7066, + "maxStateId": 7066, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 355 + ], + "boundingBox": "block" + }, + { + "id": 358, + "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": 7067, + "minStateId": 7067, + "maxStateId": 7067, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 356 + ], + "boundingBox": "block" + }, + { + "id": 359, + "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": 7068, + "minStateId": 7068, + "maxStateId": 7068, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 357 + ], + "boundingBox": "block" + }, + { + "id": 360, + "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": 7069, + "minStateId": 7069, + "maxStateId": 7069, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 358 + ], + "boundingBox": "block" + }, + { + "id": 361, + "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": 7070, + "minStateId": 7070, + "maxStateId": 7070, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 359 + ], + "boundingBox": "block" + }, + { + "id": 362, + "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": 7071, + "minStateId": 7071, + "maxStateId": 7071, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 360 + ], + "boundingBox": "block" + }, + { + "id": 363, + "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": 7072, + "minStateId": 7072, + "maxStateId": 7072, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 361 + ], + "boundingBox": "block" + }, + { + "id": 364, + "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": 7073, + "minStateId": 7073, + "maxStateId": 7073, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 362 + ], + "boundingBox": "block" + }, + { + "id": 365, + "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": 7074, + "minStateId": 7074, + "maxStateId": 7074, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 363 + ], + "boundingBox": "block" + }, + { + "id": 366, + "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": 7075, + "minStateId": 7075, + "maxStateId": 7075, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 364 + ], + "boundingBox": "block" + }, + { + "id": 367, + "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": 7076, + "minStateId": 7076, + "maxStateId": 7076, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 365 + ], + "boundingBox": "block" + }, + { + "id": 368, + "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": 7077, + "minStateId": 7077, + "maxStateId": 7077, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 366 + ], + "boundingBox": "block" + }, + { + "id": 369, + "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": 7078, + "minStateId": 7078, + "maxStateId": 7078, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 367 + ], + "boundingBox": "block" + }, + { + "id": 370, + "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": 7079, + "minStateId": 7079, + "maxStateId": 7079, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 368 + ], + "boundingBox": "block" + }, + { + "id": 371, + "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": 7080, + "minStateId": 7080, + "maxStateId": 7080, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 369 + ], + "boundingBox": "block" + }, + { + "id": 372, + "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": 7112, + "minStateId": 7081, + "maxStateId": 7112, + "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": 373, + "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": 7144, + "minStateId": 7113, + "maxStateId": 7144, + "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": 374, + "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": 7176, + "minStateId": 7145, + "maxStateId": 7176, + "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": 375, + "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": 7208, + "minStateId": 7177, + "maxStateId": 7208, + "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": 376, + "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": 7240, + "minStateId": 7209, + "maxStateId": 7240, + "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": 377, + "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": 7272, + "minStateId": 7241, + "maxStateId": 7272, + "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": 378, + "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": 7304, + "minStateId": 7273, + "maxStateId": 7304, + "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": 379, + "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": 7336, + "minStateId": 7305, + "maxStateId": 7336, + "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": 380, + "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": 7368, + "minStateId": 7337, + "maxStateId": 7368, + "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": 381, + "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": 7400, + "minStateId": 7369, + "maxStateId": 7400, + "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": 382, + "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": 7432, + "minStateId": 7401, + "maxStateId": 7432, + "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": 383, + "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": 7464, + "minStateId": 7433, + "maxStateId": 7464, + "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": 384, + "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": 7496, + "minStateId": 7465, + "maxStateId": 7496, + "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": 385, + "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": 7528, + "minStateId": 7497, + "maxStateId": 7528, + "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": 386, + "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": 7560, + "minStateId": 7529, + "maxStateId": 7560, + "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": 387, + "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": 7592, + "minStateId": 7561, + "maxStateId": 7592, + "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": 388, + "name": "acacia_stairs", + "displayName": "Acacia Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7604, + "minStateId": 7593, + "maxStateId": 7672, + "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": [ + 391 + ], + "boundingBox": "block" + }, + { + "id": 389, + "name": "dark_oak_stairs", + "displayName": "Dark Oak Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7684, + "minStateId": 7673, + "maxStateId": 7752, + "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": [ + 392 + ], + "boundingBox": "block" + }, + { + "id": 390, + "name": "slime_block", + "displayName": "Slime Block", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 7753, + "minStateId": 7753, + "maxStateId": 7753, + "states": [], + "drops": [ + 592 + ], + "boundingBox": "block" + }, + { + "id": 391, + "name": "barrier", + "displayName": "Barrier", + "hardness": 0, + "resistance": 3600000.8, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7754, + "minStateId": 7754, + "maxStateId": 7754, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 392, + "name": "light", + "displayName": "Light", + "hardness": 0, + "resistance": 3600000.8, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 7786, + "minStateId": 7755, + "maxStateId": 7786, + "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": 393, + "name": "iron_trapdoor", + "displayName": "Iron Trapdoor", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7802, + "minStateId": 7787, + "maxStateId": 7850, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 640 + ], + "boundingBox": "block" + }, + { + "id": 394, + "name": "prismarine", + "displayName": "Prismarine", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7851, + "minStateId": 7851, + "maxStateId": 7851, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 432 + ], + "boundingBox": "block" + }, + { + "id": 395, + "name": "prismarine_bricks", + "displayName": "Prismarine Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7852, + "minStateId": 7852, + "maxStateId": 7852, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 433 + ], + "boundingBox": "block" + }, + { + "id": 396, + "name": "dark_prismarine", + "displayName": "Dark Prismarine", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 7853, + "minStateId": 7853, + "maxStateId": 7853, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 434 + ], + "boundingBox": "block" + }, + { + "id": 397, + "name": "prismarine_stairs", + "displayName": "Prismarine Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7865, + "minStateId": 7854, + "maxStateId": 7933, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 435 + ], + "boundingBox": "block" + }, + { + "id": 398, + "name": "prismarine_brick_stairs", + "displayName": "Prismarine Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7945, + "minStateId": 7934, + "maxStateId": 8013, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 436 + ], + "boundingBox": "block" + }, + { + "id": 399, + "name": "dark_prismarine_stairs", + "displayName": "Dark Prismarine Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8025, + "minStateId": 8014, + "maxStateId": 8093, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 437 + ], + "boundingBox": "block" + }, + { + "id": 400, + "name": "prismarine_slab", + "displayName": "Prismarine Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8097, + "minStateId": 8094, + "maxStateId": 8099, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 225 + ], + "boundingBox": "block" + }, + { + "id": 401, + "name": "prismarine_brick_slab", + "displayName": "Prismarine Brick Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8103, + "minStateId": 8100, + "maxStateId": 8105, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 226 + ], + "boundingBox": "block" + }, + { + "id": 402, + "name": "dark_prismarine_slab", + "displayName": "Dark Prismarine Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8109, + "minStateId": 8106, + "maxStateId": 8111, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 227 + ], + "boundingBox": "block" + }, + { + "id": 403, + "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": 8112, + "minStateId": 8112, + "maxStateId": 8112, + "states": [], + "drops": [ + 966 + ], + "boundingBox": "block" + }, + { + "id": 404, + "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": 8114, + "minStateId": 8113, + "maxStateId": 8115, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 372 + ], + "boundingBox": "block" + }, + { + "id": 405, + "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": 8116, + "minStateId": 8116, + "maxStateId": 8116, + "states": [], + "drops": [ + 373 + ], + "boundingBox": "block" + }, + { + "id": 406, + "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": 8117, + "minStateId": 8117, + "maxStateId": 8117, + "states": [], + "drops": [ + 374 + ], + "boundingBox": "block" + }, + { + "id": 407, + "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": 8118, + "minStateId": 8118, + "maxStateId": 8118, + "states": [], + "drops": [ + 375 + ], + "boundingBox": "block" + }, + { + "id": 408, + "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": 8119, + "minStateId": 8119, + "maxStateId": 8119, + "states": [], + "drops": [ + 376 + ], + "boundingBox": "block" + }, + { + "id": 409, + "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": 8120, + "minStateId": 8120, + "maxStateId": 8120, + "states": [], + "drops": [ + 377 + ], + "boundingBox": "block" + }, + { + "id": 410, + "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": 8121, + "minStateId": 8121, + "maxStateId": 8121, + "states": [], + "drops": [ + 378 + ], + "boundingBox": "block" + }, + { + "id": 411, + "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": 8122, + "minStateId": 8122, + "maxStateId": 8122, + "states": [], + "drops": [ + 379 + ], + "boundingBox": "block" + }, + { + "id": 412, + "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": 8123, + "minStateId": 8123, + "maxStateId": 8123, + "states": [], + "drops": [ + 380 + ], + "boundingBox": "block" + }, + { + "id": 413, + "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": 8124, + "minStateId": 8124, + "maxStateId": 8124, + "states": [], + "drops": [ + 381 + ], + "boundingBox": "block" + }, + { + "id": 414, + "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": 8125, + "minStateId": 8125, + "maxStateId": 8125, + "states": [], + "drops": [ + 382 + ], + "boundingBox": "block" + }, + { + "id": 415, + "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": 8126, + "minStateId": 8126, + "maxStateId": 8126, + "states": [], + "drops": [ + 383 + ], + "boundingBox": "block" + }, + { + "id": 416, + "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": 8127, + "minStateId": 8127, + "maxStateId": 8127, + "states": [], + "drops": [ + 384 + ], + "boundingBox": "block" + }, + { + "id": 417, + "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": 8128, + "minStateId": 8128, + "maxStateId": 8128, + "states": [], + "drops": [ + 385 + ], + "boundingBox": "block" + }, + { + "id": 418, + "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": 8129, + "minStateId": 8129, + "maxStateId": 8129, + "states": [], + "drops": [ + 386 + ], + "boundingBox": "block" + }, + { + "id": 419, + "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": 8130, + "minStateId": 8130, + "maxStateId": 8130, + "states": [], + "drops": [ + 387 + ], + "boundingBox": "block" + }, + { + "id": 420, + "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": 8131, + "minStateId": 8131, + "maxStateId": 8131, + "states": [], + "drops": [ + 388 + ], + "boundingBox": "block" + }, + { + "id": 421, + "name": "terracotta", + "displayName": "Terracotta", + "hardness": 1.25, + "resistance": 4.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8132, + "minStateId": 8132, + "maxStateId": 8132, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 389 + ], + "boundingBox": "block" + }, + { + "id": 422, + "name": "coal_block", + "displayName": "Block of Coal", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8133, + "minStateId": 8133, + "maxStateId": 8133, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 59 + ], + "boundingBox": "block" + }, + { + "id": 423, + "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": 8134, + "minStateId": 8134, + "maxStateId": 8134, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 424, + "name": "sunflower", + "displayName": "Sunflower", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8136, + "minStateId": 8135, + "maxStateId": 8136, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 394 + ], + "boundingBox": "empty" + }, + { + "id": 425, + "name": "lilac", + "displayName": "Lilac", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8138, + "minStateId": 8137, + "maxStateId": 8138, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 395 + ], + "boundingBox": "empty" + }, + { + "id": 426, + "name": "rose_bush", + "displayName": "Rose Bush", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8140, + "minStateId": 8139, + "maxStateId": 8140, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 396 + ], + "boundingBox": "empty" + }, + { + "id": 427, + "name": "peony", + "displayName": "Peony", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8142, + "minStateId": 8141, + "maxStateId": 8142, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 397 + ], + "boundingBox": "empty" + }, + { + "id": 428, + "name": "tall_grass", + "displayName": "Tall Grass", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8144, + "minStateId": 8143, + "maxStateId": 8144, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 429, + "name": "large_fern", + "displayName": "Large Fern", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8146, + "minStateId": 8145, + "maxStateId": 8146, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 430, + "name": "white_banner", + "displayName": "White Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8147, + "minStateId": 8147, + "maxStateId": 8162, + "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": [ + 982 + ], + "boundingBox": "empty" + }, + { + "id": 431, + "name": "orange_banner", + "displayName": "Orange Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8163, + "minStateId": 8163, + "maxStateId": 8178, + "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": [ + 983 + ], + "boundingBox": "empty" + }, + { + "id": 432, + "name": "magenta_banner", + "displayName": "Magenta Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8179, + "minStateId": 8179, + "maxStateId": 8194, + "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": [ + 984 + ], + "boundingBox": "empty" + }, + { + "id": 433, + "name": "light_blue_banner", + "displayName": "Light Blue Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8195, + "minStateId": 8195, + "maxStateId": 8210, + "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": [ + 985 + ], + "boundingBox": "empty" + }, + { + "id": 434, + "name": "yellow_banner", + "displayName": "Yellow Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8211, + "minStateId": 8211, + "maxStateId": 8226, + "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": [ + 986 + ], + "boundingBox": "empty" + }, + { + "id": 435, + "name": "lime_banner", + "displayName": "Lime Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8227, + "minStateId": 8227, + "maxStateId": 8242, + "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": [ + 987 + ], + "boundingBox": "empty" + }, + { + "id": 436, + "name": "pink_banner", + "displayName": "Pink Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8243, + "minStateId": 8243, + "maxStateId": 8258, + "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": [ + 988 + ], + "boundingBox": "empty" + }, + { + "id": 437, + "name": "gray_banner", + "displayName": "Gray Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8259, + "minStateId": 8259, + "maxStateId": 8274, + "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": [ + 989 + ], + "boundingBox": "empty" + }, + { + "id": 438, + "name": "light_gray_banner", + "displayName": "Light Gray Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8275, + "minStateId": 8275, + "maxStateId": 8290, + "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": [ + 990 + ], + "boundingBox": "empty" + }, + { + "id": 439, + "name": "cyan_banner", + "displayName": "Cyan Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8291, + "minStateId": 8291, + "maxStateId": 8306, + "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": [ + 991 + ], + "boundingBox": "empty" + }, + { + "id": 440, + "name": "purple_banner", + "displayName": "Purple Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8307, + "minStateId": 8307, + "maxStateId": 8322, + "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": [ + 992 + ], + "boundingBox": "empty" + }, + { + "id": 441, + "name": "blue_banner", + "displayName": "Blue Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8323, + "minStateId": 8323, + "maxStateId": 8338, + "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": [ + 993 + ], + "boundingBox": "empty" + }, + { + "id": 442, + "name": "brown_banner", + "displayName": "Brown Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8339, + "minStateId": 8339, + "maxStateId": 8354, + "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": [ + 994 + ], + "boundingBox": "empty" + }, + { + "id": 443, + "name": "green_banner", + "displayName": "Green Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8355, + "minStateId": 8355, + "maxStateId": 8370, + "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": [ + 995 + ], + "boundingBox": "empty" + }, + { + "id": 444, + "name": "red_banner", + "displayName": "Red Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8371, + "minStateId": 8371, + "maxStateId": 8386, + "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": "empty" + }, + { + "id": 445, + "name": "black_banner", + "displayName": "Black Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8387, + "minStateId": 8387, + "maxStateId": 8402, + "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": "empty" + }, + { + "id": 446, + "name": "white_wall_banner", + "displayName": "White Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8403, + "minStateId": 8403, + "maxStateId": 8406, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 982 + ], + "boundingBox": "empty" + }, + { + "id": 447, + "name": "orange_wall_banner", + "displayName": "Orange Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8407, + "minStateId": 8407, + "maxStateId": 8410, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 983 + ], + "boundingBox": "empty" + }, + { + "id": 448, + "name": "magenta_wall_banner", + "displayName": "Magenta Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8411, + "minStateId": 8411, + "maxStateId": 8414, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 984 + ], + "boundingBox": "empty" + }, + { + "id": 449, + "name": "light_blue_wall_banner", + "displayName": "Light Blue Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8415, + "minStateId": 8415, + "maxStateId": 8418, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 985 + ], + "boundingBox": "empty" + }, + { + "id": 450, + "name": "yellow_wall_banner", + "displayName": "Yellow Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8419, + "minStateId": 8419, + "maxStateId": 8422, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 986 + ], + "boundingBox": "empty" + }, + { + "id": 451, + "name": "lime_wall_banner", + "displayName": "Lime Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8423, + "minStateId": 8423, + "maxStateId": 8426, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 987 + ], + "boundingBox": "empty" + }, + { + "id": 452, + "name": "pink_wall_banner", + "displayName": "Pink Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8427, + "minStateId": 8427, + "maxStateId": 8430, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 988 + ], + "boundingBox": "empty" + }, + { + "id": 453, + "name": "gray_wall_banner", + "displayName": "Gray Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8431, + "minStateId": 8431, + "maxStateId": 8434, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 989 + ], + "boundingBox": "empty" + }, + { + "id": 454, + "name": "light_gray_wall_banner", + "displayName": "Light Gray Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8435, + "minStateId": 8435, + "maxStateId": 8438, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 990 + ], + "boundingBox": "empty" + }, + { + "id": 455, + "name": "cyan_wall_banner", + "displayName": "Cyan Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8439, + "minStateId": 8439, + "maxStateId": 8442, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 991 + ], + "boundingBox": "empty" + }, + { + "id": 456, + "name": "purple_wall_banner", + "displayName": "Purple Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8443, + "minStateId": 8443, + "maxStateId": 8446, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 992 + ], + "boundingBox": "empty" + }, + { + "id": 457, + "name": "blue_wall_banner", + "displayName": "Blue Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8447, + "minStateId": 8447, + "maxStateId": 8450, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 993 + ], + "boundingBox": "empty" + }, + { + "id": 458, + "name": "brown_wall_banner", + "displayName": "Brown Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8451, + "minStateId": 8451, + "maxStateId": 8454, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 994 + ], + "boundingBox": "empty" + }, + { + "id": 459, + "name": "green_wall_banner", + "displayName": "Green Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8455, + "minStateId": 8455, + "maxStateId": 8458, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 995 + ], + "boundingBox": "empty" + }, + { + "id": 460, + "name": "red_wall_banner", + "displayName": "Red Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8459, + "minStateId": 8459, + "maxStateId": 8462, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 996 + ], + "boundingBox": "empty" + }, + { + "id": 461, + "name": "black_wall_banner", + "displayName": "Black Banner", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8463, + "minStateId": 8463, + "maxStateId": 8466, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 997 + ], + "boundingBox": "empty" + }, + { + "id": 462, + "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": 8467, + "minStateId": 8467, + "maxStateId": 8467, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 439 + ], + "boundingBox": "block" + }, + { + "id": 463, + "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": 8468, + "minStateId": 8468, + "maxStateId": 8468, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 440 + ], + "boundingBox": "block" + }, + { + "id": 464, + "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": 8469, + "minStateId": 8469, + "maxStateId": 8469, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 441 + ], + "boundingBox": "block" + }, + { + "id": 465, + "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": 8481, + "minStateId": 8470, + "maxStateId": 8549, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 442 + ], + "boundingBox": "block" + }, + { + "id": 466, + "name": "oak_slab", + "displayName": "Oak Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8553, + "minStateId": 8550, + "maxStateId": 8555, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 204 + ], + "boundingBox": "block" + }, + { + "id": 467, + "name": "spruce_slab", + "displayName": "Spruce Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8559, + "minStateId": 8556, + "maxStateId": 8561, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 205 + ], + "boundingBox": "block" + }, + { + "id": 468, + "name": "birch_slab", + "displayName": "Birch Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8565, + "minStateId": 8562, + "maxStateId": 8567, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 206 + ], + "boundingBox": "block" + }, + { + "id": 469, + "name": "jungle_slab", + "displayName": "Jungle Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8571, + "minStateId": 8568, + "maxStateId": 8573, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 207 + ], + "boundingBox": "block" + }, + { + "id": 470, + "name": "acacia_slab", + "displayName": "Acacia Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8577, + "minStateId": 8574, + "maxStateId": 8579, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 208 + ], + "boundingBox": "block" + }, + { + "id": 471, + "name": "dark_oak_slab", + "displayName": "Dark Oak Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8583, + "minStateId": 8580, + "maxStateId": 8585, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 209 + ], + "boundingBox": "block" + }, + { + "id": 472, + "name": "stone_slab", + "displayName": "Stone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8589, + "minStateId": 8586, + "maxStateId": 8591, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 212 + ], + "boundingBox": "block" + }, + { + "id": 473, + "name": "smooth_stone_slab", + "displayName": "Smooth Stone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8595, + "minStateId": 8592, + "maxStateId": 8597, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 213 + ], + "boundingBox": "block" + }, + { + "id": 474, + "name": "sandstone_slab", + "displayName": "Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8601, + "minStateId": 8598, + "maxStateId": 8603, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 214 + ], + "boundingBox": "block" + }, + { + "id": 475, + "name": "cut_sandstone_slab", + "displayName": "Cut Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8607, + "minStateId": 8604, + "maxStateId": 8609, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 215 + ], + "boundingBox": "block" + }, + { + "id": 476, + "name": "petrified_oak_slab", + "displayName": "Petrified Oak Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8613, + "minStateId": 8610, + "maxStateId": 8615, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 216 + ], + "boundingBox": "block" + }, + { + "id": 477, + "name": "cobblestone_slab", + "displayName": "Cobblestone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8619, + "minStateId": 8616, + "maxStateId": 8621, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 217 + ], + "boundingBox": "block" + }, + { + "id": 478, + "name": "brick_slab", + "displayName": "Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8625, + "minStateId": 8622, + "maxStateId": 8627, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 218 + ], + "boundingBox": "block" + }, + { + "id": 479, + "name": "stone_brick_slab", + "displayName": "Stone Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8631, + "minStateId": 8628, + "maxStateId": 8633, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 219 + ], + "boundingBox": "block" + }, + { + "id": 480, + "name": "nether_brick_slab", + "displayName": "Nether Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8637, + "minStateId": 8634, + "maxStateId": 8639, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 220 + ], + "boundingBox": "block" + }, + { + "id": 481, + "name": "quartz_slab", + "displayName": "Quartz Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8643, + "minStateId": 8640, + "maxStateId": 8645, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 221 + ], + "boundingBox": "block" + }, + { + "id": 482, + "name": "red_sandstone_slab", + "displayName": "Red Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8649, + "minStateId": 8646, + "maxStateId": 8651, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 222 + ], + "boundingBox": "block" + }, + { + "id": 483, + "name": "cut_red_sandstone_slab", + "displayName": "Cut Red Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8655, + "minStateId": 8652, + "maxStateId": 8657, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 223 + ], + "boundingBox": "block" + }, + { + "id": 484, + "name": "purpur_slab", + "displayName": "Purpur Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8661, + "minStateId": 8658, + "maxStateId": 8663, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 224 + ], + "boundingBox": "block" + }, + { + "id": 485, + "name": "smooth_stone", + "displayName": "Smooth Stone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8664, + "minStateId": 8664, + "maxStateId": 8664, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 231 + ], + "boundingBox": "block" + }, + { + "id": 486, + "name": "smooth_sandstone", + "displayName": "Smooth Sandstone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8665, + "minStateId": 8665, + "maxStateId": 8665, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 230 + ], + "boundingBox": "block" + }, + { + "id": 487, + "name": "smooth_quartz", + "displayName": "Smooth Quartz Block", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8666, + "minStateId": 8666, + "maxStateId": 8666, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 228 + ], + "boundingBox": "block" + }, + { + "id": 488, + "name": "smooth_red_sandstone", + "displayName": "Smooth Red Sandstone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 8667, + "minStateId": 8667, + "maxStateId": 8667, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 229 + ], + "boundingBox": "block" + }, + { + "id": 489, + "name": "spruce_fence_gate", + "displayName": "Spruce Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8675, + "minStateId": 8668, + "maxStateId": 8699, + "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": [ + 650 + ], + "boundingBox": "block" + }, + { + "id": 490, + "name": "birch_fence_gate", + "displayName": "Birch Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8707, + "minStateId": 8700, + "maxStateId": 8731, + "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": [ + 651 + ], + "boundingBox": "block" + }, + { + "id": 491, + "name": "jungle_fence_gate", + "displayName": "Jungle Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8739, + "minStateId": 8732, + "maxStateId": 8763, + "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": [ + 652 + ], + "boundingBox": "block" + }, + { + "id": 492, + "name": "acacia_fence_gate", + "displayName": "Acacia Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8771, + "minStateId": 8764, + "maxStateId": 8795, + "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": [ + 653 + ], + "boundingBox": "block" + }, + { + "id": 493, + "name": "dark_oak_fence_gate", + "displayName": "Dark Oak Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8803, + "minStateId": 8796, + "maxStateId": 8827, + "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": [ + 654 + ], + "boundingBox": "block" + }, + { + "id": 494, + "name": "spruce_fence", + "displayName": "Spruce Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8859, + "minStateId": 8828, + "maxStateId": 8859, + "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": [ + 258 + ], + "boundingBox": "block" + }, + { + "id": 495, + "name": "birch_fence", + "displayName": "Birch Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8891, + "minStateId": 8860, + "maxStateId": 8891, + "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": [ + 259 + ], + "boundingBox": "block" + }, + { + "id": 496, + "name": "jungle_fence", + "displayName": "Jungle Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8923, + "minStateId": 8892, + "maxStateId": 8923, + "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": [ + 260 + ], + "boundingBox": "block" + }, + { + "id": 497, + "name": "acacia_fence", + "displayName": "Acacia Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8955, + "minStateId": 8924, + "maxStateId": 8955, + "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": [ + 261 + ], + "boundingBox": "block" + }, + { + "id": 498, + "name": "dark_oak_fence", + "displayName": "Dark Oak Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8987, + "minStateId": 8956, + "maxStateId": 8987, + "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": [ + 262 + ], + "boundingBox": "block" + }, + { + "id": 499, + "name": "spruce_door", + "displayName": "Spruce Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8999, + "minStateId": 8988, + "maxStateId": 9051, + "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": [ + 633 + ], + "boundingBox": "block" + }, + { + "id": 500, + "name": "birch_door", + "displayName": "Birch Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9063, + "minStateId": 9052, + "maxStateId": 9115, + "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": [ + 634 + ], + "boundingBox": "block" + }, + { + "id": 501, + "name": "jungle_door", + "displayName": "Jungle Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9127, + "minStateId": 9116, + "maxStateId": 9179, + "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": [ + 635 + ], + "boundingBox": "block" + }, + { + "id": 502, + "name": "acacia_door", + "displayName": "Acacia Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9191, + "minStateId": 9180, + "maxStateId": 9243, + "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": [ + 636 + ], + "boundingBox": "block" + }, + { + "id": 503, + "name": "dark_oak_door", + "displayName": "Dark Oak Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9255, + "minStateId": 9244, + "maxStateId": 9307, + "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": [ + 637 + ], + "boundingBox": "block" + }, + { + "id": 504, + "name": "end_rod", + "displayName": "End Rod", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 14, + "filterLight": 0, + "defaultState": 9312, + "minStateId": 9308, + "maxStateId": 9313, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 237 + ], + "boundingBox": "block" + }, + { + "id": 505, + "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": 9377, + "minStateId": 9314, + "maxStateId": 9377, + "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": [ + 999 + ], + "boundingBox": "block" + }, + { + "id": 506, + "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": 9378, + "minStateId": 9378, + "maxStateId": 9383, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 6, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 507, + "name": "purpur_block", + "displayName": "Purpur Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9384, + "minStateId": 9384, + "maxStateId": 9384, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 240 + ], + "boundingBox": "block" + }, + { + "id": 508, + "name": "purpur_pillar", + "displayName": "Purpur Pillar", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9386, + "minStateId": 9385, + "maxStateId": 9387, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 241 + ], + "boundingBox": "block" + }, + { + "id": 509, + "name": "purpur_stairs", + "displayName": "Purpur Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9399, + "minStateId": 9388, + "maxStateId": 9467, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 242 + ], + "boundingBox": "block" + }, + { + "id": 510, + "name": "end_stone_bricks", + "displayName": "End Stone Bricks", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9468, + "minStateId": 9468, + "maxStateId": 9468, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 313 + ], + "boundingBox": "block" + }, + { + "id": 511, + "name": "beetroots", + "displayName": "Beetroot Seeds", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9469, + "minStateId": 9469, + "maxStateId": 9472, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [ + 1002 + ], + "boundingBox": "empty" + }, + { + "id": 512, + "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": 9473, + "minStateId": 9473, + "maxStateId": 9473, + "states": [], + "drops": [ + 15 + ], + "boundingBox": "block" + }, + { + "id": 513, + "name": "end_gateway", + "displayName": "Air", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 9474, + "minStateId": 9474, + "maxStateId": 9474, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 514, + "name": "repeating_command_block", + "displayName": "Repeating Command Block", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9481, + "minStateId": 9475, + "maxStateId": 9486, + "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": 515, + "name": "chain_command_block", + "displayName": "Chain Command Block", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9493, + "minStateId": 9487, + "maxStateId": 9498, + "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": 516, + "name": "frosted_ice", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9499, + "minStateId": 9499, + "maxStateId": 9502, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 517, + "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": 9503, + "minStateId": 9503, + "maxStateId": 9503, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 445 + ], + "boundingBox": "block" + }, + { + "id": 518, + "name": "nether_wart_block", + "displayName": "Nether Wart Block", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9504, + "minStateId": 9504, + "maxStateId": 9504, + "states": [], + "drops": [ + 446 + ], + "boundingBox": "block" + }, + { + "id": 519, + "name": "red_nether_bricks", + "displayName": "Red Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9505, + "minStateId": 9505, + "maxStateId": 9505, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 448 + ], + "boundingBox": "block" + }, + { + "id": 520, + "name": "bone_block", + "displayName": "Bone Block", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9507, + "minStateId": 9506, + "maxStateId": 9508, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 449 + ], + "boundingBox": "block" + }, + { + "id": 521, + "name": "structure_void", + "displayName": "Structure Void", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9509, + "minStateId": 9509, + "maxStateId": 9509, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 522, + "name": "observer", + "displayName": "Observer", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9515, + "minStateId": 9510, + "maxStateId": 9521, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 594 + ], + "boundingBox": "block" + }, + { + "id": 523, + "name": "shulker_box", + "displayName": "Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9526, + "minStateId": 9522, + "maxStateId": 9527, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 451 + ], + "boundingBox": "block" + }, + { + "id": 524, + "name": "white_shulker_box", + "displayName": "White Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9532, + "minStateId": 9528, + "maxStateId": 9533, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 452 + ], + "boundingBox": "block" + }, + { + "id": 525, + "name": "orange_shulker_box", + "displayName": "Orange Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9538, + "minStateId": 9534, + "maxStateId": 9539, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 453 + ], + "boundingBox": "block" + }, + { + "id": 526, + "name": "magenta_shulker_box", + "displayName": "Magenta Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9544, + "minStateId": 9540, + "maxStateId": 9545, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 454 + ], + "boundingBox": "block" + }, + { + "id": 527, + "name": "light_blue_shulker_box", + "displayName": "Light Blue Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9550, + "minStateId": 9546, + "maxStateId": 9551, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 455 + ], + "boundingBox": "block" + }, + { + "id": 528, + "name": "yellow_shulker_box", + "displayName": "Yellow Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9556, + "minStateId": 9552, + "maxStateId": 9557, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 456 + ], + "boundingBox": "block" + }, + { + "id": 529, + "name": "lime_shulker_box", + "displayName": "Lime Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9562, + "minStateId": 9558, + "maxStateId": 9563, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 457 + ], + "boundingBox": "block" + }, + { + "id": 530, + "name": "pink_shulker_box", + "displayName": "Pink Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9568, + "minStateId": 9564, + "maxStateId": 9569, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 458 + ], + "boundingBox": "block" + }, + { + "id": 531, + "name": "gray_shulker_box", + "displayName": "Gray Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9574, + "minStateId": 9570, + "maxStateId": 9575, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 459 + ], + "boundingBox": "block" + }, + { + "id": 532, + "name": "light_gray_shulker_box", + "displayName": "Light Gray Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9580, + "minStateId": 9576, + "maxStateId": 9581, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 460 + ], + "boundingBox": "block" + }, + { + "id": 533, + "name": "cyan_shulker_box", + "displayName": "Cyan Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9586, + "minStateId": 9582, + "maxStateId": 9587, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 461 + ], + "boundingBox": "block" + }, + { + "id": 534, + "name": "purple_shulker_box", + "displayName": "Purple Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9592, + "minStateId": 9588, + "maxStateId": 9593, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 462 + ], + "boundingBox": "block" + }, + { + "id": 535, + "name": "blue_shulker_box", + "displayName": "Blue Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9598, + "minStateId": 9594, + "maxStateId": 9599, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 463 + ], + "boundingBox": "block" + }, + { + "id": 536, + "name": "brown_shulker_box", + "displayName": "Brown Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9604, + "minStateId": 9600, + "maxStateId": 9605, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 464 + ], + "boundingBox": "block" + }, + { + "id": 537, + "name": "green_shulker_box", + "displayName": "Green Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9610, + "minStateId": 9606, + "maxStateId": 9611, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 465 + ], + "boundingBox": "block" + }, + { + "id": 538, + "name": "red_shulker_box", + "displayName": "Red Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9616, + "minStateId": 9612, + "maxStateId": 9617, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 466 + ], + "boundingBox": "block" + }, + { + "id": 539, + "name": "black_shulker_box", + "displayName": "Black Shulker Box", + "hardness": 2, + "resistance": 2, + "stackSize": 1, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9622, + "minStateId": 9618, + "maxStateId": 9623, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "drops": [ + 467 + ], + "boundingBox": "block" + }, + { + "id": 540, + "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": 9624, + "minStateId": 9624, + "maxStateId": 9627, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 468 + ], + "boundingBox": "block" + }, + { + "id": 541, + "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": 9628, + "minStateId": 9628, + "maxStateId": 9631, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 469 + ], + "boundingBox": "block" + }, + { + "id": 542, + "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": 9632, + "minStateId": 9632, + "maxStateId": 9635, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 470 + ], + "boundingBox": "block" + }, + { + "id": 543, + "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": 9636, + "minStateId": 9636, + "maxStateId": 9639, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 471 + ], + "boundingBox": "block" + }, + { + "id": 544, + "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": 9640, + "minStateId": 9640, + "maxStateId": 9643, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 472 + ], + "boundingBox": "block" + }, + { + "id": 545, + "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": 9644, + "minStateId": 9644, + "maxStateId": 9647, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 473 + ], + "boundingBox": "block" + }, + { + "id": 546, + "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": 9648, + "minStateId": 9648, + "maxStateId": 9651, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 474 + ], + "boundingBox": "block" + }, + { + "id": 547, + "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": 9652, + "minStateId": 9652, + "maxStateId": 9655, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 475 + ], + "boundingBox": "block" + }, + { + "id": 548, + "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": 9656, + "minStateId": 9656, + "maxStateId": 9659, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 476 + ], + "boundingBox": "block" + }, + { + "id": 549, + "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": 9660, + "minStateId": 9660, + "maxStateId": 9663, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 477 + ], + "boundingBox": "block" + }, + { + "id": 550, + "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": 9664, + "minStateId": 9664, + "maxStateId": 9667, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 478 + ], + "boundingBox": "block" + }, + { + "id": 551, + "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": 9668, + "minStateId": 9668, + "maxStateId": 9671, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 479 + ], + "boundingBox": "block" + }, + { + "id": 552, + "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": 9672, + "minStateId": 9672, + "maxStateId": 9675, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 480 + ], + "boundingBox": "block" + }, + { + "id": 553, + "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": 9676, + "minStateId": 9676, + "maxStateId": 9679, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 481 + ], + "boundingBox": "block" + }, + { + "id": 554, + "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": 9680, + "minStateId": 9680, + "maxStateId": 9683, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 482 + ], + "boundingBox": "block" + }, + { + "id": 555, + "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": 9684, + "minStateId": 9684, + "maxStateId": 9687, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 483 + ], + "boundingBox": "block" + }, + { + "id": 556, + "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": 9688, + "minStateId": 9688, + "maxStateId": 9688, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 484 + ], + "boundingBox": "block" + }, + { + "id": 557, + "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": 9689, + "minStateId": 9689, + "maxStateId": 9689, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 485 + ], + "boundingBox": "block" + }, + { + "id": 558, + "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": 9690, + "minStateId": 9690, + "maxStateId": 9690, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 486 + ], + "boundingBox": "block" + }, + { + "id": 559, + "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": 9691, + "minStateId": 9691, + "maxStateId": 9691, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 487 + ], + "boundingBox": "block" + }, + { + "id": 560, + "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": 9692, + "minStateId": 9692, + "maxStateId": 9692, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 488 + ], + "boundingBox": "block" + }, + { + "id": 561, + "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": 9693, + "minStateId": 9693, + "maxStateId": 9693, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 489 + ], + "boundingBox": "block" + }, + { + "id": 562, + "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": 9694, + "minStateId": 9694, + "maxStateId": 9694, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 490 + ], + "boundingBox": "block" + }, + { + "id": 563, + "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": 9695, + "minStateId": 9695, + "maxStateId": 9695, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 491 + ], + "boundingBox": "block" + }, + { + "id": 564, + "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": 9696, + "minStateId": 9696, + "maxStateId": 9696, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 492 + ], + "boundingBox": "block" + }, + { + "id": 565, + "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": 9697, + "minStateId": 9697, + "maxStateId": 9697, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 493 + ], + "boundingBox": "block" + }, + { + "id": 566, + "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": 9698, + "minStateId": 9698, + "maxStateId": 9698, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 494 + ], + "boundingBox": "block" + }, + { + "id": 567, + "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": 9699, + "minStateId": 9699, + "maxStateId": 9699, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 495 + ], + "boundingBox": "block" + }, + { + "id": 568, + "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": 9700, + "minStateId": 9700, + "maxStateId": 9700, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 496 + ], + "boundingBox": "block" + }, + { + "id": 569, + "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": 9701, + "minStateId": 9701, + "maxStateId": 9701, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 497 + ], + "boundingBox": "block" + }, + { + "id": 570, + "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": 9702, + "minStateId": 9702, + "maxStateId": 9702, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 498 + ], + "boundingBox": "block" + }, + { + "id": 571, + "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": 9703, + "minStateId": 9703, + "maxStateId": 9703, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 499 + ], + "boundingBox": "block" + }, + { + "id": 572, + "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": 9704, + "minStateId": 9704, + "maxStateId": 9704, + "states": [], + "drops": [ + 500 + ], + "boundingBox": "block" + }, + { + "id": 573, + "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": 9705, + "minStateId": 9705, + "maxStateId": 9705, + "states": [], + "drops": [ + 501 + ], + "boundingBox": "block" + }, + { + "id": 574, + "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": 9706, + "minStateId": 9706, + "maxStateId": 9706, + "states": [], + "drops": [ + 502 + ], + "boundingBox": "block" + }, + { + "id": 575, + "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": 9707, + "minStateId": 9707, + "maxStateId": 9707, + "states": [], + "drops": [ + 503 + ], + "boundingBox": "block" + }, + { + "id": 576, + "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": 9708, + "minStateId": 9708, + "maxStateId": 9708, + "states": [], + "drops": [ + 504 + ], + "boundingBox": "block" + }, + { + "id": 577, + "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": 9709, + "minStateId": 9709, + "maxStateId": 9709, + "states": [], + "drops": [ + 505 + ], + "boundingBox": "block" + }, + { + "id": 578, + "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": 9710, + "minStateId": 9710, + "maxStateId": 9710, + "states": [], + "drops": [ + 506 + ], + "boundingBox": "block" + }, + { + "id": 579, + "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": 9711, + "minStateId": 9711, + "maxStateId": 9711, + "states": [], + "drops": [ + 507 + ], + "boundingBox": "block" + }, + { + "id": 580, + "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": 9712, + "minStateId": 9712, + "maxStateId": 9712, + "states": [], + "drops": [ + 508 + ], + "boundingBox": "block" + }, + { + "id": 581, + "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": 9713, + "minStateId": 9713, + "maxStateId": 9713, + "states": [], + "drops": [ + 509 + ], + "boundingBox": "block" + }, + { + "id": 582, + "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": 9714, + "minStateId": 9714, + "maxStateId": 9714, + "states": [], + "drops": [ + 510 + ], + "boundingBox": "block" + }, + { + "id": 583, + "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": 9715, + "minStateId": 9715, + "maxStateId": 9715, + "states": [], + "drops": [ + 511 + ], + "boundingBox": "block" + }, + { + "id": 584, + "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": 9716, + "minStateId": 9716, + "maxStateId": 9716, + "states": [], + "drops": [ + 512 + ], + "boundingBox": "block" + }, + { + "id": 585, + "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": 9717, + "minStateId": 9717, + "maxStateId": 9717, + "states": [], + "drops": [ + 513 + ], + "boundingBox": "block" + }, + { + "id": 586, + "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": 9718, + "minStateId": 9718, + "maxStateId": 9718, + "states": [], + "drops": [ + 514 + ], + "boundingBox": "block" + }, + { + "id": 587, + "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": 9719, + "minStateId": 9719, + "maxStateId": 9719, + "states": [], + "drops": [ + 515 + ], + "boundingBox": "block" + }, + { + "id": 588, + "name": "kelp", + "displayName": "Kelp", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9720, + "minStateId": 9720, + "maxStateId": 9745, + "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": [ + 197 + ], + "boundingBox": "empty" + }, + { + "id": 589, + "name": "kelp_plant", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9746, + "minStateId": 9746, + "maxStateId": 9746, + "states": [], + "drops": [ + 197 + ], + "boundingBox": "empty" + }, + { + "id": 590, + "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": 9747, + "minStateId": 9747, + "maxStateId": 9747, + "states": [], + "drops": [ + 790 + ], + "boundingBox": "block" + }, + { + "id": 591, + "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": 9748, + "minStateId": 9748, + "maxStateId": 9759, + "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": 592, + "name": "dead_tube_coral_block", + "displayName": "Dead Tube Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9760, + "minStateId": 9760, + "maxStateId": 9760, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 517 + ], + "boundingBox": "block" + }, + { + "id": 593, + "name": "dead_brain_coral_block", + "displayName": "Dead Brain Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9761, + "minStateId": 9761, + "maxStateId": 9761, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 518 + ], + "boundingBox": "block" + }, + { + "id": 594, + "name": "dead_bubble_coral_block", + "displayName": "Dead Bubble Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9762, + "minStateId": 9762, + "maxStateId": 9762, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 519 + ], + "boundingBox": "block" + }, + { + "id": 595, + "name": "dead_fire_coral_block", + "displayName": "Dead Fire Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9763, + "minStateId": 9763, + "maxStateId": 9763, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 520 + ], + "boundingBox": "block" + }, + { + "id": 596, + "name": "dead_horn_coral_block", + "displayName": "Dead Horn Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9764, + "minStateId": 9764, + "maxStateId": 9764, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 521 + ], + "boundingBox": "block" + }, + { + "id": 597, + "name": "tube_coral_block", + "displayName": "Tube Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9765, + "minStateId": 9765, + "maxStateId": 9765, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 517 + ], + "boundingBox": "block" + }, + { + "id": 598, + "name": "brain_coral_block", + "displayName": "Brain Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9766, + "minStateId": 9766, + "maxStateId": 9766, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 518 + ], + "boundingBox": "block" + }, + { + "id": 599, + "name": "bubble_coral_block", + "displayName": "Bubble Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9767, + "minStateId": 9767, + "maxStateId": 9767, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 519 + ], + "boundingBox": "block" + }, + { + "id": 600, + "name": "fire_coral_block", + "displayName": "Fire Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9768, + "minStateId": 9768, + "maxStateId": 9768, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 520 + ], + "boundingBox": "block" + }, + { + "id": 601, + "name": "horn_coral_block", + "displayName": "Horn Coral Block", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9769, + "minStateId": 9769, + "maxStateId": 9769, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 521 + ], + "boundingBox": "block" + }, + { + "id": 602, + "name": "dead_tube_coral", + "displayName": "Dead Tube Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9770, + "minStateId": 9770, + "maxStateId": 9771, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 603, + "name": "dead_brain_coral", + "displayName": "Dead Brain Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9772, + "minStateId": 9772, + "maxStateId": 9773, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 604, + "name": "dead_bubble_coral", + "displayName": "Dead Bubble Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9774, + "minStateId": 9774, + "maxStateId": 9775, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 605, + "name": "dead_fire_coral", + "displayName": "Dead Fire Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9776, + "minStateId": 9776, + "maxStateId": 9777, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 606, + "name": "dead_horn_coral", + "displayName": "Dead Horn Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9778, + "minStateId": 9778, + "maxStateId": 9779, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 607, + "name": "tube_coral", + "displayName": "Tube Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9780, + "minStateId": 9780, + "maxStateId": 9781, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 608, + "name": "brain_coral", + "displayName": "Brain Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9782, + "minStateId": 9782, + "maxStateId": 9783, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 609, + "name": "bubble_coral", + "displayName": "Bubble Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9784, + "minStateId": 9784, + "maxStateId": 9785, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 610, + "name": "fire_coral", + "displayName": "Fire Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9786, + "minStateId": 9786, + "maxStateId": 9787, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 611, + "name": "horn_coral", + "displayName": "Horn Coral", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9788, + "minStateId": 9788, + "maxStateId": 9789, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 612, + "name": "dead_tube_coral_fan", + "displayName": "Dead Tube Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9790, + "minStateId": 9790, + "maxStateId": 9791, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 613, + "name": "dead_brain_coral_fan", + "displayName": "Dead Brain Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9792, + "minStateId": 9792, + "maxStateId": 9793, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 614, + "name": "dead_bubble_coral_fan", + "displayName": "Dead Bubble Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9794, + "minStateId": 9794, + "maxStateId": 9795, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 615, + "name": "dead_fire_coral_fan", + "displayName": "Dead Fire Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9796, + "minStateId": 9796, + "maxStateId": 9797, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 616, + "name": "dead_horn_coral_fan", + "displayName": "Dead Horn Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9798, + "minStateId": 9798, + "maxStateId": 9799, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 617, + "name": "tube_coral_fan", + "displayName": "Tube Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9800, + "minStateId": 9800, + "maxStateId": 9801, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 618, + "name": "brain_coral_fan", + "displayName": "Brain Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9802, + "minStateId": 9802, + "maxStateId": 9803, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 619, + "name": "bubble_coral_fan", + "displayName": "Bubble Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9804, + "minStateId": 9804, + "maxStateId": 9805, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 620, + "name": "fire_coral_fan", + "displayName": "Fire Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9806, + "minStateId": 9806, + "maxStateId": 9807, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 621, + "name": "horn_coral_fan", + "displayName": "Horn Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9808, + "minStateId": 9808, + "maxStateId": 9809, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 622, + "name": "dead_tube_coral_wall_fan", + "displayName": "Dead Tube Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9810, + "minStateId": 9810, + "maxStateId": 9817, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 623, + "name": "dead_brain_coral_wall_fan", + "displayName": "Dead Brain Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9818, + "minStateId": 9818, + "maxStateId": 9825, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 624, + "name": "dead_bubble_coral_wall_fan", + "displayName": "Dead Bubble Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9826, + "minStateId": 9826, + "maxStateId": 9833, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 625, + "name": "dead_fire_coral_wall_fan", + "displayName": "Dead Fire Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9834, + "minStateId": 9834, + "maxStateId": 9841, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 626, + "name": "dead_horn_coral_wall_fan", + "displayName": "Dead Horn Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9842, + "minStateId": 9842, + "maxStateId": 9849, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 627, + "name": "tube_coral_wall_fan", + "displayName": "Tube Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9850, + "minStateId": 9850, + "maxStateId": 9857, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 628, + "name": "brain_coral_wall_fan", + "displayName": "Brain Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9858, + "minStateId": 9858, + "maxStateId": 9865, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 629, + "name": "bubble_coral_wall_fan", + "displayName": "Bubble Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9866, + "minStateId": 9866, + "maxStateId": 9873, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 630, + "name": "fire_coral_wall_fan", + "displayName": "Fire Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9874, + "minStateId": 9874, + "maxStateId": 9881, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 631, + "name": "horn_coral_wall_fan", + "displayName": "Horn Coral Fan", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9882, + "minStateId": 9882, + "maxStateId": 9889, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 632, + "name": "sea_pickle", + "displayName": "Sea Pickle", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 6, + "filterLight": 1, + "defaultState": 9890, + "minStateId": 9890, + "maxStateId": 9897, + "states": [ + { + "name": "pickles", + "type": "int", + "num_values": 4, + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 156 + ], + "boundingBox": "block" + }, + { + "id": 633, + "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": 9898, + "minStateId": 9898, + "maxStateId": 9898, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 634, + "name": "conduit", + "displayName": "Conduit", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 9899, + "minStateId": 9899, + "maxStateId": 9900, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 548 + ], + "boundingBox": "block" + }, + { + "id": 635, + "name": "bamboo_sapling", + "displayName": "Air", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9901, + "minStateId": 9901, + "maxStateId": 9901, + "states": [], + "drops": [ + 203 + ], + "boundingBox": "empty" + }, + { + "id": 636, + "name": "bamboo", + "displayName": "Bamboo", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9902, + "minStateId": 9902, + "maxStateId": 9913, + "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": [ + 203 + ], + "boundingBox": "block" + }, + { + "id": 637, + "name": "potted_bamboo", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9914, + "minStateId": 9914, + "maxStateId": 9914, + "states": [], + "drops": [ + 946, + 203 + ], + "boundingBox": "block" + }, + { + "id": 638, + "name": "void_air", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9915, + "minStateId": 9915, + "maxStateId": 9915, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 639, + "name": "cave_air", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9916, + "minStateId": 9916, + "maxStateId": 9916, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 640, + "name": "bubble_column", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 9917, + "minStateId": 9917, + "maxStateId": 9918, + "states": [ + { + "name": "drag", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 641, + "name": "polished_granite_stairs", + "displayName": "Polished Granite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9930, + "minStateId": 9919, + "maxStateId": 9998, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 549 + ], + "boundingBox": "block" + }, + { + "id": 642, + "name": "smooth_red_sandstone_stairs", + "displayName": "Smooth Red Sandstone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10010, + "minStateId": 9999, + "maxStateId": 10078, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 550 + ], + "boundingBox": "block" + }, + { + "id": 643, + "name": "mossy_stone_brick_stairs", + "displayName": "Mossy Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10090, + "minStateId": 10079, + "maxStateId": 10158, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 551 + ], + "boundingBox": "block" + }, + { + "id": 644, + "name": "polished_diorite_stairs", + "displayName": "Polished Diorite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10170, + "minStateId": 10159, + "maxStateId": 10238, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 552 + ], + "boundingBox": "block" + }, + { + "id": 645, + "name": "mossy_cobblestone_stairs", + "displayName": "Mossy Cobblestone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10250, + "minStateId": 10239, + "maxStateId": 10318, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 553 + ], + "boundingBox": "block" + }, + { + "id": 646, + "name": "end_stone_brick_stairs", + "displayName": "End Stone Brick Stairs", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10330, + "minStateId": 10319, + "maxStateId": 10398, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 554 + ], + "boundingBox": "block" + }, + { + "id": 647, + "name": "stone_stairs", + "displayName": "Stone Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10410, + "minStateId": 10399, + "maxStateId": 10478, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 555 + ], + "boundingBox": "block" + }, + { + "id": 648, + "name": "smooth_sandstone_stairs", + "displayName": "Smooth Sandstone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10490, + "minStateId": 10479, + "maxStateId": 10558, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 556 + ], + "boundingBox": "block" + }, + { + "id": 649, + "name": "smooth_quartz_stairs", + "displayName": "Smooth Quartz Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10570, + "minStateId": 10559, + "maxStateId": 10638, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 557 + ], + "boundingBox": "block" + }, + { + "id": 650, + "name": "granite_stairs", + "displayName": "Granite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10650, + "minStateId": 10639, + "maxStateId": 10718, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 558 + ], + "boundingBox": "block" + }, + { + "id": 651, + "name": "andesite_stairs", + "displayName": "Andesite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10730, + "minStateId": 10719, + "maxStateId": 10798, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 559 + ], + "boundingBox": "block" + }, + { + "id": 652, + "name": "red_nether_brick_stairs", + "displayName": "Red Nether Brick Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10810, + "minStateId": 10799, + "maxStateId": 10878, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 560 + ], + "boundingBox": "block" + }, + { + "id": 653, + "name": "polished_andesite_stairs", + "displayName": "Polished Andesite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10890, + "minStateId": 10879, + "maxStateId": 10958, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 561 + ], + "boundingBox": "block" + }, + { + "id": 654, + "name": "diorite_stairs", + "displayName": "Diorite Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 10970, + "minStateId": 10959, + "maxStateId": 11038, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 562 + ], + "boundingBox": "block" + }, + { + "id": 655, + "name": "polished_granite_slab", + "displayName": "Polished Granite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11042, + "minStateId": 11039, + "maxStateId": 11044, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 567 + ], + "boundingBox": "block" + }, + { + "id": 656, + "name": "smooth_red_sandstone_slab", + "displayName": "Smooth Red Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11048, + "minStateId": 11045, + "maxStateId": 11050, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 568 + ], + "boundingBox": "block" + }, + { + "id": 657, + "name": "mossy_stone_brick_slab", + "displayName": "Mossy Stone Brick Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11054, + "minStateId": 11051, + "maxStateId": 11056, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 569 + ], + "boundingBox": "block" + }, + { + "id": 658, + "name": "polished_diorite_slab", + "displayName": "Polished Diorite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11060, + "minStateId": 11057, + "maxStateId": 11062, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 570 + ], + "boundingBox": "block" + }, + { + "id": 659, + "name": "mossy_cobblestone_slab", + "displayName": "Mossy Cobblestone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11066, + "minStateId": 11063, + "maxStateId": 11068, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 571 + ], + "boundingBox": "block" + }, + { + "id": 660, + "name": "end_stone_brick_slab", + "displayName": "End Stone Brick Slab", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11072, + "minStateId": 11069, + "maxStateId": 11074, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 572 + ], + "boundingBox": "block" + }, + { + "id": 661, + "name": "smooth_sandstone_slab", + "displayName": "Smooth Sandstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11078, + "minStateId": 11075, + "maxStateId": 11080, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 573 + ], + "boundingBox": "block" + }, + { + "id": 662, + "name": "smooth_quartz_slab", + "displayName": "Smooth Quartz Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11084, + "minStateId": 11081, + "maxStateId": 11086, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 574 + ], + "boundingBox": "block" + }, + { + "id": 663, + "name": "granite_slab", + "displayName": "Granite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11090, + "minStateId": 11087, + "maxStateId": 11092, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 575 + ], + "boundingBox": "block" + }, + { + "id": 664, + "name": "andesite_slab", + "displayName": "Andesite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11096, + "minStateId": 11093, + "maxStateId": 11098, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 576 + ], + "boundingBox": "block" + }, + { + "id": 665, + "name": "red_nether_brick_slab", + "displayName": "Red Nether Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11102, + "minStateId": 11099, + "maxStateId": 11104, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 577 + ], + "boundingBox": "block" + }, + { + "id": 666, + "name": "polished_andesite_slab", + "displayName": "Polished Andesite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11108, + "minStateId": 11105, + "maxStateId": 11110, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 578 + ], + "boundingBox": "block" + }, + { + "id": 667, + "name": "diorite_slab", + "displayName": "Diorite Slab", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11114, + "minStateId": 11111, + "maxStateId": 11116, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 579 + ], + "boundingBox": "block" + }, + { + "id": 668, + "name": "brick_wall", + "displayName": "Brick Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11120, + "minStateId": 11117, + "maxStateId": 11440, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 327 + ], + "boundingBox": "block" + }, + { + "id": 669, + "name": "prismarine_wall", + "displayName": "Prismarine Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11444, + "minStateId": 11441, + "maxStateId": 11764, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 328 + ], + "boundingBox": "block" + }, + { + "id": 670, + "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": 11768, + "minStateId": 11765, + "maxStateId": 12088, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 329 + ], + "boundingBox": "block" + }, + { + "id": 671, + "name": "mossy_stone_brick_wall", + "displayName": "Mossy Stone Brick Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12092, + "minStateId": 12089, + "maxStateId": 12412, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 330 + ], + "boundingBox": "block" + }, + { + "id": 672, + "name": "granite_wall", + "displayName": "Granite Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12416, + "minStateId": 12413, + "maxStateId": 12736, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 331 + ], + "boundingBox": "block" + }, + { + "id": 673, + "name": "stone_brick_wall", + "displayName": "Stone Brick Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 12740, + "minStateId": 12737, + "maxStateId": 13060, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 332 + ], + "boundingBox": "block" + }, + { + "id": 674, + "name": "nether_brick_wall", + "displayName": "Nether Brick Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13064, + "minStateId": 13061, + "maxStateId": 13384, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 333 + ], + "boundingBox": "block" + }, + { + "id": 675, + "name": "andesite_wall", + "displayName": "Andesite Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13388, + "minStateId": 13385, + "maxStateId": 13708, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 334 + ], + "boundingBox": "block" + }, + { + "id": 676, + "name": "red_nether_brick_wall", + "displayName": "Red Nether Brick Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13712, + "minStateId": 13709, + "maxStateId": 14032, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 335 + ], + "boundingBox": "block" + }, + { + "id": 677, + "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": 14036, + "minStateId": 14033, + "maxStateId": 14356, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 336 + ], + "boundingBox": "block" + }, + { + "id": 678, + "name": "end_stone_brick_wall", + "displayName": "End Stone Brick Wall", + "hardness": 3, + "resistance": 9, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14360, + "minStateId": 14357, + "maxStateId": 14680, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 337 + ], + "boundingBox": "block" + }, + { + "id": 679, + "name": "diorite_wall", + "displayName": "Diorite Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 14684, + "minStateId": 14681, + "maxStateId": 15004, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 338 + ], + "boundingBox": "block" + }, + { + "id": 680, + "name": "scaffolding", + "displayName": "Scaffolding", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15036, + "minStateId": 15005, + "maxStateId": 15036, + "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": [ + 584 + ], + "boundingBox": "block" + }, + { + "id": 681, + "name": "loom", + "displayName": "Loom", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15037, + "minStateId": 15037, + "maxStateId": 15040, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1034 + ], + "boundingBox": "block" + }, + { + "id": 682, + "name": "barrel", + "displayName": "Barrel", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15042, + "minStateId": 15041, + "maxStateId": 15052, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1042 + ], + "boundingBox": "block" + }, + { + "id": 683, + "name": "smoker", + "displayName": "Smoker", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15054, + "minStateId": 15053, + "maxStateId": 15060, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1043 + ], + "boundingBox": "block" + }, + { + "id": 684, + "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": 15062, + "minStateId": 15061, + "maxStateId": 15068, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1044 + ], + "boundingBox": "block" + }, + { + "id": 685, + "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": 15069, + "minStateId": 15069, + "maxStateId": 15069, + "states": [], + "drops": [ + 1045 + ], + "boundingBox": "block" + }, + { + "id": 686, + "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": 15070, + "minStateId": 15070, + "maxStateId": 15070, + "states": [], + "drops": [ + 1046 + ], + "boundingBox": "block" + }, + { + "id": 687, + "name": "grindstone", + "displayName": "Grindstone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15075, + "minStateId": 15071, + "maxStateId": 15082, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1047 + ], + "boundingBox": "block" + }, + { + "id": 688, + "name": "lectern", + "displayName": "Lectern", + "hardness": 2.5, + "resistance": 2.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15086, + "minStateId": 15083, + "maxStateId": 15098, + "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": [ + 598 + ], + "boundingBox": "block" + }, + { + "id": 689, + "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": 15099, + "minStateId": 15099, + "maxStateId": 15099, + "states": [], + "drops": [ + 1048 + ], + "boundingBox": "block" + }, + { + "id": 690, + "name": "stonecutter", + "displayName": "Stonecutter", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15100, + "minStateId": 15100, + "maxStateId": 15103, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1049 + ], + "boundingBox": "block" + }, + { + "id": 691, + "name": "bell", + "displayName": "Bell", + "hardness": 5, + "resistance": 5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15105, + "minStateId": 15104, + "maxStateId": 15135, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1050 + ], + "boundingBox": "block" + }, + { + "id": 692, + "name": "lantern", + "displayName": "Lantern", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 15139, + "minStateId": 15136, + "maxStateId": 15139, + "states": [ + { + "name": "hanging", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1051 + ], + "boundingBox": "block" + }, + { + "id": 693, + "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": 15143, + "minStateId": 15140, + "maxStateId": 15143, + "states": [ + { + "name": "hanging", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1052 + ], + "boundingBox": "block" + }, + { + "id": 694, + "name": "campfire", + "displayName": "Campfire", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 15, + "filterLight": 0, + "defaultState": 15147, + "minStateId": 15144, + "maxStateId": 15175, + "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": [ + 685 + ], + "boundingBox": "block" + }, + { + "id": 695, + "name": "soul_campfire", + "displayName": "Soul Campfire", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 10, + "filterLight": 0, + "defaultState": 15179, + "minStateId": 15176, + "maxStateId": 15207, + "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": [ + 270 + ], + "boundingBox": "block" + }, + { + "id": 696, + "name": "sweet_berry_bush", + "displayName": "Sweet Berries", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15208, + "minStateId": 15208, + "maxStateId": 15211, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 4, + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 697, + "name": "warped_stem", + "displayName": "Warped Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15213, + "minStateId": 15212, + "maxStateId": 15214, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 108 + ], + "boundingBox": "block" + }, + { + "id": 698, + "name": "stripped_warped_stem", + "displayName": "Stripped Warped Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15216, + "minStateId": 15215, + "maxStateId": 15217, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 116 + ], + "boundingBox": "block" + }, + { + "id": 699, + "name": "warped_hyphae", + "displayName": "Warped Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15219, + "minStateId": 15218, + "maxStateId": 15220, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 132 + ], + "boundingBox": "block" + }, + { + "id": 700, + "name": "stripped_warped_hyphae", + "displayName": "Stripped Warped Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15222, + "minStateId": 15221, + "maxStateId": 15223, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 124 + ], + "boundingBox": "block" + }, + { + "id": 701, + "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": 15224, + "minStateId": 15224, + "maxStateId": 15224, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 268 + ], + "boundingBox": "block" + }, + { + "id": 702, + "name": "warped_fungus", + "displayName": "Warped Fungus", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15225, + "minStateId": 15225, + "maxStateId": 15225, + "states": [], + "drops": [ + 190 + ], + "boundingBox": "empty" + }, + { + "id": 703, + "name": "warped_wart_block", + "displayName": "Warped Wart Block", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15226, + "minStateId": 15226, + "maxStateId": 15226, + "states": [], + "drops": [ + 447 + ], + "boundingBox": "block" + }, + { + "id": 704, + "name": "warped_roots", + "displayName": "Warped Roots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15227, + "minStateId": 15227, + "maxStateId": 15227, + "states": [], + "drops": [ + 192 + ], + "boundingBox": "empty" + }, + { + "id": 705, + "name": "nether_sprouts", + "displayName": "Nether Sprouts", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15228, + "minStateId": 15228, + "maxStateId": 15228, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 706, + "name": "crimson_stem", + "displayName": "Crimson Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15230, + "minStateId": 15229, + "maxStateId": 15231, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 107 + ], + "boundingBox": "block" + }, + { + "id": 707, + "name": "stripped_crimson_stem", + "displayName": "Stripped Crimson Stem", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15233, + "minStateId": 15232, + "maxStateId": 15234, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 115 + ], + "boundingBox": "block" + }, + { + "id": 708, + "name": "crimson_hyphae", + "displayName": "Crimson Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15236, + "minStateId": 15235, + "maxStateId": 15237, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 131 + ], + "boundingBox": "block" + }, + { + "id": 709, + "name": "stripped_crimson_hyphae", + "displayName": "Stripped Crimson Hyphae", + "hardness": 2, + "resistance": 2, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15239, + "minStateId": 15238, + "maxStateId": 15240, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 123 + ], + "boundingBox": "block" + }, + { + "id": 710, + "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": 15241, + "minStateId": 15241, + "maxStateId": 15241, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 268 + ], + "boundingBox": "block" + }, + { + "id": 711, + "name": "crimson_fungus", + "displayName": "Crimson Fungus", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15242, + "minStateId": 15242, + "maxStateId": 15242, + "states": [], + "drops": [ + 189 + ], + "boundingBox": "empty" + }, + { + "id": 712, + "name": "shroomlight", + "displayName": "Shroomlight", + "hardness": 1, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 15243, + "minStateId": 15243, + "maxStateId": 15243, + "states": [], + "drops": [ + 1057 + ], + "boundingBox": "block" + }, + { + "id": 713, + "name": "weeping_vines", + "displayName": "Weeping Vines", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15244, + "minStateId": 15244, + "maxStateId": 15269, + "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": 714, + "name": "weeping_vines_plant", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15270, + "minStateId": 15270, + "maxStateId": 15270, + "states": [], + "drops": [ + 194 + ], + "boundingBox": "empty" + }, + { + "id": 715, + "name": "twisting_vines", + "displayName": "Twisting Vines", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15271, + "minStateId": 15271, + "maxStateId": 15296, + "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": 716, + "name": "twisting_vines_plant", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15297, + "minStateId": 15297, + "maxStateId": 15297, + "states": [], + "drops": [ + 195 + ], + "boundingBox": "empty" + }, + { + "id": 717, + "name": "crimson_roots", + "displayName": "Crimson Roots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15298, + "minStateId": 15298, + "maxStateId": 15298, + "states": [], + "drops": [ + 191 + ], + "boundingBox": "empty" + }, + { + "id": 718, + "name": "crimson_planks", + "displayName": "Crimson Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15299, + "minStateId": 15299, + "maxStateId": 15299, + "states": [], + "drops": [ + 28 + ], + "boundingBox": "block" + }, + { + "id": 719, + "name": "warped_planks", + "displayName": "Warped Planks", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15300, + "minStateId": 15300, + "maxStateId": 15300, + "states": [], + "drops": [ + 29 + ], + "boundingBox": "block" + }, + { + "id": 720, + "name": "crimson_slab", + "displayName": "Crimson Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15304, + "minStateId": 15301, + "maxStateId": 15306, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 210 + ], + "boundingBox": "block" + }, + { + "id": 721, + "name": "warped_slab", + "displayName": "Warped Slab", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15310, + "minStateId": 15307, + "maxStateId": 15312, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 211 + ], + "boundingBox": "block" + }, + { + "id": 722, + "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": 15314, + "minStateId": 15313, + "maxStateId": 15314, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 629 + ], + "boundingBox": "empty" + }, + { + "id": 723, + "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": 15316, + "minStateId": 15315, + "maxStateId": 15316, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 630 + ], + "boundingBox": "empty" + }, + { + "id": 724, + "name": "crimson_fence", + "displayName": "Crimson Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15348, + "minStateId": 15317, + "maxStateId": 15348, + "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": [ + 263 + ], + "boundingBox": "block" + }, + { + "id": 725, + "name": "warped_fence", + "displayName": "Warped Fence", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15380, + "minStateId": 15349, + "maxStateId": 15380, + "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": [ + 264 + ], + "boundingBox": "block" + }, + { + "id": 726, + "name": "crimson_trapdoor", + "displayName": "Crimson Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15396, + "minStateId": 15381, + "maxStateId": 15444, + "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": [ + 647 + ], + "boundingBox": "block" + }, + { + "id": 727, + "name": "warped_trapdoor", + "displayName": "Warped Trapdoor", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15460, + "minStateId": 15445, + "maxStateId": 15508, + "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": [ + 648 + ], + "boundingBox": "block" + }, + { + "id": 728, + "name": "crimson_fence_gate", + "displayName": "Crimson Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15516, + "minStateId": 15509, + "maxStateId": 15540, + "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": [ + 655 + ], + "boundingBox": "block" + }, + { + "id": 729, + "name": "warped_fence_gate", + "displayName": "Warped Fence Gate", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15548, + "minStateId": 15541, + "maxStateId": 15572, + "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": [ + 656 + ], + "boundingBox": "block" + }, + { + "id": 730, + "name": "crimson_stairs", + "displayName": "Crimson Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15584, + "minStateId": 15573, + "maxStateId": 15652, + "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": [ + 321 + ], + "boundingBox": "block" + }, + { + "id": 731, + "name": "warped_stairs", + "displayName": "Warped Stairs", + "hardness": 2, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15664, + "minStateId": 15653, + "maxStateId": 15732, + "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": [ + 322 + ], + "boundingBox": "block" + }, + { + "id": 732, + "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": 15742, + "minStateId": 15733, + "maxStateId": 15756, + "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": [ + 617 + ], + "boundingBox": "empty" + }, + { + "id": 733, + "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": 15766, + "minStateId": 15757, + "maxStateId": 15780, + "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": [ + 618 + ], + "boundingBox": "empty" + }, + { + "id": 734, + "name": "crimson_door", + "displayName": "Crimson Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15792, + "minStateId": 15781, + "maxStateId": 15844, + "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": [ + 638 + ], + "boundingBox": "block" + }, + { + "id": 735, + "name": "warped_door", + "displayName": "Warped Door", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15856, + "minStateId": 15845, + "maxStateId": 15908, + "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": [ + 639 + ], + "boundingBox": "block" + }, + { + "id": 736, + "name": "crimson_sign", + "displayName": "Crimson Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15910, + "minStateId": 15909, + "maxStateId": 15940, + "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": [ + 774 + ], + "boundingBox": "empty" + }, + { + "id": 737, + "name": "warped_sign", + "displayName": "Warped Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15942, + "minStateId": 15941, + "maxStateId": 15972, + "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": [ + 775 + ], + "boundingBox": "empty" + }, + { + "id": 738, + "name": "crimson_wall_sign", + "displayName": "Crimson Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15974, + "minStateId": 15973, + "maxStateId": 15980, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 774 + ], + "boundingBox": "empty" + }, + { + "id": 739, + "name": "warped_wall_sign", + "displayName": "Warped Sign", + "hardness": 1, + "resistance": 1, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 15982, + "minStateId": 15981, + "maxStateId": 15988, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 775 + ], + "boundingBox": "empty" + }, + { + "id": 740, + "name": "structure_block", + "displayName": "Structure Block", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 15990, + "minStateId": 15989, + "maxStateId": 15992, + "states": [ + { + "name": "mode", + "type": "enum", + "num_values": 4, + "values": [ + "save", + "load", + "corner", + "data" + ] + } + ], + "harvestTools": {}, + "drops": [], + "boundingBox": "block" + }, + { + "id": 741, + "name": "jigsaw", + "displayName": "Jigsaw Block", + "hardness": 0, + "resistance": 3600000, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16003, + "minStateId": 15993, + "maxStateId": 16004, + "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": 742, + "name": "composter", + "displayName": "Composter", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16005, + "minStateId": 16005, + "maxStateId": 16013, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 9, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + } + ], + "drops": [ + 1041 + ], + "boundingBox": "block" + }, + { + "id": 743, + "name": "target", + "displayName": "Target", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16014, + "minStateId": 16014, + "maxStateId": 16029, + "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": [ + 599 + ], + "boundingBox": "block" + }, + { + "id": 744, + "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": 16030, + "minStateId": 16030, + "maxStateId": 16053, + "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": 745, + "name": "beehive", + "displayName": "Beehive", + "hardness": 0.6, + "resistance": 0.6, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16054, + "minStateId": 16054, + "maxStateId": 16077, + "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": [ + 1060 + ], + "boundingBox": "block" + }, + { + "id": 746, + "name": "honey_block", + "displayName": "Honey Block", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 16078, + "minStateId": 16078, + "maxStateId": 16078, + "states": [], + "drops": [ + 593 + ], + "boundingBox": "block" + }, + { + "id": 747, + "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": 16079, + "minStateId": 16079, + "maxStateId": 16079, + "states": [], + "drops": [ + 1062 + ], + "boundingBox": "block" + }, + { + "id": 748, + "name": "netherite_block", + "displayName": "Block of Netherite", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16080, + "minStateId": 16080, + "maxStateId": 16080, + "states": [], + "harvestTools": { + "721": true, + "726": true + }, + "drops": [ + 69 + ], + "boundingBox": "block" + }, + { + "id": 749, + "name": "ancient_debris", + "displayName": "Ancient Debris", + "hardness": 30, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16081, + "minStateId": 16081, + "maxStateId": 16081, + "states": [], + "harvestTools": { + "721": true, + "726": true + }, + "drops": [ + 58 + ], + "boundingBox": "block" + }, + { + "id": 750, + "name": "crying_obsidian", + "displayName": "Crying Obsidian", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 10, + "filterLight": 15, + "defaultState": 16082, + "minStateId": 16082, + "maxStateId": 16082, + "states": [], + "harvestTools": { + "721": true, + "726": true + }, + "drops": [ + 1064 + ], + "boundingBox": "block" + }, + { + "id": 751, + "name": "respawn_anchor", + "displayName": "Respawn Anchor", + "hardness": 50, + "resistance": 1200, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16083, + "minStateId": 16083, + "maxStateId": 16087, + "states": [ + { + "name": "charges", + "type": "int", + "num_values": 5, + "values": [ + "0", + "1", + "2", + "3", + "4" + ] + } + ], + "harvestTools": { + "721": true, + "726": true + }, + "drops": [ + 1077 + ], + "boundingBox": "block" + }, + { + "id": 752, + "name": "potted_crimson_fungus", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16088, + "minStateId": 16088, + "maxStateId": 16088, + "states": [], + "drops": [ + 946, + 189 + ], + "boundingBox": "block" + }, + { + "id": 753, + "name": "potted_warped_fungus", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16089, + "minStateId": 16089, + "maxStateId": 16089, + "states": [], + "drops": [ + 946, + 190 + ], + "boundingBox": "block" + }, + { + "id": 754, + "name": "potted_crimson_roots", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16090, + "minStateId": 16090, + "maxStateId": 16090, + "states": [], + "drops": [ + 946, + 191 + ], + "boundingBox": "block" + }, + { + "id": 755, + "name": "potted_warped_roots", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16091, + "minStateId": 16091, + "maxStateId": 16091, + "states": [], + "drops": [ + 946, + 192 + ], + "boundingBox": "block" + }, + { + "id": 756, + "name": "lodestone", + "displayName": "Lodestone", + "hardness": 3.5, + "resistance": 3.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16092, + "minStateId": 16092, + "maxStateId": 16092, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1063 + ], + "boundingBox": "block" + }, + { + "id": 757, + "name": "blackstone", + "displayName": "Blackstone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16093, + "minStateId": 16093, + "maxStateId": 16093, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1065 + ], + "boundingBox": "block" + }, + { + "id": 758, + "name": "blackstone_stairs", + "displayName": "Blackstone Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16105, + "minStateId": 16094, + "maxStateId": 16173, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1067 + ], + "boundingBox": "block" + }, + { + "id": 759, + "name": "blackstone_wall", + "displayName": "Blackstone Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16177, + "minStateId": 16174, + "maxStateId": 16497, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 339 + ], + "boundingBox": "block" + }, + { + "id": 760, + "name": "blackstone_slab", + "displayName": "Blackstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16501, + "minStateId": 16498, + "maxStateId": 16503, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1066 + ], + "boundingBox": "block" + }, + { + "id": 761, + "name": "polished_blackstone", + "displayName": "Polished Blackstone", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16504, + "minStateId": 16504, + "maxStateId": 16504, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1069 + ], + "boundingBox": "block" + }, + { + "id": 762, + "name": "polished_blackstone_bricks", + "displayName": "Polished Blackstone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16505, + "minStateId": 16505, + "maxStateId": 16505, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1073 + ], + "boundingBox": "block" + }, + { + "id": 763, + "name": "cracked_polished_blackstone_bricks", + "displayName": "Cracked Polished Blackstone Bricks", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16506, + "minStateId": 16506, + "maxStateId": 16506, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1076 + ], + "boundingBox": "block" + }, + { + "id": 764, + "name": "chiseled_polished_blackstone", + "displayName": "Chiseled Polished Blackstone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16507, + "minStateId": 16507, + "maxStateId": 16507, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1072 + ], + "boundingBox": "block" + }, + { + "id": 765, + "name": "polished_blackstone_brick_slab", + "displayName": "Polished Blackstone Brick Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16511, + "minStateId": 16508, + "maxStateId": 16513, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1074 + ], + "boundingBox": "block" + }, + { + "id": 766, + "name": "polished_blackstone_brick_stairs", + "displayName": "Polished Blackstone Brick Stairs", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16525, + "minStateId": 16514, + "maxStateId": 16593, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1075 + ], + "boundingBox": "block" + }, + { + "id": 767, + "name": "polished_blackstone_brick_wall", + "displayName": "Polished Blackstone Brick Wall", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16597, + "minStateId": 16594, + "maxStateId": 16917, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 341 + ], + "boundingBox": "block" + }, + { + "id": 768, + "name": "gilded_blackstone", + "displayName": "Gilded Blackstone", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16918, + "minStateId": 16918, + "maxStateId": 16918, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1068 + ], + "boundingBox": "block" + }, + { + "id": 769, + "name": "polished_blackstone_stairs", + "displayName": "Polished Blackstone Stairs", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16930, + "minStateId": 16919, + "maxStateId": 16998, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1071 + ], + "boundingBox": "block" + }, + { + "id": 770, + "name": "polished_blackstone_slab", + "displayName": "Polished Blackstone Slab", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17002, + "minStateId": 16999, + "maxStateId": 17004, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 1070 + ], + "boundingBox": "block" + }, + { + "id": 771, + "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": 17006, + "minStateId": 17005, + "maxStateId": 17006, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 620 + ], + "boundingBox": "empty" + }, + { + "id": 772, + "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": 17016, + "minStateId": 17007, + "maxStateId": 17030, + "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": [ + 610 + ], + "boundingBox": "empty" + }, + { + "id": 773, + "name": "polished_blackstone_wall", + "displayName": "Polished Blackstone Wall", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17034, + "minStateId": 17031, + "maxStateId": 17354, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 340 + ], + "boundingBox": "block" + }, + { + "id": 774, + "name": "chiseled_nether_bricks", + "displayName": "Chiseled Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17355, + "minStateId": 17355, + "maxStateId": 17355, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 307 + ], + "boundingBox": "block" + }, + { + "id": 775, + "name": "cracked_nether_bricks", + "displayName": "Cracked Nether Bricks", + "hardness": 2, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17356, + "minStateId": 17356, + "maxStateId": 17356, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 306 + ], + "boundingBox": "block" + }, + { + "id": 776, + "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": 17357, + "minStateId": 17357, + "maxStateId": 17357, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 351 + ], + "boundingBox": "block" + }, + { + "id": 777, + "name": "candle", + "displayName": "Candle", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17361, + "minStateId": 17358, + "maxStateId": 17373, + "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": [ + 1078 + ], + "boundingBox": "block" + }, + { + "id": 778, + "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": 17377, + "minStateId": 17374, + "maxStateId": 17389, + "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": [ + 1079 + ], + "boundingBox": "block" + }, + { + "id": 779, + "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": 17393, + "minStateId": 17390, + "maxStateId": 17405, + "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": [ + 1080 + ], + "boundingBox": "block" + }, + { + "id": 780, + "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": 17409, + "minStateId": 17406, + "maxStateId": 17421, + "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": [ + 1081 + ], + "boundingBox": "block" + }, + { + "id": 781, + "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": 17425, + "minStateId": 17422, + "maxStateId": 17437, + "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": [ + 1082 + ], + "boundingBox": "block" + }, + { + "id": 782, + "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": 17441, + "minStateId": 17438, + "maxStateId": 17453, + "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": [ + 1083 + ], + "boundingBox": "block" + }, + { + "id": 783, + "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": 17457, + "minStateId": 17454, + "maxStateId": 17469, + "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": [ + 1084 + ], + "boundingBox": "block" + }, + { + "id": 784, + "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": 17473, + "minStateId": 17470, + "maxStateId": 17485, + "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": [ + 1085 + ], + "boundingBox": "block" + }, + { + "id": 785, + "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": 17489, + "minStateId": 17486, + "maxStateId": 17501, + "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": [ + 1086 + ], + "boundingBox": "block" + }, + { + "id": 786, + "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": 17505, + "minStateId": 17502, + "maxStateId": 17517, + "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": [ + 1087 + ], + "boundingBox": "block" + }, + { + "id": 787, + "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": 17521, + "minStateId": 17518, + "maxStateId": 17533, + "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": [ + 1088 + ], + "boundingBox": "block" + }, + { + "id": 788, + "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": 17537, + "minStateId": 17534, + "maxStateId": 17549, + "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": [ + 1089 + ], + "boundingBox": "block" + }, + { + "id": 789, + "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": 17553, + "minStateId": 17550, + "maxStateId": 17565, + "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": [ + 1090 + ], + "boundingBox": "block" + }, + { + "id": 790, + "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": 17569, + "minStateId": 17566, + "maxStateId": 17581, + "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": [ + 1091 + ], + "boundingBox": "block" + }, + { + "id": 791, + "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": 17585, + "minStateId": 17582, + "maxStateId": 17597, + "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": [ + 1092 + ], + "boundingBox": "block" + }, + { + "id": 792, + "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": 17601, + "minStateId": 17598, + "maxStateId": 17613, + "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": [ + 1093 + ], + "boundingBox": "block" + }, + { + "id": 793, + "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": 17617, + "minStateId": 17614, + "maxStateId": 17629, + "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": [ + 1094 + ], + "boundingBox": "block" + }, + { + "id": 794, + "name": "candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17631, + "minStateId": 17630, + "maxStateId": 17631, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1078 + ], + "boundingBox": "block" + }, + { + "id": 795, + "name": "white_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17633, + "minStateId": 17632, + "maxStateId": 17633, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1079 + ], + "boundingBox": "block" + }, + { + "id": 796, + "name": "orange_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17635, + "minStateId": 17634, + "maxStateId": 17635, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1080 + ], + "boundingBox": "block" + }, + { + "id": 797, + "name": "magenta_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17637, + "minStateId": 17636, + "maxStateId": 17637, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1081 + ], + "boundingBox": "block" + }, + { + "id": 798, + "name": "light_blue_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17639, + "minStateId": 17638, + "maxStateId": 17639, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1082 + ], + "boundingBox": "block" + }, + { + "id": 799, + "name": "yellow_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17641, + "minStateId": 17640, + "maxStateId": 17641, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1083 + ], + "boundingBox": "block" + }, + { + "id": 800, + "name": "lime_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17643, + "minStateId": 17642, + "maxStateId": 17643, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1084 + ], + "boundingBox": "block" + }, + { + "id": 801, + "name": "pink_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17645, + "minStateId": 17644, + "maxStateId": 17645, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1085 + ], + "boundingBox": "block" + }, + { + "id": 802, + "name": "gray_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17647, + "minStateId": 17646, + "maxStateId": 17647, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1086 + ], + "boundingBox": "block" + }, + { + "id": 803, + "name": "light_gray_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17649, + "minStateId": 17648, + "maxStateId": 17649, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1087 + ], + "boundingBox": "block" + }, + { + "id": 804, + "name": "cyan_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17651, + "minStateId": 17650, + "maxStateId": 17651, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1088 + ], + "boundingBox": "block" + }, + { + "id": 805, + "name": "purple_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17653, + "minStateId": 17652, + "maxStateId": 17653, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1089 + ], + "boundingBox": "block" + }, + { + "id": 806, + "name": "blue_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17655, + "minStateId": 17654, + "maxStateId": 17655, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1090 + ], + "boundingBox": "block" + }, + { + "id": 807, + "name": "brown_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17657, + "minStateId": 17656, + "maxStateId": 17657, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1091 + ], + "boundingBox": "block" + }, + { + "id": 808, + "name": "green_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17659, + "minStateId": 17658, + "maxStateId": 17659, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1092 + ], + "boundingBox": "block" + }, + { + "id": 809, + "name": "red_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17661, + "minStateId": 17660, + "maxStateId": 17661, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1093 + ], + "boundingBox": "block" + }, + { + "id": 810, + "name": "black_candle_cake", + "displayName": "Air", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17663, + "minStateId": 17662, + "maxStateId": 17663, + "states": [ + { + "name": "lit", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 1094 + ], + "boundingBox": "block" + }, + { + "id": 811, + "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": 17664, + "minStateId": 17664, + "maxStateId": 17664, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 63 + ], + "boundingBox": "block" + }, + { + "id": 812, + "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": 17665, + "minStateId": 17665, + "maxStateId": 17665, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [], + "boundingBox": "block" + }, + { + "id": 813, + "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": 17675, + "minStateId": 17666, + "maxStateId": 17677, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 6, + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 690 + ], + "boundingBox": "block" + }, + { + "id": 814, + "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": 17687, + "minStateId": 17678, + "maxStateId": 17689, + "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": 815, + "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": 17699, + "minStateId": 17690, + "maxStateId": 17701, + "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": 816, + "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": 17711, + "minStateId": 17702, + "maxStateId": 17713, + "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": 817, + "name": "tuff", + "displayName": "Tuff", + "hardness": 1.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17714, + "minStateId": 17714, + "maxStateId": 17714, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 12 + ], + "boundingBox": "block" + }, + { + "id": 818, + "name": "calcite", + "displayName": "Calcite", + "hardness": 0.75, + "resistance": 0.75, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17715, + "minStateId": 17715, + "maxStateId": 17715, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 11 + ], + "boundingBox": "block" + }, + { + "id": 819, + "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": 17716, + "minStateId": 17716, + "maxStateId": 17716, + "states": [], + "drops": [ + 144 + ], + "boundingBox": "block" + }, + { + "id": 820, + "name": "powder_snow", + "displayName": "Powder Snow Bucket", + "hardness": 0.25, + "resistance": 0.25, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 1, + "defaultState": 17717, + "minStateId": 17717, + "maxStateId": 17717, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 821, + "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": 17719, + "minStateId": 17718, + "maxStateId": 17813, + "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": [ + 603 + ], + "boundingBox": "block" + }, + { + "id": 822, + "name": "oxidized_copper", + "displayName": "Oxidized Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17814, + "minStateId": 17814, + "maxStateId": 17814, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 72 + ], + "boundingBox": "block" + }, + { + "id": 823, + "name": "weathered_copper", + "displayName": "Weathered Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17815, + "minStateId": 17815, + "maxStateId": 17815, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 71 + ], + "boundingBox": "block" + }, + { + "id": 824, + "name": "exposed_copper", + "displayName": "Exposed Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17816, + "minStateId": 17816, + "maxStateId": 17816, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 70 + ], + "boundingBox": "block" + }, + { + "id": 825, + "name": "copper_block", + "displayName": "Block of Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17817, + "minStateId": 17817, + "maxStateId": 17817, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 66 + ], + "boundingBox": "block" + }, + { + "id": 826, + "name": "copper_ore", + "displayName": "Copper Ore", + "hardness": 3, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17818, + "minStateId": 17818, + "maxStateId": 17818, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 693 + ], + "boundingBox": "block" + }, + { + "id": 827, + "name": "deepslate_copper_ore", + "displayName": "Deepslate Copper Ore", + "hardness": 4.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17819, + "minStateId": 17819, + "maxStateId": 17819, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 693 + ], + "boundingBox": "block" + }, + { + "id": 828, + "name": "oxidized_cut_copper", + "displayName": "Oxidized Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17820, + "minStateId": 17820, + "maxStateId": 17820, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 76 + ], + "boundingBox": "block" + }, + { + "id": 829, + "name": "weathered_cut_copper", + "displayName": "Weathered Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17821, + "minStateId": 17821, + "maxStateId": 17821, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 75 + ], + "boundingBox": "block" + }, + { + "id": 830, + "name": "exposed_cut_copper", + "displayName": "Exposed Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17822, + "minStateId": 17822, + "maxStateId": 17822, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 74 + ], + "boundingBox": "block" + }, + { + "id": 831, + "name": "cut_copper", + "displayName": "Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 17823, + "minStateId": 17823, + "maxStateId": 17823, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 73 + ], + "boundingBox": "block" + }, + { + "id": 832, + "name": "oxidized_cut_copper_stairs", + "displayName": "Oxidized Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17835, + "minStateId": 17824, + "maxStateId": 17903, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 80 + ], + "boundingBox": "block" + }, + { + "id": 833, + "name": "weathered_cut_copper_stairs", + "displayName": "Weathered Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17915, + "minStateId": 17904, + "maxStateId": 17983, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 79 + ], + "boundingBox": "block" + }, + { + "id": 834, + "name": "exposed_cut_copper_stairs", + "displayName": "Exposed Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 17995, + "minStateId": 17984, + "maxStateId": 18063, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 78 + ], + "boundingBox": "block" + }, + { + "id": 835, + "name": "cut_copper_stairs", + "displayName": "Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18075, + "minStateId": 18064, + "maxStateId": 18143, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 77 + ], + "boundingBox": "block" + }, + { + "id": 836, + "name": "oxidized_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18147, + "minStateId": 18144, + "maxStateId": 18149, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 84 + ], + "boundingBox": "block" + }, + { + "id": 837, + "name": "weathered_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18153, + "minStateId": 18150, + "maxStateId": 18155, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 83 + ], + "boundingBox": "block" + }, + { + "id": 838, + "name": "exposed_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18159, + "minStateId": 18156, + "maxStateId": 18161, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 82 + ], + "boundingBox": "block" + }, + { + "id": 839, + "name": "cut_copper_slab", + "displayName": "Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18165, + "minStateId": 18162, + "maxStateId": 18167, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 81 + ], + "boundingBox": "block" + }, + { + "id": 840, + "name": "waxed_copper_block", + "displayName": "Waxed Block of Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18168, + "minStateId": 18168, + "maxStateId": 18168, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 85 + ], + "boundingBox": "block" + }, + { + "id": 841, + "name": "waxed_weathered_copper", + "displayName": "Waxed Weathered Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18169, + "minStateId": 18169, + "maxStateId": 18169, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 87 + ], + "boundingBox": "block" + }, + { + "id": 842, + "name": "waxed_exposed_copper", + "displayName": "Waxed Exposed Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18170, + "minStateId": 18170, + "maxStateId": 18170, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 86 + ], + "boundingBox": "block" + }, + { + "id": 843, + "name": "waxed_oxidized_copper", + "displayName": "Waxed Oxidized Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18171, + "minStateId": 18171, + "maxStateId": 18171, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 88 + ], + "boundingBox": "block" + }, + { + "id": 844, + "name": "waxed_oxidized_cut_copper", + "displayName": "Waxed Oxidized Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18172, + "minStateId": 18172, + "maxStateId": 18172, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 92 + ], + "boundingBox": "block" + }, + { + "id": 845, + "name": "waxed_weathered_cut_copper", + "displayName": "Waxed Weathered Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18173, + "minStateId": 18173, + "maxStateId": 18173, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 91 + ], + "boundingBox": "block" + }, + { + "id": 846, + "name": "waxed_exposed_cut_copper", + "displayName": "Waxed Exposed Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18174, + "minStateId": 18174, + "maxStateId": 18174, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 90 + ], + "boundingBox": "block" + }, + { + "id": 847, + "name": "waxed_cut_copper", + "displayName": "Waxed Cut Copper", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18175, + "minStateId": 18175, + "maxStateId": 18175, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 89 + ], + "boundingBox": "block" + }, + { + "id": 848, + "name": "waxed_oxidized_cut_copper_stairs", + "displayName": "Waxed Oxidized Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18187, + "minStateId": 18176, + "maxStateId": 18255, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 96 + ], + "boundingBox": "block" + }, + { + "id": 849, + "name": "waxed_weathered_cut_copper_stairs", + "displayName": "Waxed Weathered Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18267, + "minStateId": 18256, + "maxStateId": 18335, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 95 + ], + "boundingBox": "block" + }, + { + "id": 850, + "name": "waxed_exposed_cut_copper_stairs", + "displayName": "Waxed Exposed Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18347, + "minStateId": 18336, + "maxStateId": 18415, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 94 + ], + "boundingBox": "block" + }, + { + "id": 851, + "name": "waxed_cut_copper_stairs", + "displayName": "Waxed Cut Copper Stairs", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18427, + "minStateId": 18416, + "maxStateId": 18495, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 93 + ], + "boundingBox": "block" + }, + { + "id": 852, + "name": "waxed_oxidized_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18499, + "minStateId": 18496, + "maxStateId": 18501, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 100 + ], + "boundingBox": "block" + }, + { + "id": 853, + "name": "waxed_weathered_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18505, + "minStateId": 18502, + "maxStateId": 18507, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 99 + ], + "boundingBox": "block" + }, + { + "id": 854, + "name": "waxed_exposed_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18511, + "minStateId": 18508, + "maxStateId": 18513, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 98 + ], + "boundingBox": "block" + }, + { + "id": 855, + "name": "waxed_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18517, + "minStateId": 18514, + "maxStateId": 18519, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 97 + ], + "boundingBox": "block" + }, + { + "id": 856, + "name": "lightning_rod", + "displayName": "Lightning Rod", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18539, + "minStateId": 18520, + "maxStateId": 18543, + "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": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 601 + ], + "boundingBox": "block" + }, + { + "id": 857, + "name": "pointed_dripstone", + "displayName": "Pointed Dripstone", + "hardness": 1.5, + "resistance": 3, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18549, + "minStateId": 18544, + "maxStateId": 18563, + "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": [ + 1099 + ], + "boundingBox": "block" + }, + { + "id": 858, + "name": "dripstone_block", + "displayName": "Dripstone Block", + "hardness": 1.5, + "resistance": 1, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18564, + "minStateId": 18564, + "maxStateId": 18564, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 13 + ], + "boundingBox": "block" + }, + { + "id": 859, + "name": "cave_vines", + "displayName": "Glow Berries", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18566, + "minStateId": 18565, + "maxStateId": 18616, + "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": 860, + "name": "cave_vines_plant", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18618, + "minStateId": 18617, + "maxStateId": 18618, + "states": [ + { + "name": "berries", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 861, + "name": "spore_blossom", + "displayName": "Spore Blossom", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18619, + "minStateId": 18619, + "maxStateId": 18619, + "states": [], + "drops": [ + 186 + ], + "boundingBox": "empty" + }, + { + "id": 862, + "name": "azalea", + "displayName": "Azalea", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18620, + "minStateId": 18620, + "maxStateId": 18620, + "states": [], + "drops": [ + 152 + ], + "boundingBox": "block" + }, + { + "id": 863, + "name": "flowering_azalea", + "displayName": "Flowering Azalea", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18621, + "minStateId": 18621, + "maxStateId": 18621, + "states": [], + "drops": [ + 153 + ], + "boundingBox": "block" + }, + { + "id": 864, + "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": 18622, + "minStateId": 18622, + "maxStateId": 18622, + "states": [], + "drops": [ + 198 + ], + "boundingBox": "block" + }, + { + "id": 865, + "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": 18623, + "minStateId": 18623, + "maxStateId": 18623, + "states": [], + "drops": [ + 199 + ], + "boundingBox": "block" + }, + { + "id": 866, + "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": 18625, + "minStateId": 18624, + "maxStateId": 18655, + "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": [ + 201 + ], + "boundingBox": "block" + }, + { + "id": 867, + "name": "big_dripleaf_stem", + "displayName": "Air", + "hardness": 0.1, + "resistance": 0.1, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18657, + "minStateId": 18656, + "maxStateId": 18663, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 201 + ], + "boundingBox": "empty" + }, + { + "id": 868, + "name": "small_dripleaf", + "displayName": "Small Dripleaf", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18667, + "minStateId": 18664, + "maxStateId": 18679, + "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": 869, + "name": "hanging_roots", + "displayName": "Hanging Roots", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18681, + "minStateId": 18680, + "maxStateId": 18681, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 870, + "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": 18682, + "minStateId": 18682, + "maxStateId": 18682, + "states": [], + "drops": [ + 18 + ], + "boundingBox": "block" + }, + { + "id": 871, + "name": "deepslate", + "displayName": "Deepslate", + "hardness": 3, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18684, + "minStateId": 18683, + "maxStateId": 18685, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 9 + ], + "boundingBox": "block" + }, + { + "id": 872, + "name": "cobbled_deepslate", + "displayName": "Cobbled Deepslate", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18686, + "minStateId": 18686, + "maxStateId": 18686, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 9 + ], + "boundingBox": "block" + }, + { + "id": 873, + "name": "cobbled_deepslate_stairs", + "displayName": "Cobbled Deepslate Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18698, + "minStateId": 18687, + "maxStateId": 18766, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 563 + ], + "boundingBox": "block" + }, + { + "id": 874, + "name": "cobbled_deepslate_slab", + "displayName": "Cobbled Deepslate Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18770, + "minStateId": 18767, + "maxStateId": 18772, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 580 + ], + "boundingBox": "block" + }, + { + "id": 875, + "name": "cobbled_deepslate_wall", + "displayName": "Cobbled Deepslate Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 18776, + "minStateId": 18773, + "maxStateId": 19096, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 342 + ], + "boundingBox": "block" + }, + { + "id": 876, + "name": "polished_deepslate", + "displayName": "Polished Deepslate", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19097, + "minStateId": 19097, + "maxStateId": 19097, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 10 + ], + "boundingBox": "block" + }, + { + "id": 877, + "name": "polished_deepslate_stairs", + "displayName": "Polished Deepslate Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19109, + "minStateId": 19098, + "maxStateId": 19177, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 564 + ], + "boundingBox": "block" + }, + { + "id": 878, + "name": "polished_deepslate_slab", + "displayName": "Polished Deepslate Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19181, + "minStateId": 19178, + "maxStateId": 19183, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 581 + ], + "boundingBox": "block" + }, + { + "id": 879, + "name": "polished_deepslate_wall", + "displayName": "Polished Deepslate Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19187, + "minStateId": 19184, + "maxStateId": 19507, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 343 + ], + "boundingBox": "block" + }, + { + "id": 880, + "name": "deepslate_tiles", + "displayName": "Deepslate Tiles", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19508, + "minStateId": 19508, + "maxStateId": 19508, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 289 + ], + "boundingBox": "block" + }, + { + "id": 881, + "name": "deepslate_tile_stairs", + "displayName": "Deepslate Tile Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19520, + "minStateId": 19509, + "maxStateId": 19588, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 566 + ], + "boundingBox": "block" + }, + { + "id": 882, + "name": "deepslate_tile_slab", + "displayName": "Deepslate Tile Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19592, + "minStateId": 19589, + "maxStateId": 19594, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 583 + ], + "boundingBox": "block" + }, + { + "id": 883, + "name": "deepslate_tile_wall", + "displayName": "Deepslate Tile Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19598, + "minStateId": 19595, + "maxStateId": 19918, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 345 + ], + "boundingBox": "block" + }, + { + "id": 884, + "name": "deepslate_bricks", + "displayName": "Deepslate Bricks", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19919, + "minStateId": 19919, + "maxStateId": 19919, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 287 + ], + "boundingBox": "block" + }, + { + "id": 885, + "name": "deepslate_brick_stairs", + "displayName": "Deepslate Brick Stairs", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19931, + "minStateId": 19920, + "maxStateId": 19999, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 565 + ], + "boundingBox": "block" + }, + { + "id": 886, + "name": "deepslate_brick_slab", + "displayName": "Deepslate Brick Slab", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20003, + "minStateId": 20000, + "maxStateId": 20005, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 582 + ], + "boundingBox": "block" + }, + { + "id": 887, + "name": "deepslate_brick_wall", + "displayName": "Deepslate Brick Wall", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20009, + "minStateId": 20006, + "maxStateId": 20329, + "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": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 344 + ], + "boundingBox": "block" + }, + { + "id": 888, + "name": "chiseled_deepslate", + "displayName": "Chiseled Deepslate", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20330, + "minStateId": 20330, + "maxStateId": 20330, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 291 + ], + "boundingBox": "block" + }, + { + "id": 889, + "name": "cracked_deepslate_bricks", + "displayName": "Cracked Deepslate Bricks", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20331, + "minStateId": 20331, + "maxStateId": 20331, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 288 + ], + "boundingBox": "block" + }, + { + "id": 890, + "name": "cracked_deepslate_tiles", + "displayName": "Cracked Deepslate Tiles", + "hardness": 3.5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20332, + "minStateId": 20332, + "maxStateId": 20332, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 290 + ], + "boundingBox": "block" + }, + { + "id": 891, + "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": 20334, + "minStateId": 20333, + "maxStateId": 20335, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 892, + "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": 20336, + "minStateId": 20336, + "maxStateId": 20336, + "states": [], + "harvestTools": { + "701": true, + "706": true, + "711": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 273 + ], + "boundingBox": "block" + }, + { + "id": 893, + "name": "raw_iron_block", + "displayName": "Block of Raw Iron", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20337, + "minStateId": 20337, + "maxStateId": 20337, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 60 + ], + "boundingBox": "block" + }, + { + "id": 894, + "name": "raw_copper_block", + "displayName": "Block of Raw Copper", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20338, + "minStateId": 20338, + "maxStateId": 20338, + "states": [], + "harvestTools": { + "706": true, + "716": true, + "721": true, + "726": true + }, + "drops": [ + 61 + ], + "boundingBox": "block" + }, + { + "id": 895, + "name": "raw_gold_block", + "displayName": "Block of Raw Gold", + "hardness": 5, + "resistance": 6, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 20339, + "minStateId": 20339, + "maxStateId": 20339, + "states": [], + "harvestTools": { + "716": true, + "721": true, + "726": true + }, + "drops": [ + 62 + ], + "boundingBox": "block" + }, + { + "id": 896, + "name": "potted_azalea_bush", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20340, + "minStateId": 20340, + "maxStateId": 20340, + "states": [], + "drops": [ + 946, + 152 + ], + "boundingBox": "block" + }, + { + "id": 897, + "name": "potted_flowering_azalea_bush", + "displayName": "Air", + "hardness": 0, + "resistance": 0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 20341, + "minStateId": 20341, + "maxStateId": 20341, + "states": [], + "drops": [ + 946, + 153 + ], + "boundingBox": "block" + } +] \ No newline at end of file diff --git a/src/block.rs b/src/block.rs new file mode 100644 index 0000000..59e7b05 --- /dev/null +++ b/src/block.rs @@ -0,0 +1,20 @@ +#![allow(clippy::all)] + +include!(concat!(env!("OUT_DIR"), "/block.rs")); + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn get_set_consistency() { + for typ in BlockType::ALL { + let block = typ.to_state(); + + for &prop in typ.props() { + let new_block = block.set(prop, block.get(prop).unwrap()); + assert_eq!(new_block, block); + } + } + } +} diff --git a/src/lib.rs b/src/lib.rs index b00d704..4d0cbe0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,6 +19,7 @@ pub mod util; mod var_int; mod var_long; mod world; +pub mod block; pub use aabb::Aabb; pub use chunk::{Chunk, ChunkPos}; diff --git a/valence-data/Cargo.toml b/valence-data/Cargo.toml deleted file mode 100644 index 6a3e596..0000000 --- a/valence-data/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "valence-data" -version = "0.1.0" -edition = "2021" -description = "Generated code for the Valence project." -repository = "https://github.com/rj00a/valence" -license = "MIT" - -[dependencies] diff --git a/valence-data/src/lib.rs b/valence-data/src/lib.rs deleted file mode 100644 index 1b4a90c..0000000 --- a/valence-data/src/lib.rs +++ /dev/null @@ -1,8 +0,0 @@ -#[cfg(test)] -mod tests { - #[test] - fn it_works() { - let result = 2 + 2; - assert_eq!(result, 4); - } -}