diff --git a/build/entity.rs b/build/entity.rs index 110d49e..62d41f5 100644 --- a/build/entity.rs +++ b/build/entity.rs @@ -41,9 +41,14 @@ enum Type { Nbt, Particle, VillagerData, - Pose, - // ==== Specialized ==== // + /// Also known as OptVarInt OptEntityId, + Pose, + CatVariant, + FrogVariant, + OptGlobalPosition, + PaintingVariant, + // ==== Specialized ==== // BoatVariant, MainHand, } @@ -83,8 +88,12 @@ impl Type { Type::Nbt => quote! { nbt::Blob::new() }, Type::Particle => quote! { () }, // TODO Type::VillagerData => quote! { VillagerData::default() }, - Type::Pose => quote! { Pose::default() }, Type::OptEntityId => quote! { None }, + Type::Pose => quote! { Pose::default() }, + Type::CatVariant => quote! { CatVariant::default() }, + Type::FrogVariant => quote! { FrogVariant::default() }, + Type::OptGlobalPosition => quote! { () }, // TODO + Type::PaintingVariant => quote! { PaintingVariant::default() }, Type::BoatVariant => quote! { BoatVariant::default() }, Type::MainHand => quote! { MainHand::default() }, } @@ -110,8 +119,12 @@ impl Type { Type::Nbt => 14, Type::Particle => 15, Type::VillagerData => 16, - Type::Pose => 18, Type::OptEntityId => 17, + Type::Pose => 18, + Type::CatVariant => 19, + Type::FrogVariant => 20, + Type::OptGlobalPosition => 21, + Type::PaintingVariant => 22, Type::BoatVariant => 1, Type::MainHand => 0, } @@ -225,6 +238,56 @@ const ABSTRACT_ARROW: Class = Class { ], }; +const ITEM_FRAME: Class = Class { + name: "item_frame", + inherit: Some(&BASE_ENTITY), + fields: &[ + Field { + name: "item", + typ: Type::Slot, + }, + Field { + name: "rotation", + typ: Type::VarInt(0), // TODO: Direction enum? + }, + ], +}; + +const BOAT: Class = Class { + name: "boat", + inherit: Some(&BASE_ENTITY), + fields: &[ + Field { + name: "last_hit_ticks", + typ: Type::VarInt(0), + }, + Field { + name: "forward_direction", + typ: Type::VarInt(1), // TODO: direction enum? + }, + Field { + name: "damage_taken", + typ: Type::Float(0.0), + }, + Field { + name: "typ", + typ: Type::BoatVariant, + }, + Field { + name: "left_paddle_turning", + typ: Type::Bool(false), + }, + Field { + name: "right_paddle_turning", + typ: Type::Bool(false), + }, + Field { + name: "splash_timer", + typ: Type::VarInt(0), + }, + ], +}; + const LIVING_ENTITY: Class = Class { name: "living_entity", inherit: Some(&BASE_ENTITY), @@ -566,6 +629,11 @@ const ABSTRACT_MINECART_CONTAINER: Class = Class { }; const ENTITIES: &[Class] = &[ + Class { + name: "allay", + inherit: Some(&PATHFINDER_MOB), + fields: &[], // TODO: fields? + }, Class { // TODO: how is this defined? name: "leash_knot", @@ -583,11 +651,6 @@ const ENTITIES: &[Class] = &[ inherit: None, fields: &[], }, - Class { - name: "painting", - inherit: None, - fields: &[], - }, Class { name: "marker", inherit: None, @@ -717,39 +780,21 @@ const ENTITIES: &[Class] = &[ }, ], }, + BOAT, Class { - name: "boat", - inherit: Some(&BASE_ENTITY), - fields: &[ - Field { - name: "last_hit_ticks", - typ: Type::VarInt(0), - }, - Field { - name: "forward_direction", - typ: Type::VarInt(1), // TODO: direction enum? - }, - Field { - name: "damage_taken", - typ: Type::Float(0.0), - }, - Field { - name: "typ", - typ: Type::BoatVariant, - }, - Field { - name: "left_paddle_turning", - typ: Type::Bool(false), - }, - Field { - name: "right_paddle_turning", - typ: Type::Bool(false), - }, - Field { - name: "splash_timer", - typ: Type::VarInt(0), - }, - ], + name: "chest_boat", + inherit: Some(&BOAT), + fields: &[], + }, + Class { + name: "tadpole", + inherit: Some(&ABSTRACT_FISH), + fields: &[], + }, + Class { + name: "warden", + inherit: Some(&MONSTER), + fields: &[], // TODO: warden anger }, Class { name: "end_crystal", @@ -812,34 +857,19 @@ const ENTITIES: &[Class] = &[ }, ], }, + ITEM_FRAME, Class { - name: "item_frame", - inherit: Some(&BASE_ENTITY), - fields: &[ - Field { - name: "item", - typ: Type::Slot, - }, - Field { - name: "rotation", - typ: Type::VarInt(0), // TODO: Direction enum? - }, - ], + name: "glow_item_frame", + inherit: Some(&ITEM_FRAME), + fields: &[], }, Class { - // TODO: How is glow item frame defined? This is a guess. - name: "glow_item_frame", + name: "painting", inherit: Some(&BASE_ENTITY), - fields: &[ - Field { - name: "item", - typ: Type::Slot, - }, - Field { - name: "rotation", - typ: Type::VarInt(0), // TODO: Direction enum? - }, - ], + fields: &[Field { + name: "variant", + typ: Type::PaintingVariant, + }], }, Class { name: "player", @@ -905,6 +935,10 @@ const ENTITIES: &[Class] = &[ name: "right_shoulder_entity_data", typ: Type::Nbt, }, + Field { + name: "global_position", + typ: Type::OptGlobalPosition, + } ], }, Class { @@ -1187,6 +1221,20 @@ const ENTITIES: &[Class] = &[ }, ], }, + Class { + name: "frog", + inherit: Some(&ANIMAL), + fields: &[ + Field { + name: "variant", + typ: Type::FrogVariant, + }, + Field { + name: "tongue_target", + typ: Type::VarInt(0), + } + ], + }, Class { name: "ocelot", inherit: Some(&ANIMAL), @@ -1339,7 +1387,20 @@ const ENTITIES: &[Class] = &[ Class { name: "goat", inherit: Some(&ANIMAL), - fields: &[], // TODO: What are the goat fields? + fields: &[ + Field { + name: "screaming", + typ: Type::Bool(false), + }, + Field { + name: "left_horn", + typ: Type::Bool(true), + }, + Field { + name: "right_horn", + typ: Type::Bool(true), + } + ], }, Class { name: "strider", @@ -1365,7 +1426,7 @@ const ENTITIES: &[Class] = &[ fields: &[ Field { name: "variant", - typ: Type::VarInt(1), // TODO: cat variant enum. + typ: Type::CatVariant, }, Field { name: "lying", @@ -1849,49 +1910,6 @@ pub fn build() -> anyhow::Result<()> { .map(|c| ident(c.name.to_pascal_case())) .collect::>(); - /* - let set_type_arms = entities.iter().map(|&entity| { - let entity_name = ident(entity.name.to_pascal_case()); - - let mut old_fields = Vec::new(); - collect_class_fields(entity, &mut old_fields); - - let new_type_arms = entities.iter().map(|&new_entity| { - let new_entity_name = ident(new_entity.name.to_pascal_case()); - - let mut new_fields = Vec::new(); - collect_class_fields(new_entity, &mut new_fields); - - let assign_fields = new_fields - .iter() - .cloned() - .filter(|&new_field| old_fields.iter().any(|&f| f.name == new_field.name)) - .map(|new_field| { - let name = ident(new_field.name.to_snake_case()); - quote! { - new.#name = old.#name; - } - }); - - quote! { - EntityType::#new_entity_name => { - let mut new = #new_entity_name::new(); - - #(#assign_fields)* - - *self = Self::#new_entity_name(new); - } - } - }); - - quote! { - Self::#entity_name(old) => match new_type { - #(#new_type_arms)* - }, - } - }); - */ - let entity_structs = entities.iter().map(|&class| { let mut fields = Vec::new(); collect_class_fields(class, &mut fields); @@ -1918,8 +1936,12 @@ pub fn build() -> anyhow::Result<()> { Type::Nbt => quote! { nbt::Blob }, Type::Particle => quote! { () }, // TODO Type::VillagerData => quote! { VillagerData }, - Type::Pose => quote! { Pose }, Type::OptEntityId => quote! { Option }, + Type::Pose => quote! { Pose }, + Type::CatVariant => quote! { CatVariant }, + Type::FrogVariant => quote! { FrogVariant }, + Type::OptGlobalPosition => quote! { () }, // TODO + Type::PaintingVariant => quote! { PaintingVariant }, Type::BoatVariant => quote! { BoatVariant }, Type::MainHand => quote! { MainHand }, }; @@ -2071,8 +2093,12 @@ pub fn build() -> anyhow::Result<()> { }, Type::Particle => quote! {}, // TODO Type::VillagerData => standard_getter_setter(quote!(VillagerData)), - Type::Pose => standard_getter_setter(quote!(Pose)), Type::OptEntityId => standard_getter_setter(quote!(Option)), + Type::Pose => standard_getter_setter(quote!(Pose)), + Type::CatVariant => standard_getter_setter(quote!(CatVariant)), + Type::FrogVariant => standard_getter_setter(quote!(FrogVariant)), + Type::OptGlobalPosition => quote! {}, // TODO + Type::PaintingVariant => standard_getter_setter(quote!(PaintingVariant)), Type::BoatVariant => standard_getter_setter(quote!(BoatVariant)), Type::MainHand => standard_getter_setter(quote!(MainHand)), } diff --git a/data/blocks.json b/data/blocks.json index 1d0184d..b5fc758 100644 --- a/data/blocks.json +++ b/data/blocks.json @@ -3,10 +3,10 @@ "id": 0, "name": "air", "displayName": "Air", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, - "diggable": true, + "diggable": false, "material": "default", "transparent": true, "emitLight": 0, @@ -23,7 +23,7 @@ "name": "stone", "displayName": "Stone", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -35,15 +35,15 @@ "maxStateId": 1, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 21 + 22 ], "boundingBox": "block" }, @@ -52,7 +52,7 @@ "name": "granite", "displayName": "Granite", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -64,12 +64,12 @@ "maxStateId": 2, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 2 @@ -81,7 +81,7 @@ "name": "polished_granite", "displayName": "Polished Granite", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -93,12 +93,12 @@ "maxStateId": 3, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 3 @@ -110,7 +110,7 @@ "name": "diorite", "displayName": "Diorite", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -122,12 +122,12 @@ "maxStateId": 4, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 4 @@ -139,7 +139,7 @@ "name": "polished_diorite", "displayName": "Polished Diorite", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -151,12 +151,12 @@ "maxStateId": 5, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 5 @@ -168,7 +168,7 @@ "name": "andesite", "displayName": "Andesite", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -180,12 +180,12 @@ "maxStateId": 6, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 6 @@ -197,7 +197,7 @@ "name": "polished_andesite", "displayName": "Polished Andesite", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -209,12 +209,12 @@ "maxStateId": 7, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 7 @@ -321,8 +321,8 @@ "id": 12, "name": "cobblestone", "displayName": "Cobblestone", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", @@ -334,15 +334,15 @@ "maxStateId": 14, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 21 + 22 ], "boundingBox": "block" }, @@ -350,8 +350,8 @@ "id": 13, "name": "oak_planks", "displayName": "Oak Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", @@ -363,7 +363,7 @@ "maxStateId": 15, "states": [], "drops": [ - 22 + 23 ], "boundingBox": "block" }, @@ -371,8 +371,8 @@ "id": 14, "name": "spruce_planks", "displayName": "Spruce Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", @@ -384,7 +384,7 @@ "maxStateId": 16, "states": [], "drops": [ - 23 + 24 ], "boundingBox": "block" }, @@ -392,8 +392,8 @@ "id": 15, "name": "birch_planks", "displayName": "Birch Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", @@ -405,7 +405,7 @@ "maxStateId": 17, "states": [], "drops": [ - 24 + 25 ], "boundingBox": "block" }, @@ -413,8 +413,8 @@ "id": 16, "name": "jungle_planks", "displayName": "Jungle Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", @@ -426,7 +426,7 @@ "maxStateId": 18, "states": [], "drops": [ - 25 + 26 ], "boundingBox": "block" }, @@ -434,8 +434,8 @@ "id": 17, "name": "acacia_planks", "displayName": "Acacia Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", @@ -447,7 +447,7 @@ "maxStateId": 19, "states": [], "drops": [ - 26 + 27 ], "boundingBox": "block" }, @@ -455,8 +455,8 @@ "id": 18, "name": "dark_oak_planks", "displayName": "Dark Oak Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", @@ -468,87 +468,46 @@ "maxStateId": 20, "states": [], "drops": [ - 27 + 28 ], "boundingBox": "block" }, { "id": 19, - "name": "oak_sapling", - "displayName": "Oak Sapling", - "hardness": 0, - "resistance": 0, + "name": "mangrove_planks", + "displayName": "Mangrove Planks", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", - "transparent": true, + "material": "mineable/axe", + "transparent": false, "emitLight": 0, - "filterLight": 0, + "filterLight": 15, "defaultState": 21, "minStateId": 21, - "maxStateId": 22, - "states": [ - { - "name": "stage", - "type": "int", - "num_values": 2, - "values": [ - "0", - "1" - ] - } - ], + "maxStateId": 21, + "states": [], "drops": [ - 30 + 29 ], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 20, - "name": "spruce_sapling", - "displayName": "Spruce Sapling", - "hardness": 0, - "resistance": 0, + "name": "oak_sapling", + "displayName": "Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 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, + "defaultState": 22, + "minStateId": 22, + "maxStateId": 23, "states": [ { "name": "stage", @@ -566,20 +525,20 @@ "boundingBox": "empty" }, { - "id": 22, - "name": "jungle_sapling", - "displayName": "Jungle Sapling", - "hardness": 0, - "resistance": 0, + "id": 21, + "name": "spruce_sapling", + "displayName": "Spruce Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 27, - "minStateId": 27, - "maxStateId": 28, + "defaultState": 24, + "minStateId": 24, + "maxStateId": 25, "states": [ { "name": "stage", @@ -597,20 +556,20 @@ "boundingBox": "empty" }, { - "id": 23, - "name": "acacia_sapling", - "displayName": "Acacia Sapling", - "hardness": 0, - "resistance": 0, + "id": 22, + "name": "birch_sapling", + "displayName": "Birch Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 29, - "minStateId": 29, - "maxStateId": 30, + "defaultState": 26, + "minStateId": 26, + "maxStateId": 27, "states": [ { "name": "stage", @@ -628,20 +587,20 @@ "boundingBox": "empty" }, { - "id": 24, - "name": "dark_oak_sapling", - "displayName": "Dark Oak Sapling", - "hardness": 0, - "resistance": 0, + "id": 23, + "name": "jungle_sapling", + "displayName": "Jungle Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 31, - "minStateId": 31, - "maxStateId": 32, + "defaultState": 28, + "minStateId": 28, + "maxStateId": 29, "states": [ { "name": "stage", @@ -659,62 +618,113 @@ "boundingBox": "empty" }, { - "id": 25, - "name": "bedrock", - "displayName": "Bedrock", - "hardness": 0, - "resistance": 3600000, + "id": 24, + "name": "acacia_sapling", + "displayName": "Acacia Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, - "diggable": false, - "material": "default", - "transparent": false, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, "emitLight": 0, - "filterLight": 15, - "defaultState": 33, - "minStateId": 33, + "filterLight": 0, + "defaultState": 30, + "minStateId": 30, + "maxStateId": 31, + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 36 + ], + "boundingBox": "empty" + }, + { + "id": 25, + "name": "dark_oak_sapling", + "displayName": "Dark Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 32, + "minStateId": 32, "maxStateId": 33, - "states": [], - "drops": [], - "boundingBox": "block" + "states": [ + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + } + ], + "drops": [ + 37 + ], + "boundingBox": "empty" }, { "id": 26, - "name": "water", - "displayName": "Air", - "hardness": 100, - "resistance": 100, + "name": "mangrove_propagule", + "displayName": "Mangrove Propagule", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "default", + "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, - "filterLight": 1, - "defaultState": 34, + "filterLight": 0, + "defaultState": 39, "minStateId": 34, - "maxStateId": 49, + "maxStateId": 73, "states": [ { - "name": "level", + "name": "age", "type": "int", - "num_values": 16, + "num_values": 5, "values": [ "0", "1", "2", "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "4" ] + }, + { + "name": "hanging", + "type": "bool", + "num_values": 2 + }, + { + "name": "stage", + "type": "int", + "num_values": 2, + "values": [ + "0", + "1" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], @@ -722,19 +732,38 @@ }, { "id": 27, - "name": "lava", - "displayName": "Air", - "hardness": 100, - "resistance": 100, + "name": "bedrock", + "displayName": "Bedrock", + "hardness": -1.0, + "resistance": 3600000.0, + "stackSize": 64, + "diggable": false, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 74, + "minStateId": 74, + "maxStateId": 74, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 28, + "name": "water", + "displayName": "Water", + "hardness": 100.0, + "resistance": 100.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, - "emitLight": 15, + "emitLight": 0, "filterLight": 1, - "defaultState": 50, - "minStateId": 50, - "maxStateId": 65, + "defaultState": 75, + "minStateId": 75, + "maxStateId": 90, "states": [ { "name": "level", @@ -764,7 +793,50 @@ "boundingBox": "empty" }, { - "id": 28, + "id": 29, + "name": "lava", + "displayName": "Lava", + "hardness": 100.0, + "resistance": 100.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 15, + "filterLight": 1, + "defaultState": 91, + "minStateId": 91, + "maxStateId": 106, + "states": [ + { + "name": "level", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 30, "name": "sand", "displayName": "Sand", "hardness": 0.5, @@ -775,17 +847,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 66, - "minStateId": 66, - "maxStateId": 66, + "defaultState": 107, + "minStateId": 107, + "maxStateId": 107, "states": [], "drops": [ - 37 + 40 ], "boundingBox": "block" }, { - "id": 29, + "id": 31, "name": "red_sand", "displayName": "Red Sand", "hardness": 0.5, @@ -796,17 +868,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 67, - "minStateId": 67, - "maxStateId": 67, + "defaultState": 108, + "minStateId": 108, + "maxStateId": 108, "states": [], "drops": [ - 38 + 41 ], "boundingBox": "block" }, { - "id": 30, + "id": 32, "name": "gravel", "displayName": "Gravel", "hardness": 0.6, @@ -817,319 +889,223 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 68, - "minStateId": 68, - "maxStateId": 68, + "defaultState": 109, + "minStateId": 109, + "maxStateId": 109, "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 + 42 ], "boundingBox": "block" }, { "id": 33, - "name": "iron_ore", - "displayName": "Iron Ore", - "hardness": 3, - "resistance": 3, + "name": "gold_ore", + "displayName": "Gold Ore", + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 71, - "minStateId": 71, - "maxStateId": 71, + "defaultState": 110, + "minStateId": 110, + "maxStateId": 110, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 691 + 731 ], "boundingBox": "block" }, { "id": 34, - "name": "deepslate_iron_ore", - "displayName": "Deepslate Iron Ore", + "name": "deepslate_gold_ore", + "displayName": "Deepslate Gold Ore", "hardness": 4.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 72, - "minStateId": 72, - "maxStateId": 72, + "defaultState": 111, + "minStateId": 111, + "maxStateId": 111, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 691 + 731 ], "boundingBox": "block" }, { "id": 35, - "name": "coal_ore", - "displayName": "Coal Ore", - "hardness": 3, - "resistance": 3, + "name": "iron_ore", + "displayName": "Iron Ore", + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 73, - "minStateId": 73, - "maxStateId": 73, + "defaultState": 112, + "minStateId": 112, + "maxStateId": 112, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 684 + 727 ], "boundingBox": "block" }, { "id": 36, - "name": "deepslate_coal_ore", - "displayName": "Deepslate Coal Ore", + "name": "deepslate_iron_ore", + "displayName": "Deepslate Iron Ore", "hardness": 4.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 74, - "minStateId": 74, - "maxStateId": 74, + "defaultState": 113, + "minStateId": 113, + "maxStateId": 113, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 684 + 727 ], "boundingBox": "block" }, { "id": 37, - "name": "nether_gold_ore", - "displayName": "Nether Gold Ore", - "hardness": 3, - "resistance": 3, + "name": "coal_ore", + "displayName": "Coal Ore", + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 75, - "minStateId": 75, - "maxStateId": 75, + "defaultState": 114, + "minStateId": 114, + "maxStateId": 114, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 861 + 720 ], "boundingBox": "block" }, { "id": 38, - "name": "oak_log", - "displayName": "Oak Log", - "hardness": 2, - "resistance": 2, + "name": "deepslate_coal_ore", + "displayName": "Deepslate Coal Ore", + "hardness": 4.5, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/axe", + "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 77, - "minStateId": 76, - "maxStateId": 78, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], + "defaultState": 115, + "minStateId": 115, + "maxStateId": 115, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 101 + 720 ], "boundingBox": "block" }, { "id": 39, - "name": "spruce_log", - "displayName": "Spruce Log", - "hardness": 2, - "resistance": 2, + "name": "nether_gold_ore", + "displayName": "Nether Gold Ore", + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/axe", + "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 80, - "minStateId": 79, - "maxStateId": 81, - "states": [ - { - "name": "axis", - "type": "enum", - "num_values": 3, - "values": [ - "x", - "y", - "z" - ] - } - ], + "defaultState": 116, + "minStateId": 116, + "maxStateId": 116, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 102 + 900 ], "boundingBox": "block" }, { "id": 40, - "name": "birch_log", - "displayName": "Birch Log", - "hardness": 2, - "resistance": 2, + "name": "oak_log", + "displayName": "Oak Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 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, + "defaultState": 118, + "minStateId": 117, + "maxStateId": 119, "states": [ { "name": "axis", @@ -1148,20 +1124,20 @@ "boundingBox": "block" }, { - "id": 42, - "name": "acacia_log", - "displayName": "Acacia Log", - "hardness": 2, - "resistance": 2, + "id": 41, + "name": "spruce_log", + "displayName": "Spruce Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 89, - "minStateId": 88, - "maxStateId": 90, + "defaultState": 121, + "minStateId": 120, + "maxStateId": 122, "states": [ { "name": "axis", @@ -1180,20 +1156,20 @@ "boundingBox": "block" }, { - "id": 43, - "name": "dark_oak_log", - "displayName": "Dark Oak Log", - "hardness": 2, - "resistance": 2, + "id": 42, + "name": "birch_log", + "displayName": "Birch Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 92, - "minStateId": 91, - "maxStateId": 93, + "defaultState": 124, + "minStateId": 123, + "maxStateId": 125, "states": [ { "name": "axis", @@ -1212,20 +1188,20 @@ "boundingBox": "block" }, { - "id": 44, - "name": "stripped_spruce_log", - "displayName": "Stripped Spruce Log", - "hardness": 2, - "resistance": 2, + "id": 43, + "name": "jungle_log", + "displayName": "Jungle Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 95, - "minStateId": 94, - "maxStateId": 96, + "defaultState": 127, + "minStateId": 126, + "maxStateId": 128, "states": [ { "name": "axis", @@ -1239,153 +1215,57 @@ } ], "drops": [ - 110 + 107 + ], + "boundingBox": "block" + }, + { + "id": 44, + "name": "acacia_log", + "displayName": "Acacia Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 130, + "minStateId": 129, + "maxStateId": 131, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 108 ], "boundingBox": "block" }, { "id": 45, - "name": "stripped_birch_log", - "displayName": "Stripped Birch Log", - "hardness": 2, - "resistance": 2, + "name": "dark_oak_log", + "displayName": "Dark Oak Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 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, + "defaultState": 133, + "minStateId": 132, + "maxStateId": 134, "states": [ { "name": "axis", @@ -1403,213 +1283,144 @@ ], "boundingBox": "block" }, + { + "id": 46, + "name": "mangrove_log", + "displayName": "Mangrove Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 136, + "minStateId": 135, + "maxStateId": 137, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 110 + ], + "boundingBox": "block" + }, + { + "id": 47, + "name": "mangrove_roots", + "displayName": "Mangrove Roots", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 139, + "minStateId": 138, + "maxStateId": 139, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 111 + ], + "boundingBox": "block" + }, + { + "id": 48, + "name": "muddy_mangrove_roots", + "displayName": "Muddy Mangrove Roots", + "hardness": 0.7, + "resistance": 0.7, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 141, + "minStateId": 140, + "maxStateId": 142, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 112 + ], + "boundingBox": "block" + }, + { + "id": 49, + "name": "stripped_spruce_log", + "displayName": "Stripped Spruce Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 144, + "minStateId": 143, + "maxStateId": 145, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 116 + ], + "boundingBox": "block" + }, { "id": 50, - "name": "oak_wood", - "displayName": "Oak Wood", - "hardness": 2, - "resistance": 2, + "name": "stripped_birch_log", + "displayName": "Stripped Birch Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 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, + "defaultState": 147, + "minStateId": 146, + "maxStateId": 148, "states": [ { "name": "axis", @@ -1628,20 +1439,20 @@ "boundingBox": "block" }, { - "id": 57, - "name": "stripped_spruce_wood", - "displayName": "Stripped Spruce Wood", - "hardness": 2, - "resistance": 2, + "id": 51, + "name": "stripped_jungle_log", + "displayName": "Stripped Jungle Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 134, - "minStateId": 133, - "maxStateId": 135, + "defaultState": 150, + "minStateId": 149, + "maxStateId": 151, "states": [ { "name": "axis", @@ -1660,20 +1471,20 @@ "boundingBox": "block" }, { - "id": 58, - "name": "stripped_birch_wood", - "displayName": "Stripped Birch Wood", - "hardness": 2, - "resistance": 2, + "id": 52, + "name": "stripped_acacia_log", + "displayName": "Stripped Acacia Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 137, - "minStateId": 136, - "maxStateId": 138, + "defaultState": 153, + "minStateId": 152, + "maxStateId": 154, "states": [ { "name": "axis", @@ -1692,20 +1503,20 @@ "boundingBox": "block" }, { - "id": 59, - "name": "stripped_jungle_wood", - "displayName": "Stripped Jungle Wood", - "hardness": 2, - "resistance": 2, + "id": 53, + "name": "stripped_dark_oak_log", + "displayName": "Stripped Dark Oak Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 140, - "minStateId": 139, - "maxStateId": 141, + "defaultState": 156, + "minStateId": 155, + "maxStateId": 157, "states": [ { "name": "axis", @@ -1724,20 +1535,52 @@ "boundingBox": "block" }, { - "id": 60, - "name": "stripped_acacia_wood", - "displayName": "Stripped Acacia Wood", - "hardness": 2, - "resistance": 2, + "id": 54, + "name": "stripped_oak_log", + "displayName": "Stripped Oak Log", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 143, - "minStateId": 142, - "maxStateId": 144, + "defaultState": 159, + "minStateId": 158, + "maxStateId": 160, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 115 + ], + "boundingBox": "block" + }, + { + "id": 55, + "name": "stripped_mangrove_log", + "displayName": "Stripped Mangrove Log", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 162, + "minStateId": 161, + "maxStateId": 163, "states": [ { "name": "axis", @@ -1756,20 +1599,20 @@ "boundingBox": "block" }, { - "id": 61, - "name": "stripped_dark_oak_wood", - "displayName": "Stripped Dark Oak Wood", - "hardness": 2, - "resistance": 2, + "id": 56, + "name": "oak_wood", + "displayName": "Oak Wood", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 146, - "minStateId": 145, - "maxStateId": 147, + "defaultState": 165, + "minStateId": 164, + "maxStateId": 166, "states": [ { "name": "axis", @@ -1783,12 +1626,428 @@ } ], "drops": [ - 122 + 133 + ], + "boundingBox": "block" + }, + { + "id": 57, + "name": "spruce_wood", + "displayName": "Spruce Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 168, + "minStateId": 167, + "maxStateId": 169, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 134 + ], + "boundingBox": "block" + }, + { + "id": 58, + "name": "birch_wood", + "displayName": "Birch Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 171, + "minStateId": 170, + "maxStateId": 172, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 135 + ], + "boundingBox": "block" + }, + { + "id": 59, + "name": "jungle_wood", + "displayName": "Jungle Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 174, + "minStateId": 173, + "maxStateId": 175, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 136 + ], + "boundingBox": "block" + }, + { + "id": 60, + "name": "acacia_wood", + "displayName": "Acacia Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 177, + "minStateId": 176, + "maxStateId": 178, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 137 + ], + "boundingBox": "block" + }, + { + "id": 61, + "name": "dark_oak_wood", + "displayName": "Dark Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 180, + "minStateId": 179, + "maxStateId": 181, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 138 ], "boundingBox": "block" }, { "id": 62, + "name": "mangrove_wood", + "displayName": "Mangrove Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 183, + "minStateId": 182, + "maxStateId": 184, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 139 + ], + "boundingBox": "block" + }, + { + "id": 63, + "name": "stripped_oak_wood", + "displayName": "Stripped Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 186, + "minStateId": 185, + "maxStateId": 187, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 124 + ], + "boundingBox": "block" + }, + { + "id": 64, + "name": "stripped_spruce_wood", + "displayName": "Stripped Spruce Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 189, + "minStateId": 188, + "maxStateId": 190, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 125 + ], + "boundingBox": "block" + }, + { + "id": 65, + "name": "stripped_birch_wood", + "displayName": "Stripped Birch Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 192, + "minStateId": 191, + "maxStateId": 193, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 126 + ], + "boundingBox": "block" + }, + { + "id": 66, + "name": "stripped_jungle_wood", + "displayName": "Stripped Jungle Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 195, + "minStateId": 194, + "maxStateId": 196, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 127 + ], + "boundingBox": "block" + }, + { + "id": 67, + "name": "stripped_acacia_wood", + "displayName": "Stripped Acacia Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 198, + "minStateId": 197, + "maxStateId": 199, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 128 + ], + "boundingBox": "block" + }, + { + "id": 68, + "name": "stripped_dark_oak_wood", + "displayName": "Stripped Dark Oak Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 201, + "minStateId": 200, + "maxStateId": 202, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 129 + ], + "boundingBox": "block" + }, + { + "id": 69, + "name": "stripped_mangrove_wood", + "displayName": "Stripped Mangrove Wood", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 204, + "minStateId": 203, + "maxStateId": 205, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 130 + ], + "boundingBox": "block" + }, + { + "id": 70, "name": "oak_leaves", "displayName": "Oak Leaves", "hardness": 0.2, @@ -1799,9 +2058,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 161, - "minStateId": 148, - "maxStateId": 161, + "defaultState": 233, + "minStateId": 206, + "maxStateId": 233, "states": [ { "name": "distance", @@ -1821,13 +2080,18 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 63, + "id": 71, "name": "spruce_leaves", "displayName": "Spruce Leaves", "hardness": 0.2, @@ -1838,9 +2102,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 175, - "minStateId": 162, - "maxStateId": 175, + "defaultState": 261, + "minStateId": 234, + "maxStateId": 261, "states": [ { "name": "distance", @@ -1860,13 +2124,18 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 64, + "id": 72, "name": "birch_leaves", "displayName": "Birch Leaves", "hardness": 0.2, @@ -1877,9 +2146,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 189, - "minStateId": 176, - "maxStateId": 189, + "defaultState": 289, + "minStateId": 262, + "maxStateId": 289, "states": [ { "name": "distance", @@ -1899,13 +2168,18 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 65, + "id": 73, "name": "jungle_leaves", "displayName": "Jungle Leaves", "hardness": 0.2, @@ -1916,9 +2190,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 203, - "minStateId": 190, - "maxStateId": 203, + "defaultState": 317, + "minStateId": 290, + "maxStateId": 317, "states": [ { "name": "distance", @@ -1938,13 +2212,18 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 66, + "id": 74, "name": "acacia_leaves", "displayName": "Acacia Leaves", "hardness": 0.2, @@ -1955,9 +2234,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 217, - "minStateId": 204, - "maxStateId": 217, + "defaultState": 345, + "minStateId": 318, + "maxStateId": 345, "states": [ { "name": "distance", @@ -1977,13 +2256,18 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 67, + "id": 75, "name": "dark_oak_leaves", "displayName": "Dark Oak Leaves", "hardness": 0.2, @@ -1994,9 +2278,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 231, - "minStateId": 218, - "maxStateId": 231, + "defaultState": 373, + "minStateId": 346, + "maxStateId": 373, "states": [ { "name": "distance", @@ -2016,13 +2300,62 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 68, + "id": 76, + "name": "mangrove_leaves", + "displayName": "Mangrove Leaves", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "leaves;mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 401, + "minStateId": 374, + "maxStateId": 401, + "states": [ + { + "name": "distance", + "type": "int", + "num_values": 7, + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + { + "name": "persistent", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 77, "name": "azalea_leaves", "displayName": "Azalea Leaves", "hardness": 0.2, @@ -2033,9 +2366,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 245, - "minStateId": 232, - "maxStateId": 245, + "defaultState": 429, + "minStateId": 402, + "maxStateId": 429, "states": [ { "name": "distance", @@ -2055,26 +2388,31 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 69, + "id": 78, "name": "flowering_azalea_leaves", "displayName": "Flowering Azalea Leaves", "hardness": 0.2, "resistance": 0.2, "stackSize": 64, "diggable": true, - "material": "leaves;mineable/axe;mineable/hoe", + "material": "leaves;mineable/hoe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 259, - "minStateId": 246, - "maxStateId": 259, + "defaultState": 457, + "minStateId": 430, + "maxStateId": 457, "states": [ { "name": "distance", @@ -2094,13 +2432,18 @@ "name": "persistent", "type": "bool", "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 } ], "drops": [], "boundingBox": "block" }, { - "id": 70, + "id": 79, "name": "sponge", "displayName": "Sponge", "hardness": 0.6, @@ -2111,17 +2454,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 260, - "minStateId": 260, - "maxStateId": 260, + "defaultState": 458, + "minStateId": 458, + "maxStateId": 458, "states": [], "drops": [ - 141 + 151 ], "boundingBox": "block" }, { - "id": 71, + "id": 80, "name": "wet_sponge", "displayName": "Wet Sponge", "hardness": 0.6, @@ -2132,17 +2475,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 261, - "minStateId": 261, - "maxStateId": 261, + "defaultState": 459, + "minStateId": 459, + "maxStateId": 459, "states": [], "drops": [ - 142 + 152 ], "boundingBox": "block" }, { - "id": 72, + "id": 81, "name": "glass", "displayName": "Glass", "hardness": 0.3, @@ -2153,96 +2496,96 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 262, - "minStateId": 262, - "maxStateId": 262, + "defaultState": 460, + "minStateId": 460, + "maxStateId": 460, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 73, + "id": 82, "name": "lapis_ore", "displayName": "Lapis Lazuli Ore", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 263, - "minStateId": 263, - "maxStateId": 263, + "defaultState": 461, + "minStateId": 461, + "maxStateId": 461, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 688 + 724 ], "boundingBox": "block" }, { - "id": 74, + "id": 83, "name": "deepslate_lapis_ore", "displayName": "Deepslate Lapis Lazuli Ore", "hardness": 4.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 264, - "minStateId": 264, - "maxStateId": 264, + "defaultState": 462, + "minStateId": 462, + "maxStateId": 462, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 688 + 724 ], "boundingBox": "block" }, { - "id": 75, + "id": 84, "name": "lapis_block", "displayName": "Block of Lapis Lazuli", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 265, - "minStateId": 265, - "maxStateId": 265, + "defaultState": 463, + "minStateId": 463, + "maxStateId": 463, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 145 + 155 ], "boundingBox": "block" }, { - "id": 76, + "id": 85, "name": "dispenser", "displayName": "Dispenser", "hardness": 3.5, @@ -2253,9 +2596,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 267, - "minStateId": 266, - "maxStateId": 277, + "defaultState": 465, + "minStateId": 464, + "maxStateId": 475, "states": [ { "name": "facing", @@ -2277,20 +2620,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 596 + 619 ], "boundingBox": "block" }, { - "id": 77, + "id": 86, "name": "sandstone", "displayName": "Sandstone", "hardness": 0.8, @@ -2301,25 +2644,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 278, - "minStateId": 278, - "maxStateId": 278, + "defaultState": 476, + "minStateId": 476, + "maxStateId": 476, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 146 + 156 ], "boundingBox": "block" }, { - "id": 78, + "id": 87, "name": "chiseled_sandstone", "displayName": "Chiseled Sandstone", "hardness": 0.8, @@ -2330,25 +2673,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 279, - "minStateId": 279, - "maxStateId": 279, + "defaultState": 477, + "minStateId": 477, + "maxStateId": 477, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 147 + 157 ], "boundingBox": "block" }, { - "id": 79, + "id": 88, "name": "cut_sandstone", "displayName": "Cut Sandstone", "hardness": 0.8, @@ -2359,25 +2702,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 280, - "minStateId": 280, - "maxStateId": 280, + "defaultState": 478, + "minStateId": 478, + "maxStateId": 478, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 148 + 158 ], "boundingBox": "block" }, { - "id": 80, + "id": 89, "name": "note_block", "displayName": "Note Block", "hardness": 0.8, @@ -2388,9 +2731,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 282, - "minStateId": 281, - "maxStateId": 1080, + "defaultState": 480, + "minStateId": 479, + "maxStateId": 1278, "states": [ { "name": "instrument", @@ -2454,12 +2797,12 @@ } ], "drops": [ - 608 + 631 ], "boundingBox": "block" }, { - "id": 81, + "id": 90, "name": "white_bed", "displayName": "White Bed", "hardness": 0.2, @@ -2470,414 +2813,9 @@ "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, + "defaultState": 1282, + "minStateId": 1279, + "maxStateId": 1294, "states": [ { "name": "facing", @@ -2910,8 +2848,8 @@ }, { "id": 91, - "name": "purple_bed", - "displayName": "Purple Bed", + "name": "orange_bed", + "displayName": "Orange Bed", "hardness": 0.2, "resistance": 0.2, "stackSize": 1, @@ -2920,9 +2858,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1244, - "minStateId": 1241, - "maxStateId": 1256, + "defaultState": 1298, + "minStateId": 1295, + "maxStateId": 1310, "states": [ { "name": "facing", @@ -2955,8 +2893,8 @@ }, { "id": 92, - "name": "blue_bed", - "displayName": "Blue Bed", + "name": "magenta_bed", + "displayName": "Magenta Bed", "hardness": 0.2, "resistance": 0.2, "stackSize": 1, @@ -2965,9 +2903,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1260, - "minStateId": 1257, - "maxStateId": 1272, + "defaultState": 1314, + "minStateId": 1311, + "maxStateId": 1326, "states": [ { "name": "facing", @@ -3000,8 +2938,8 @@ }, { "id": 93, - "name": "brown_bed", - "displayName": "Brown Bed", + "name": "light_blue_bed", + "displayName": "Light Blue Bed", "hardness": 0.2, "resistance": 0.2, "stackSize": 1, @@ -3010,9 +2948,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1276, - "minStateId": 1273, - "maxStateId": 1288, + "defaultState": 1330, + "minStateId": 1327, + "maxStateId": 1342, "states": [ { "name": "facing", @@ -3045,8 +2983,8 @@ }, { "id": 94, - "name": "green_bed", - "displayName": "Green Bed", + "name": "yellow_bed", + "displayName": "Yellow Bed", "hardness": 0.2, "resistance": 0.2, "stackSize": 1, @@ -3055,9 +2993,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1292, - "minStateId": 1289, - "maxStateId": 1304, + "defaultState": 1346, + "minStateId": 1343, + "maxStateId": 1358, "states": [ { "name": "facing", @@ -3090,8 +3028,8 @@ }, { "id": 95, - "name": "red_bed", - "displayName": "Red Bed", + "name": "lime_bed", + "displayName": "Lime Bed", "hardness": 0.2, "resistance": 0.2, "stackSize": 1, @@ -3100,9 +3038,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1308, - "minStateId": 1305, - "maxStateId": 1320, + "defaultState": 1362, + "minStateId": 1359, + "maxStateId": 1374, "states": [ { "name": "facing", @@ -3135,8 +3073,8 @@ }, { "id": 96, - "name": "black_bed", - "displayName": "Black Bed", + "name": "pink_bed", + "displayName": "Pink Bed", "hardness": 0.2, "resistance": 0.2, "stackSize": 1, @@ -3145,9 +3083,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1324, - "minStateId": 1321, - "maxStateId": 1336, + "defaultState": 1378, + "minStateId": 1375, + "maxStateId": 1390, "states": [ { "name": "facing", @@ -3180,6 +3118,411 @@ }, { "id": 97, + "name": "gray_bed", + "displayName": "Gray Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1394, + "minStateId": 1391, + "maxStateId": 1406, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 98, + "name": "light_gray_bed", + "displayName": "Light Gray Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1410, + "minStateId": 1407, + "maxStateId": 1422, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 99, + "name": "cyan_bed", + "displayName": "Cyan Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1426, + "minStateId": 1423, + "maxStateId": 1438, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 100, + "name": "purple_bed", + "displayName": "Purple Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1442, + "minStateId": 1439, + "maxStateId": 1454, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 101, + "name": "blue_bed", + "displayName": "Blue Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1458, + "minStateId": 1455, + "maxStateId": 1470, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 102, + "name": "brown_bed", + "displayName": "Brown Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1474, + "minStateId": 1471, + "maxStateId": 1486, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 103, + "name": "green_bed", + "displayName": "Green Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1490, + "minStateId": 1487, + "maxStateId": 1502, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 104, + "name": "red_bed", + "displayName": "Red Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1506, + "minStateId": 1503, + "maxStateId": 1518, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 105, + "name": "black_bed", + "displayName": "Black Bed", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 1, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1522, + "minStateId": 1519, + "maxStateId": 1534, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "type": "bool", + "num_values": 2 + }, + { + "name": "part", + "type": "enum", + "num_values": 2, + "values": [ + "head", + "foot" + ] + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 106, "name": "powered_rail", "displayName": "Powered Rail", "hardness": 0.7, @@ -3190,9 +3533,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1350, - "minStateId": 1337, - "maxStateId": 1360, + "defaultState": 1548, + "minStateId": 1535, + "maxStateId": 1558, "states": [ { "name": "powered", @@ -3219,12 +3562,12 @@ } ], "drops": [ - 657 + 685 ], "boundingBox": "empty" }, { - "id": 98, + "id": 107, "name": "detector_rail", "displayName": "Detector Rail", "hardness": 0.7, @@ -3235,9 +3578,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1374, - "minStateId": 1361, - "maxStateId": 1384, + "defaultState": 1572, + "minStateId": 1559, + "maxStateId": 1582, "states": [ { "name": "powered", @@ -3264,12 +3607,12 @@ } ], "drops": [ - 658 + 686 ], "boundingBox": "empty" }, { - "id": 99, + "id": 108, "name": "sticky_piston", "displayName": "Sticky Piston", "hardness": 1.5, @@ -3280,9 +3623,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1391, - "minStateId": 1385, - "maxStateId": 1396, + "defaultState": 1589, + "minStateId": 1583, + "maxStateId": 1594, "states": [ { "name": "extended", @@ -3304,133 +3647,135 @@ } ], "drops": [ - 591 + 614 ], "boundingBox": "block" }, { - "id": 100, + "id": 109, "name": "cobweb", "displayName": "Cobweb", - "hardness": 4, - "resistance": 4, + "hardness": 4.0, + "resistance": 4.0, "stackSize": 64, "diggable": true, "material": "coweb", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 1397, - "minStateId": 1397, - "maxStateId": 1397, + "defaultState": 1595, + "minStateId": 1595, + "maxStateId": 1595, "states": [], "harvestTools": { - "699": true, - "704": true, - "709": true, - "714": true, - "719": true, - "724": true, - "848": true + "735": true, + "740": true, + "745": true, + "750": true, + "755": true, + "760": true, + "887": true }, "drops": [ - 732 + 768 ], "boundingBox": "empty" }, { - "id": 101, + "id": 110, "name": "grass", "displayName": "Grass", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1398, - "minStateId": 1398, - "maxStateId": 1398, + "defaultState": 1596, + "minStateId": 1596, + "maxStateId": 1596, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 102, + "id": 111, "name": "fern", "displayName": "Fern", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.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, + "defaultState": 1597, + "minStateId": 1597, + "maxStateId": 1597, "states": [], "drops": [ - 729 + 771 ], "boundingBox": "empty" }, { - "id": 104, + "id": 112, + "name": "dead_bush", + "displayName": "Dead Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1598, + "minStateId": 1598, + "maxStateId": 1598, + "states": [], + "drops": [ + 765 + ], + "boundingBox": "empty" + }, + { + "id": 113, "name": "seagrass", "displayName": "Seagrass", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 1401, - "minStateId": 1401, - "maxStateId": 1401, + "defaultState": 1599, + "minStateId": 1599, + "maxStateId": 1599, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 105, + "id": 114, "name": "tall_seagrass", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Tall Seagrass", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 1403, - "minStateId": 1402, - "maxStateId": 1403, + "defaultState": 1601, + "minStateId": 1600, + "maxStateId": 1601, "states": [ { "name": "half", @@ -3446,7 +3791,7 @@ "boundingBox": "empty" }, { - "id": 106, + "id": 115, "name": "piston", "displayName": "Piston", "hardness": 1.5, @@ -3457,9 +3802,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1410, - "minStateId": 1404, - "maxStateId": 1415, + "defaultState": 1608, + "minStateId": 1602, + "maxStateId": 1613, "states": [ { "name": "extended", @@ -3481,14 +3826,14 @@ } ], "drops": [ - 590 + 613 ], "boundingBox": "block" }, { - "id": 107, + "id": 116, "name": "piston_head", - "displayName": "Air", + "displayName": "Piston Head", "hardness": 1.5, "resistance": 1.5, "stackSize": 64, @@ -3497,9 +3842,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 1418, - "minStateId": 1416, - "maxStateId": 1439, + "defaultState": 1616, + "minStateId": 1614, + "maxStateId": 1637, "states": [ { "name": "facing", @@ -3533,7 +3878,7 @@ "boundingBox": "block" }, { - "id": 108, + "id": 117, "name": "white_wool", "displayName": "White Wool", "hardness": 0.8, @@ -3544,17 +3889,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1440, - "minStateId": 1440, - "maxStateId": 1440, + "defaultState": 1638, + "minStateId": 1638, + "maxStateId": 1638, "states": [], "drops": [ - 157 + 167 ], "boundingBox": "block" }, { - "id": 109, + "id": 118, "name": "orange_wool", "displayName": "Orange Wool", "hardness": 0.8, @@ -3565,17 +3910,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1441, - "minStateId": 1441, - "maxStateId": 1441, + "defaultState": 1639, + "minStateId": 1639, + "maxStateId": 1639, "states": [], "drops": [ - 158 + 168 ], "boundingBox": "block" }, { - "id": 110, + "id": 119, "name": "magenta_wool", "displayName": "Magenta Wool", "hardness": 0.8, @@ -3586,17 +3931,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1442, - "minStateId": 1442, - "maxStateId": 1442, + "defaultState": 1640, + "minStateId": 1640, + "maxStateId": 1640, "states": [], "drops": [ - 159 + 169 ], "boundingBox": "block" }, { - "id": 111, + "id": 120, "name": "light_blue_wool", "displayName": "Light Blue Wool", "hardness": 0.8, @@ -3607,17 +3952,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1443, - "minStateId": 1443, - "maxStateId": 1443, + "defaultState": 1641, + "minStateId": 1641, + "maxStateId": 1641, "states": [], "drops": [ - 160 + 170 ], "boundingBox": "block" }, { - "id": 112, + "id": 121, "name": "yellow_wool", "displayName": "Yellow Wool", "hardness": 0.8, @@ -3628,17 +3973,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1444, - "minStateId": 1444, - "maxStateId": 1444, + "defaultState": 1642, + "minStateId": 1642, + "maxStateId": 1642, "states": [], "drops": [ - 161 + 171 ], "boundingBox": "block" }, { - "id": 113, + "id": 122, "name": "lime_wool", "displayName": "Lime Wool", "hardness": 0.8, @@ -3649,17 +3994,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1445, - "minStateId": 1445, - "maxStateId": 1445, + "defaultState": 1643, + "minStateId": 1643, + "maxStateId": 1643, "states": [], "drops": [ - 162 + 172 ], "boundingBox": "block" }, { - "id": 114, + "id": 123, "name": "pink_wool", "displayName": "Pink Wool", "hardness": 0.8, @@ -3670,17 +4015,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1446, - "minStateId": 1446, - "maxStateId": 1446, + "defaultState": 1644, + "minStateId": 1644, + "maxStateId": 1644, "states": [], "drops": [ - 163 + 173 ], "boundingBox": "block" }, { - "id": 115, + "id": 124, "name": "gray_wool", "displayName": "Gray Wool", "hardness": 0.8, @@ -3691,17 +4036,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1447, - "minStateId": 1447, - "maxStateId": 1447, + "defaultState": 1645, + "minStateId": 1645, + "maxStateId": 1645, "states": [], "drops": [ - 164 + 174 ], "boundingBox": "block" }, { - "id": 116, + "id": 125, "name": "light_gray_wool", "displayName": "Light Gray Wool", "hardness": 0.8, @@ -3712,17 +4057,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1448, - "minStateId": 1448, - "maxStateId": 1448, + "defaultState": 1646, + "minStateId": 1646, + "maxStateId": 1646, "states": [], "drops": [ - 165 + 175 ], "boundingBox": "block" }, { - "id": 117, + "id": 126, "name": "cyan_wool", "displayName": "Cyan Wool", "hardness": 0.8, @@ -3733,17 +4078,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1449, - "minStateId": 1449, - "maxStateId": 1449, + "defaultState": 1647, + "minStateId": 1647, + "maxStateId": 1647, "states": [], "drops": [ - 166 + 176 ], "boundingBox": "block" }, { - "id": 118, + "id": 127, "name": "purple_wool", "displayName": "Purple Wool", "hardness": 0.8, @@ -3754,17 +4099,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1450, - "minStateId": 1450, - "maxStateId": 1450, + "defaultState": 1648, + "minStateId": 1648, + "maxStateId": 1648, "states": [], "drops": [ - 167 + 177 ], "boundingBox": "block" }, { - "id": 119, + "id": 128, "name": "blue_wool", "displayName": "Blue Wool", "hardness": 0.8, @@ -3775,17 +4120,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1451, - "minStateId": 1451, - "maxStateId": 1451, + "defaultState": 1649, + "minStateId": 1649, + "maxStateId": 1649, "states": [], "drops": [ - 168 + 178 ], "boundingBox": "block" }, { - "id": 120, + "id": 129, "name": "brown_wool", "displayName": "Brown Wool", "hardness": 0.8, @@ -3796,17 +4141,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1452, - "minStateId": 1452, - "maxStateId": 1452, + "defaultState": 1650, + "minStateId": 1650, + "maxStateId": 1650, "states": [], "drops": [ - 169 + 179 ], "boundingBox": "block" }, { - "id": 121, + "id": 130, "name": "green_wool", "displayName": "Green Wool", "hardness": 0.8, @@ -3817,17 +4162,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1453, - "minStateId": 1453, - "maxStateId": 1453, + "defaultState": 1651, + "minStateId": 1651, + "maxStateId": 1651, "states": [], "drops": [ - 170 + 180 ], "boundingBox": "block" }, { - "id": 122, + "id": 131, "name": "red_wool", "displayName": "Red Wool", "hardness": 0.8, @@ -3838,17 +4183,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1454, - "minStateId": 1454, - "maxStateId": 1454, + "defaultState": 1652, + "minStateId": 1652, + "maxStateId": 1652, "states": [], "drops": [ - 171 + 181 ], "boundingBox": "block" }, { - "id": 123, + "id": 132, "name": "black_wool", "displayName": "Black Wool", "hardness": 0.8, @@ -3859,30 +4204,30 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1455, - "minStateId": 1455, - "maxStateId": 1455, + "defaultState": 1653, + "minStateId": 1653, + "maxStateId": 1653, "states": [], "drops": [ - 172 + 182 ], "boundingBox": "block" }, { - "id": 124, + "id": 133, "name": "moving_piston", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Moving Piston", + "hardness": -1.0, + "resistance": 0.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1456, - "minStateId": 1456, - "maxStateId": 1467, + "defaultState": 1654, + "minStateId": 1654, + "maxStateId": 1665, "states": [ { "name": "facing", @@ -3911,230 +4256,20 @@ "boundingBox": "empty" }, { - "id": 125, + "id": 134, "name": "dandelion", "displayName": "Dandelion", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "plant", "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, + "defaultState": 1666, + "minStateId": 1666, + "maxStateId": 1666, "states": [], "drops": [ 183 @@ -4142,20 +4277,41 @@ "boundingBox": "empty" }, { - "id": 136, - "name": "wither_rose", - "displayName": "Wither Rose", - "hardness": 0, - "resistance": 0, + "id": 135, + "name": "poppy", + "displayName": "Poppy", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "plant", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1479, - "minStateId": 1479, - "maxStateId": 1479, + "defaultState": 1667, + "minStateId": 1667, + "maxStateId": 1667, + "states": [], + "drops": [ + 184 + ], + "boundingBox": "empty" + }, + { + "id": 136, + "name": "blue_orchid", + "displayName": "Blue Orchid", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1668, + "minStateId": 1668, + "maxStateId": 1668, "states": [], "drops": [ 185 @@ -4164,40 +4320,40 @@ }, { "id": 137, - "name": "lily_of_the_valley", - "displayName": "Lily of the Valley", - "hardness": 0, - "resistance": 0, + "name": "allium", + "displayName": "Allium", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "plant", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1480, - "minStateId": 1480, - "maxStateId": 1480, + "defaultState": 1669, + "minStateId": 1669, + "maxStateId": 1669, "states": [], "drops": [ - 184 + 186 ], "boundingBox": "empty" }, { "id": 138, - "name": "brown_mushroom", - "displayName": "Brown Mushroom", - "hardness": 0, - "resistance": 0, + "name": "azure_bluet", + "displayName": "Azure Bluet", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "plant", "transparent": true, - "emitLight": 1, + "emitLight": 0, "filterLight": 0, - "defaultState": 1481, - "minStateId": 1481, - "maxStateId": 1481, + "defaultState": 1670, + "minStateId": 1670, + "maxStateId": 1670, "states": [], "drops": [ 187 @@ -4206,19 +4362,19 @@ }, { "id": 139, - "name": "red_mushroom", - "displayName": "Red Mushroom", - "hardness": 0, - "resistance": 0, + "name": "red_tulip", + "displayName": "Red Tulip", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "plant", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 1482, - "minStateId": 1482, - "maxStateId": 1482, + "defaultState": 1671, + "minStateId": 1671, + "maxStateId": 1671, "states": [], "drops": [ 188 @@ -4227,101 +4383,290 @@ }, { "id": 140, - "name": "gold_block", - "displayName": "Block of Gold", - "hardness": 3, - "resistance": 6, + "name": "orange_tulip", + "displayName": "Orange Tulip", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, + "material": "plant", + "transparent": true, "emitLight": 0, - "filterLight": 15, - "defaultState": 1483, - "minStateId": 1483, - "maxStateId": 1483, + "filterLight": 0, + "defaultState": 1672, + "minStateId": 1672, + "maxStateId": 1672, "states": [], - "harvestTools": { - "716": true, - "721": true, - "726": true - }, "drops": [ - 67 + 189 ], - "boundingBox": "block" + "boundingBox": "empty" }, { "id": 141, - "name": "iron_block", - "displayName": "Block of Iron", - "hardness": 5, - "resistance": 6, + "name": "white_tulip", + "displayName": "White Tulip", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", - "transparent": false, + "material": "plant", + "transparent": true, "emitLight": 0, - "filterLight": 15, - "defaultState": 1484, - "minStateId": 1484, - "maxStateId": 1484, + "filterLight": 0, + "defaultState": 1673, + "minStateId": 1673, + "maxStateId": 1673, "states": [], - "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true - }, "drops": [ - 65 + 190 ], - "boundingBox": "block" + "boundingBox": "empty" }, { "id": 142, - "name": "bricks", - "displayName": "Bricks", - "hardness": 2, - "resistance": 6, + "name": "pink_tulip", + "displayName": "Pink Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1674, + "minStateId": 1674, + "maxStateId": 1674, + "states": [], + "drops": [ + 191 + ], + "boundingBox": "empty" + }, + { + "id": 143, + "name": "oxeye_daisy", + "displayName": "Oxeye Daisy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1675, + "minStateId": 1675, + "maxStateId": 1675, + "states": [], + "drops": [ + 192 + ], + "boundingBox": "empty" + }, + { + "id": 144, + "name": "cornflower", + "displayName": "Cornflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1676, + "minStateId": 1676, + "maxStateId": 1676, + "states": [], + "drops": [ + 193 + ], + "boundingBox": "empty" + }, + { + "id": 145, + "name": "wither_rose", + "displayName": "Wither Rose", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1677, + "minStateId": 1677, + "maxStateId": 1677, + "states": [], + "drops": [ + 195 + ], + "boundingBox": "empty" + }, + { + "id": 146, + "name": "lily_of_the_valley", + "displayName": "Lily of the Valley", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1678, + "minStateId": 1678, + "maxStateId": 1678, + "states": [], + "drops": [ + 194 + ], + "boundingBox": "empty" + }, + { + "id": 147, + "name": "brown_mushroom", + "displayName": "Brown Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 1, + "filterLight": 0, + "defaultState": 1679, + "minStateId": 1679, + "maxStateId": 1679, + "states": [], + "drops": [ + 197 + ], + "boundingBox": "empty" + }, + { + "id": 148, + "name": "red_mushroom", + "displayName": "Red Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 1680, + "minStateId": 1680, + "maxStateId": 1680, + "states": [], + "drops": [ + 198 + ], + "boundingBox": "empty" + }, + { + "id": 149, + "name": "gold_block", + "displayName": "Block of Gold", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1485, - "minStateId": 1485, - "maxStateId": 1485, + "defaultState": 1681, + "minStateId": 1681, + "maxStateId": 1681, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 232 + 70 ], "boundingBox": "block" }, { - "id": 143, + "id": 150, + "name": "iron_block", + "displayName": "Block of Iron", + "hardness": 5.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1682, + "minStateId": 1682, + "maxStateId": 1682, + "states": [], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 68 + ], + "boundingBox": "block" + }, + { + "id": 151, + "name": "bricks", + "displayName": "Bricks", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 1683, + "minStateId": 1683, + "maxStateId": 1683, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 244 + ], + "boundingBox": "block" + }, + { + "id": 152, "name": "tnt", "displayName": "TNT", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1487, - "minStateId": 1486, - "maxStateId": 1487, + "defaultState": 1685, + "minStateId": 1684, + "maxStateId": 1685, "states": [ { "name": "unstable", @@ -4330,12 +4675,12 @@ } ], "drops": [ - 606 + 629 ], "boundingBox": "block" }, { - "id": 144, + "id": 153, "name": "bookshelf", "displayName": "Bookshelf", "hardness": 1.5, @@ -4346,105 +4691,105 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1488, - "minStateId": 1488, - "maxStateId": 1488, + "defaultState": 1686, + "minStateId": 1686, + "maxStateId": 1686, "states": [], "drops": [ - 792 + 830 ], "boundingBox": "block" }, { - "id": 145, + "id": 154, "name": "mossy_cobblestone", "displayName": "Mossy Cobblestone", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1489, - "minStateId": 1489, - "maxStateId": 1489, + "defaultState": 1687, + "minStateId": 1687, + "maxStateId": 1687, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 234 + 246 ], "boundingBox": "block" }, { - "id": 146, + "id": 155, "name": "obsidian", "displayName": "Obsidian", - "hardness": 50, - "resistance": 1200, + "hardness": 50.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 1490, - "minStateId": 1490, - "maxStateId": 1490, + "defaultState": 1688, + "minStateId": 1688, + "maxStateId": 1688, "states": [], "harvestTools": { - "721": true, - "726": true + "757": true, + "762": true }, "drops": [ - 235 + 247 ], "boundingBox": "block" }, { - "id": 147, + "id": 156, "name": "torch", "displayName": "Torch", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 14, "filterLight": 0, - "defaultState": 1491, - "minStateId": 1491, - "maxStateId": 1491, + "defaultState": 1689, + "minStateId": 1689, + "maxStateId": 1689, "states": [], "drops": [ - 236 + 248 ], "boundingBox": "empty" }, { - "id": 148, + "id": 157, "name": "wall_torch", "displayName": "Torch", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 14, "filterLight": 0, - "defaultState": 1492, - "minStateId": 1492, - "maxStateId": 1495, + "defaultState": 1690, + "minStateId": 1690, + "maxStateId": 1693, "states": [ { "name": "facing", @@ -4459,25 +4804,25 @@ } ], "drops": [ - 236 + 248 ], "boundingBox": "empty" }, { - "id": 149, + "id": 158, "name": "fire", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Fire", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 15, "filterLight": 0, - "defaultState": 1527, - "minStateId": 1496, - "maxStateId": 2007, + "defaultState": 1725, + "minStateId": 1694, + "maxStateId": 2205, "states": [ { "name": "age", @@ -4532,66 +4877,66 @@ "boundingBox": "empty" }, { - "id": 150, + "id": 159, "name": "soul_fire", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Soul Fire", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 10, "filterLight": 0, - "defaultState": 2008, - "minStateId": 2008, - "maxStateId": 2008, + "defaultState": 2206, + "minStateId": 2206, + "maxStateId": 2206, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 151, + "id": 160, "name": "spawner", "displayName": "Spawner", - "hardness": 5, - "resistance": 5, + "hardness": 5.0, + "resistance": 5.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 2009, - "minStateId": 2009, - "maxStateId": 2009, + "defaultState": 2207, + "minStateId": 2207, + "maxStateId": 2207, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [], "boundingBox": "block" }, { - "id": 152, + "id": 161, "name": "oak_stairs", "displayName": "Oak Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 2021, - "minStateId": 2010, - "maxStateId": 2089, + "defaultState": 2219, + "minStateId": 2208, + "maxStateId": 2287, "states": [ { "name": "facing", @@ -4632,12 +4977,12 @@ } ], "drops": [ - 244 + 338 ], "boundingBox": "block" }, { - "id": 153, + "id": 162, "name": "chest", "displayName": "Chest", "hardness": 2.5, @@ -4648,9 +4993,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 2091, - "minStateId": 2090, - "maxStateId": 2113, + "defaultState": 2289, + "minStateId": 2288, + "maxStateId": 2311, "states": [ { "name": "facing", @@ -4680,25 +5025,25 @@ } ], "drops": [ - 245 + 256 ], "boundingBox": "block" }, { - "id": 154, + "id": 163, "name": "redstone_wire", - "displayName": "Redstone Dust", - "hardness": 0, - "resistance": 0, + "displayName": "Redstone Wire", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3274, - "minStateId": 2114, - "maxStateId": 3409, + "defaultState": 3472, + "minStateId": 2312, + "maxStateId": 3607, "states": [ { "name": "east", @@ -4765,90 +5110,90 @@ } ], "drops": [ - 585 + 608 ], "boundingBox": "empty" }, { - "id": 155, + "id": 164, "name": "diamond_ore", "displayName": "Diamond Ore", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3410, - "minStateId": 3410, - "maxStateId": 3410, + "defaultState": 3608, + "minStateId": 3608, + "maxStateId": 3608, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 686 + 722 ], "boundingBox": "block" }, { - "id": 156, + "id": 165, "name": "deepslate_diamond_ore", "displayName": "Deepslate Diamond Ore", "hardness": 4.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3411, - "minStateId": 3411, - "maxStateId": 3411, + "defaultState": 3609, + "minStateId": 3609, + "maxStateId": 3609, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 686 + 722 ], "boundingBox": "block" }, { - "id": 157, + "id": 166, "name": "diamond_block", "displayName": "Block of Diamond", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3412, - "minStateId": 3412, - "maxStateId": 3412, + "defaultState": 3610, + "minStateId": 3610, + "maxStateId": 3610, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 68 + 71 ], "boundingBox": "block" }, { - "id": 158, + "id": 167, "name": "crafting_table", "displayName": "Crafting Table", "hardness": 2.5, @@ -4859,30 +5204,30 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3413, - "minStateId": 3413, - "maxStateId": 3413, + "defaultState": 3611, + "minStateId": 3611, + "maxStateId": 3611, "states": [], "drops": [ - 246 + 257 ], "boundingBox": "block" }, { - "id": 159, + "id": 168, "name": "wheat", - "displayName": "Wheat Seeds", - "hardness": 0, - "resistance": 0, + "displayName": "Wheat Crops", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3414, - "minStateId": 3414, - "maxStateId": 3421, + "defaultState": 3612, + "minStateId": 3612, + "maxStateId": 3619, "states": [ { "name": "age", @@ -4901,12 +5246,12 @@ } ], "drops": [ - 735 + 771 ], "boundingBox": "empty" }, { - "id": 160, + "id": 169, "name": "farmland", "displayName": "Farmland", "hardness": 0.6, @@ -4917,9 +5262,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 3422, - "minStateId": 3422, - "maxStateId": 3429, + "defaultState": 3620, + "minStateId": 3620, + "maxStateId": 3627, "states": [ { "name": "moisture", @@ -4943,7 +5288,7 @@ "boundingBox": "block" }, { - "id": 161, + "id": 170, "name": "furnace", "displayName": "Furnace", "hardness": 3.5, @@ -4954,9 +5299,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3431, - "minStateId": 3430, - "maxStateId": 3437, + "defaultState": 3629, + "minStateId": 3628, + "maxStateId": 3635, "states": [ { "name": "facing", @@ -4976,33 +5321,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 248 + 259 ], "boundingBox": "block" }, { - "id": 162, + "id": 171, "name": "oak_sign", "displayName": "Oak Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3439, - "minStateId": 3438, - "maxStateId": 3469, + "defaultState": 3637, + "minStateId": 3636, + "maxStateId": 3667, "states": [ { "name": "rotation", @@ -5034,25 +5379,25 @@ } ], "drops": [ - 768 + 804 ], "boundingBox": "empty" }, { - "id": 163, + "id": 172, "name": "spruce_sign", "displayName": "Spruce Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3471, - "minStateId": 3470, - "maxStateId": 3501, + "defaultState": 3669, + "minStateId": 3668, + "maxStateId": 3699, "states": [ { "name": "rotation", @@ -5084,25 +5429,25 @@ } ], "drops": [ - 769 + 805 ], "boundingBox": "empty" }, { - "id": 164, + "id": 173, "name": "birch_sign", "displayName": "Birch Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3503, - "minStateId": 3502, - "maxStateId": 3533, + "defaultState": 3701, + "minStateId": 3700, + "maxStateId": 3731, "states": [ { "name": "rotation", @@ -5134,25 +5479,25 @@ } ], "drops": [ - 770 + 806 ], "boundingBox": "empty" }, { - "id": 165, + "id": 174, "name": "acacia_sign", "displayName": "Acacia Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3535, - "minStateId": 3534, - "maxStateId": 3565, + "defaultState": 3733, + "minStateId": 3732, + "maxStateId": 3763, "states": [ { "name": "rotation", @@ -5184,25 +5529,25 @@ } ], "drops": [ - 772 + 808 ], "boundingBox": "empty" }, { - "id": 166, + "id": 175, "name": "jungle_sign", "displayName": "Jungle Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3567, - "minStateId": 3566, - "maxStateId": 3597, + "defaultState": 3765, + "minStateId": 3764, + "maxStateId": 3795, "states": [ { "name": "rotation", @@ -5234,25 +5579,25 @@ } ], "drops": [ - 771 + 807 ], "boundingBox": "empty" }, { - "id": 167, + "id": 176, "name": "dark_oak_sign", "displayName": "Dark Oak Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3599, - "minStateId": 3598, - "maxStateId": 3629, + "defaultState": 3797, + "minStateId": 3796, + "maxStateId": 3827, "states": [ { "name": "rotation", @@ -5284,25 +5629,75 @@ } ], "drops": [ - 773 + 809 ], "boundingBox": "empty" }, { - "id": 168, + "id": 177, + "name": "mangrove_sign", + "displayName": "Mangrove Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 3829, + "minStateId": 3828, + "maxStateId": 3859, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 810 + ], + "boundingBox": "empty" + }, + { + "id": 178, "name": "oak_door", "displayName": "Oak Door", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3641, - "minStateId": 3630, - "maxStateId": 3693, + "defaultState": 3871, + "minStateId": 3860, + "maxStateId": 3923, "states": [ { "name": "facing", @@ -5345,12 +5740,12 @@ } ], "drops": [ - 632 + 657 ], "boundingBox": "block" }, { - "id": 169, + "id": 179, "name": "ladder", "displayName": "Ladder", "hardness": 0.4, @@ -5361,9 +5756,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3695, - "minStateId": 3694, - "maxStateId": 3701, + "defaultState": 3925, + "minStateId": 3924, + "maxStateId": 3931, "states": [ { "name": "facing", @@ -5383,12 +5778,12 @@ } ], "drops": [ - 249 + 260 ], "boundingBox": "block" }, { - "id": 170, + "id": 180, "name": "rail", "displayName": "Rail", "hardness": 0.7, @@ -5399,9 +5794,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3703, - "minStateId": 3702, - "maxStateId": 3721, + "defaultState": 3933, + "minStateId": 3932, + "maxStateId": 3951, "states": [ { "name": "shape", @@ -5427,25 +5822,25 @@ } ], "drops": [ - 659 + 687 ], "boundingBox": "empty" }, { - "id": 171, + "id": 181, "name": "cobblestone_stairs", "displayName": "Cobblestone Stairs", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 3733, - "minStateId": 3722, - "maxStateId": 3801, + "defaultState": 3963, + "minStateId": 3952, + "maxStateId": 4031, "states": [ { "name": "facing", @@ -5486,33 +5881,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 250 + 261 ], "boundingBox": "block" }, { - "id": 172, + "id": 182, "name": "oak_wall_sign", "displayName": "Oak Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3803, - "minStateId": 3802, - "maxStateId": 3809, + "defaultState": 4033, + "minStateId": 4032, + "maxStateId": 4039, "states": [ { "name": "facing", @@ -5532,25 +5927,25 @@ } ], "drops": [ - 768 + 804 ], "boundingBox": "empty" }, { - "id": 173, + "id": 183, "name": "spruce_wall_sign", "displayName": "Spruce Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3811, - "minStateId": 3810, - "maxStateId": 3817, + "defaultState": 4041, + "minStateId": 4040, + "maxStateId": 4047, "states": [ { "name": "facing", @@ -5570,25 +5965,25 @@ } ], "drops": [ - 769 + 805 ], "boundingBox": "empty" }, { - "id": 174, + "id": 184, "name": "birch_wall_sign", "displayName": "Birch Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3819, - "minStateId": 3818, - "maxStateId": 3825, + "defaultState": 4049, + "minStateId": 4048, + "maxStateId": 4055, "states": [ { "name": "facing", @@ -5608,25 +6003,25 @@ } ], "drops": [ - 770 + 806 ], "boundingBox": "empty" }, { - "id": 175, + "id": 185, "name": "acacia_wall_sign", "displayName": "Acacia Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3827, - "minStateId": 3826, - "maxStateId": 3833, + "defaultState": 4057, + "minStateId": 4056, + "maxStateId": 4063, "states": [ { "name": "facing", @@ -5646,25 +6041,25 @@ } ], "drops": [ - 772 + 808 ], "boundingBox": "empty" }, { - "id": 176, + "id": 186, "name": "jungle_wall_sign", "displayName": "Jungle Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3835, - "minStateId": 3834, - "maxStateId": 3841, + "defaultState": 4065, + "minStateId": 4064, + "maxStateId": 4071, "states": [ { "name": "facing", @@ -5684,25 +6079,25 @@ } ], "drops": [ - 771 + 807 ], "boundingBox": "empty" }, { - "id": 177, + "id": 187, "name": "dark_oak_wall_sign", "displayName": "Dark Oak Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3843, - "minStateId": 3842, - "maxStateId": 3849, + "defaultState": 4073, + "minStateId": 4072, + "maxStateId": 4079, "states": [ { "name": "facing", @@ -5722,12 +6117,50 @@ } ], "drops": [ - 773 + 809 ], "boundingBox": "empty" }, { - "id": 178, + "id": 188, + "name": "mangrove_wall_sign", + "displayName": "Mangrove Sign", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4081, + "minStateId": 4080, + "maxStateId": 4087, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 810 + ], + "boundingBox": "empty" + }, + { + "id": 189, "name": "lever", "displayName": "Lever", "hardness": 0.5, @@ -5738,9 +6171,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3859, - "minStateId": 3850, - "maxStateId": 3873, + "defaultState": 4097, + "minStateId": 4088, + "maxStateId": 4111, "states": [ { "name": "face", @@ -5770,12 +6203,12 @@ } ], "drops": [ - 600 + 623 ], "boundingBox": "empty" }, { - "id": 179, + "id": 190, "name": "stone_pressure_plate", "displayName": "Stone Pressure Plate", "hardness": 0.5, @@ -5786,9 +6219,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3875, - "minStateId": 3874, - "maxStateId": 3875, + "defaultState": 4113, + "minStateId": 4112, + "maxStateId": 4113, "states": [ { "name": "powered", @@ -5797,33 +6230,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 619 + 643 ], "boundingBox": "empty" }, { - "id": 180, + "id": 191, "name": "iron_door", "displayName": "Iron Door", - "hardness": 5, - "resistance": 5, + "hardness": 5.0, + "resistance": 5.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3887, - "minStateId": 3876, - "maxStateId": 3939, + "defaultState": 4125, + "minStateId": 4114, + "maxStateId": 4177, "states": [ { "name": "facing", @@ -5866,20 +6299,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 631 + 656 ], "boundingBox": "block" }, { - "id": 181, + "id": 192, "name": "oak_pressure_plate", "displayName": "Oak Pressure Plate", "hardness": 0.5, @@ -5890,9 +6323,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3941, - "minStateId": 3940, - "maxStateId": 3941, + "defaultState": 4179, + "minStateId": 4178, + "maxStateId": 4179, "states": [ { "name": "powered", @@ -5901,12 +6334,12 @@ } ], "drops": [ - 623 + 647 ], "boundingBox": "empty" }, { - "id": 182, + "id": 193, "name": "spruce_pressure_plate", "displayName": "Spruce Pressure Plate", "hardness": 0.5, @@ -5917,9 +6350,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3943, - "minStateId": 3942, - "maxStateId": 3943, + "defaultState": 4181, + "minStateId": 4180, + "maxStateId": 4181, "states": [ { "name": "powered", @@ -5928,12 +6361,12 @@ } ], "drops": [ - 624 + 648 ], "boundingBox": "empty" }, { - "id": 183, + "id": 194, "name": "birch_pressure_plate", "displayName": "Birch Pressure Plate", "hardness": 0.5, @@ -5944,9 +6377,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3945, - "minStateId": 3944, - "maxStateId": 3945, + "defaultState": 4183, + "minStateId": 4182, + "maxStateId": 4183, "states": [ { "name": "powered", @@ -5955,12 +6388,12 @@ } ], "drops": [ - 625 + 649 ], "boundingBox": "empty" }, { - "id": 184, + "id": 195, "name": "jungle_pressure_plate", "displayName": "Jungle Pressure Plate", "hardness": 0.5, @@ -5971,9 +6404,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3947, - "minStateId": 3946, - "maxStateId": 3947, + "defaultState": 4185, + "minStateId": 4184, + "maxStateId": 4185, "states": [ { "name": "powered", @@ -5982,12 +6415,12 @@ } ], "drops": [ - 626 + 650 ], "boundingBox": "empty" }, { - "id": 185, + "id": 196, "name": "acacia_pressure_plate", "displayName": "Acacia Pressure Plate", "hardness": 0.5, @@ -5998,9 +6431,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3949, - "minStateId": 3948, - "maxStateId": 3949, + "defaultState": 4187, + "minStateId": 4186, + "maxStateId": 4187, "states": [ { "name": "powered", @@ -6009,12 +6442,12 @@ } ], "drops": [ - 627 + 651 ], "boundingBox": "empty" }, { - "id": 186, + "id": 197, "name": "dark_oak_pressure_plate", "displayName": "Dark Oak Pressure Plate", "hardness": 0.5, @@ -6025,9 +6458,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3951, - "minStateId": 3950, - "maxStateId": 3951, + "defaultState": 4189, + "minStateId": 4188, + "maxStateId": 4189, "states": [ { "name": "powered", @@ -6036,25 +6469,52 @@ } ], "drops": [ - 628 + 652 ], "boundingBox": "empty" }, { - "id": 187, + "id": 198, + "name": "mangrove_pressure_plate", + "displayName": "Mangrove Pressure Plate", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4191, + "minStateId": 4190, + "maxStateId": 4191, + "states": [ + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 653 + ], + "boundingBox": "empty" + }, + { + "id": 199, "name": "redstone_ore", "displayName": "Redstone Ore", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3953, - "minStateId": 3952, - "maxStateId": 3953, + "defaultState": 4193, + "minStateId": 4192, + "maxStateId": 4193, "states": [ { "name": "lit", @@ -6063,30 +6523,30 @@ } ], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 585 + 608 ], "boundingBox": "block" }, { - "id": 188, + "id": 200, "name": "deepslate_redstone_ore", "displayName": "Deepslate Redstone Ore", "hardness": 4.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3955, - "minStateId": 3954, - "maxStateId": 3955, + "defaultState": 4195, + "minStateId": 4194, + "maxStateId": 4195, "states": [ { "name": "lit", @@ -6095,30 +6555,30 @@ } ], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 585 + 608 ], "boundingBox": "block" }, { - "id": 189, + "id": 201, "name": "redstone_torch", "displayName": "Redstone Torch", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 7, "filterLight": 0, - "defaultState": 3956, - "minStateId": 3956, - "maxStateId": 3957, + "defaultState": 4196, + "minStateId": 4196, + "maxStateId": 4197, "states": [ { "name": "lit", @@ -6127,25 +6587,25 @@ } ], "drops": [ - 586 + 609 ], "boundingBox": "empty" }, { - "id": 190, + "id": 202, "name": "redstone_wall_torch", "displayName": "Redstone Torch", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 7, "filterLight": 0, - "defaultState": 3958, - "minStateId": 3958, - "maxStateId": 3965, + "defaultState": 4198, + "minStateId": 4198, + "maxStateId": 4205, "states": [ { "name": "facing", @@ -6165,12 +6625,12 @@ } ], "drops": [ - 586 + 609 ], "boundingBox": "empty" }, { - "id": 191, + "id": 203, "name": "stone_button", "displayName": "Stone Button", "hardness": 0.5, @@ -6181,9 +6641,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 3975, - "minStateId": 3966, - "maxStateId": 3989, + "defaultState": 4215, + "minStateId": 4206, + "maxStateId": 4229, "states": [ { "name": "face", @@ -6213,12 +6673,12 @@ } ], "drops": [ - 609 + 632 ], "boundingBox": "empty" }, { - "id": 192, + "id": 204, "name": "snow", "displayName": "Snow", "hardness": 0.1, @@ -6229,9 +6689,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 3990, - "minStateId": 3990, - "maxStateId": 3997, + "defaultState": 4230, + "minStateId": 4230, + "maxStateId": 4237, "states": [ { "name": "layers", @@ -6250,18 +6710,18 @@ } ], "harvestTools": { - "700": true, - "705": true, - "710": true, - "715": true, - "720": true, - "725": true + "736": true, + "741": true, + "746": true, + "751": true, + "756": true, + "761": true }, "drops": [], - "boundingBox": "block" + "boundingBox": "empty" }, { - "id": 193, + "id": 205, "name": "ice", "displayName": "Ice", "hardness": 0.5, @@ -6272,15 +6732,15 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 3998, - "minStateId": 3998, - "maxStateId": 3998, + "defaultState": 4238, + "minStateId": 4238, + "maxStateId": 4238, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 194, + "id": 206, "name": "snow_block", "displayName": "Snow Block", "hardness": 0.2, @@ -6291,25 +6751,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 3999, - "minStateId": 3999, - "maxStateId": 3999, + "defaultState": 4239, + "minStateId": 4239, + "maxStateId": 4239, "states": [], "harvestTools": { - "700": true, - "705": true, - "710": true, - "715": true, - "720": true, - "725": true + "736": true, + "741": true, + "746": true, + "751": true, + "756": true, + "761": true }, "drops": [ - 780 + 817 ], "boundingBox": "block" }, { - "id": 195, + "id": 207, "name": "cactus", "displayName": "Cactus", "hardness": 0.4, @@ -6320,9 +6780,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 4000, - "minStateId": 4000, - "maxStateId": 4015, + "defaultState": 4240, + "minStateId": 4240, + "maxStateId": 4255, "states": [ { "name": "age", @@ -6349,12 +6809,12 @@ } ], "drops": [ - 254 + 265 ], "boundingBox": "block" }, { - "id": 196, + "id": 208, "name": "clay", "displayName": "Clay", "hardness": 0.6, @@ -6365,30 +6825,30 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4016, - "minStateId": 4016, - "maxStateId": 4016, + "defaultState": 4256, + "minStateId": 4256, + "maxStateId": 4256, "states": [], "drops": [ - 789 + 827 ], "boundingBox": "block" }, { - "id": 197, + "id": 209, "name": "sugar_cane", "displayName": "Sugar Cane", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4017, - "minStateId": 4017, - "maxStateId": 4032, + "defaultState": 4257, + "minStateId": 4257, + "maxStateId": 4272, "states": [ { "name": "age", @@ -6415,25 +6875,25 @@ } ], "drops": [ - 196 + 206 ], "boundingBox": "empty" }, { - "id": 198, + "id": 210, "name": "jukebox", "displayName": "Jukebox", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4034, - "minStateId": 4033, - "maxStateId": 4034, + "defaultState": 4274, + "minStateId": 4273, + "maxStateId": 4274, "states": [ { "name": "has_record", @@ -6442,25 +6902,25 @@ } ], "drops": [ - 256 + 267 ], "boundingBox": "block" }, { - "id": 199, + "id": 211, "name": "oak_fence", "displayName": "Oak Fence", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 4066, - "minStateId": 4035, - "maxStateId": 4066, + "defaultState": 4306, + "minStateId": 4275, + "maxStateId": 4306, "states": [ { "name": "east", @@ -6489,33 +6949,33 @@ } ], "drops": [ - 257 + 268 ], "boundingBox": "block" }, { - "id": 200, + "id": 212, "name": "pumpkin", "displayName": "Pumpkin", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "gourd;mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4067, - "minStateId": 4067, - "maxStateId": 4067, + "defaultState": 4307, + "minStateId": 4307, + "maxStateId": 4307, "states": [], "drops": [ - 265 + 277 ], "boundingBox": "block" }, { - "id": 201, + "id": 213, "name": "netherrack", "displayName": "Netherrack", "hardness": 0.4, @@ -6526,25 +6986,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4068, - "minStateId": 4068, - "maxStateId": 4068, + "defaultState": 4308, + "minStateId": 4308, + "maxStateId": 4308, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 268 + 280 ], "boundingBox": "block" }, { - "id": 202, + "id": 214, "name": "soul_sand", "displayName": "Soul Sand", "hardness": 0.5, @@ -6555,17 +7015,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4069, - "minStateId": 4069, - "maxStateId": 4069, + "defaultState": 4309, + "minStateId": 4309, + "maxStateId": 4309, "states": [], "drops": [ - 269 + 281 ], "boundingBox": "block" }, { - "id": 203, + "id": 215, "name": "soul_soil", "displayName": "Soul Soil", "hardness": 0.5, @@ -6576,17 +7036,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4070, - "minStateId": 4070, - "maxStateId": 4070, + "defaultState": 4310, + "minStateId": 4310, + "maxStateId": 4310, "states": [], "drops": [ - 270 + 282 ], "boundingBox": "block" }, { - "id": 204, + "id": 216, "name": "basalt", "displayName": "Basalt", "hardness": 1.25, @@ -6597,9 +7057,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4072, - "minStateId": 4071, - "maxStateId": 4073, + "defaultState": 4312, + "minStateId": 4311, + "maxStateId": 4313, "states": [ { "name": "axis", @@ -6613,20 +7073,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 271 + 283 ], "boundingBox": "block" }, { - "id": 205, + "id": 217, "name": "polished_basalt", "displayName": "Polished Basalt", "hardness": 1.25, @@ -6637,9 +7097,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4075, - "minStateId": 4074, - "maxStateId": 4076, + "defaultState": 4315, + "minStateId": 4314, + "maxStateId": 4316, "states": [ { "name": "axis", @@ -6653,54 +7113,54 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 272 + 284 ], "boundingBox": "block" }, { - "id": 206, + "id": 218, "name": "soul_torch", "displayName": "Soul Torch", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 10, "filterLight": 0, - "defaultState": 4077, - "minStateId": 4077, - "maxStateId": 4077, + "defaultState": 4317, + "minStateId": 4317, + "maxStateId": 4317, "states": [], "drops": [ - 274 + 286 ], "boundingBox": "empty" }, { - "id": 207, + "id": 219, "name": "soul_wall_torch", "displayName": "Soul Torch", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 10, "filterLight": 0, - "defaultState": 4078, - "minStateId": 4078, - "maxStateId": 4081, + "defaultState": 4318, + "minStateId": 4318, + "maxStateId": 4321, "states": [ { "name": "facing", @@ -6715,12 +7175,12 @@ } ], "drops": [ - 274 + 286 ], "boundingBox": "empty" }, { - "id": 208, + "id": 220, "name": "glowstone", "displayName": "Glowstone", "hardness": 0.3, @@ -6731,30 +7191,30 @@ "transparent": false, "emitLight": 15, "filterLight": 15, - "defaultState": 4082, - "minStateId": 4082, - "maxStateId": 4082, + "defaultState": 4322, + "minStateId": 4322, + "maxStateId": 4322, "states": [], "drops": [ - 800 + 839 ], "boundingBox": "block" }, { - "id": 209, + "id": 221, "name": "nether_portal", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Nether Portal", + "hardness": -1.0, + "resistance": 0.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": true, "emitLight": 11, "filterLight": 0, - "defaultState": 4083, - "minStateId": 4083, - "maxStateId": 4084, + "defaultState": 4323, + "minStateId": 4323, + "maxStateId": 4324, "states": [ { "name": "axis", @@ -6770,20 +7230,20 @@ "boundingBox": "empty" }, { - "id": 210, + "id": 222, "name": "carved_pumpkin", "displayName": "Carved Pumpkin", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "gourd;mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4085, - "minStateId": 4085, - "maxStateId": 4088, + "defaultState": 4325, + "minStateId": 4325, + "maxStateId": 4328, "states": [ { "name": "facing", @@ -6798,25 +7258,25 @@ } ], "drops": [ - 266 + 278 ], "boundingBox": "block" }, { - "id": 211, + "id": 223, "name": "jack_o_lantern", "displayName": "Jack o'Lantern", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "gourd;mineable/axe", "transparent": false, "emitLight": 15, "filterLight": 15, - "defaultState": 4089, - "minStateId": 4089, - "maxStateId": 4092, + "defaultState": 4329, + "minStateId": 4329, + "maxStateId": 4332, "states": [ { "name": "facing", @@ -6831,12 +7291,12 @@ } ], "drops": [ - 267 + 279 ], "boundingBox": "block" }, { - "id": 212, + "id": 224, "name": "cake", "displayName": "Cake", "hardness": 0.5, @@ -6847,9 +7307,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 4093, - "minStateId": 4093, - "maxStateId": 4099, + "defaultState": 4333, + "minStateId": 4333, + "maxStateId": 4339, "states": [ { "name": "bites", @@ -6870,20 +7330,20 @@ "boundingBox": "block" }, { - "id": 213, + "id": 225, "name": "repeater", "displayName": "Redstone Repeater", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 4103, - "minStateId": 4100, - "maxStateId": 4163, + "defaultState": 4343, + "minStateId": 4340, + "maxStateId": 4403, "states": [ { "name": "delay", @@ -6919,12 +7379,12 @@ } ], "drops": [ - 588 + 611 ], "boundingBox": "block" }, { - "id": 214, + "id": 226, "name": "white_stained_glass", "displayName": "White Stained Glass", "hardness": 0.3, @@ -6935,15 +7395,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4164, - "minStateId": 4164, - "maxStateId": 4164, + "defaultState": 4404, + "minStateId": 4404, + "maxStateId": 4404, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 215, + "id": 227, "name": "orange_stained_glass", "displayName": "Orange Stained Glass", "hardness": 0.3, @@ -6954,15 +7414,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4165, - "minStateId": 4165, - "maxStateId": 4165, + "defaultState": 4405, + "minStateId": 4405, + "maxStateId": 4405, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 216, + "id": 228, "name": "magenta_stained_glass", "displayName": "Magenta Stained Glass", "hardness": 0.3, @@ -6973,15 +7433,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4166, - "minStateId": 4166, - "maxStateId": 4166, + "defaultState": 4406, + "minStateId": 4406, + "maxStateId": 4406, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 217, + "id": 229, "name": "light_blue_stained_glass", "displayName": "Light Blue Stained Glass", "hardness": 0.3, @@ -6992,15 +7452,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4167, - "minStateId": 4167, - "maxStateId": 4167, + "defaultState": 4407, + "minStateId": 4407, + "maxStateId": 4407, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 218, + "id": 230, "name": "yellow_stained_glass", "displayName": "Yellow Stained Glass", "hardness": 0.3, @@ -7011,15 +7471,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4168, - "minStateId": 4168, - "maxStateId": 4168, + "defaultState": 4408, + "minStateId": 4408, + "maxStateId": 4408, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 219, + "id": 231, "name": "lime_stained_glass", "displayName": "Lime Stained Glass", "hardness": 0.3, @@ -7030,15 +7490,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4169, - "minStateId": 4169, - "maxStateId": 4169, + "defaultState": 4409, + "minStateId": 4409, + "maxStateId": 4409, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 220, + "id": 232, "name": "pink_stained_glass", "displayName": "Pink Stained Glass", "hardness": 0.3, @@ -7049,15 +7509,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4170, - "minStateId": 4170, - "maxStateId": 4170, + "defaultState": 4410, + "minStateId": 4410, + "maxStateId": 4410, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 221, + "id": 233, "name": "gray_stained_glass", "displayName": "Gray Stained Glass", "hardness": 0.3, @@ -7068,15 +7528,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4171, - "minStateId": 4171, - "maxStateId": 4171, + "defaultState": 4411, + "minStateId": 4411, + "maxStateId": 4411, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 222, + "id": 234, "name": "light_gray_stained_glass", "displayName": "Light Gray Stained Glass", "hardness": 0.3, @@ -7087,15 +7547,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4172, - "minStateId": 4172, - "maxStateId": 4172, + "defaultState": 4412, + "minStateId": 4412, + "maxStateId": 4412, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 223, + "id": 235, "name": "cyan_stained_glass", "displayName": "Cyan Stained Glass", "hardness": 0.3, @@ -7106,15 +7566,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4173, - "minStateId": 4173, - "maxStateId": 4173, + "defaultState": 4413, + "minStateId": 4413, + "maxStateId": 4413, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 224, + "id": 236, "name": "purple_stained_glass", "displayName": "Purple Stained Glass", "hardness": 0.3, @@ -7125,15 +7585,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4174, - "minStateId": 4174, - "maxStateId": 4174, + "defaultState": 4414, + "minStateId": 4414, + "maxStateId": 4414, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 225, + "id": 237, "name": "blue_stained_glass", "displayName": "Blue Stained Glass", "hardness": 0.3, @@ -7144,15 +7604,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4175, - "minStateId": 4175, - "maxStateId": 4175, + "defaultState": 4415, + "minStateId": 4415, + "maxStateId": 4415, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 226, + "id": 238, "name": "brown_stained_glass", "displayName": "Brown Stained Glass", "hardness": 0.3, @@ -7163,15 +7623,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4176, - "minStateId": 4176, - "maxStateId": 4176, + "defaultState": 4416, + "minStateId": 4416, + "maxStateId": 4416, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 227, + "id": 239, "name": "green_stained_glass", "displayName": "Green Stained Glass", "hardness": 0.3, @@ -7182,15 +7642,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4177, - "minStateId": 4177, - "maxStateId": 4177, + "defaultState": 4417, + "minStateId": 4417, + "maxStateId": 4417, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 228, + "id": 240, "name": "red_stained_glass", "displayName": "Red Stained Glass", "hardness": 0.3, @@ -7201,15 +7661,15 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4178, - "minStateId": 4178, - "maxStateId": 4178, + "defaultState": 4418, + "minStateId": 4418, + "maxStateId": 4418, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 229, + "id": 241, "name": "black_stained_glass", "displayName": "Black Stained Glass", "hardness": 0.3, @@ -7220,28 +7680,28 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4179, - "minStateId": 4179, - "maxStateId": 4179, + "defaultState": 4419, + "minStateId": 4419, + "maxStateId": 4419, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 230, + "id": 242, "name": "oak_trapdoor", "displayName": "Oak Trapdoor", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4195, - "minStateId": 4180, - "maxStateId": 4243, + "defaultState": 4435, + "minStateId": 4420, + "maxStateId": 4483, "states": [ { "name": "facing", @@ -7280,25 +7740,25 @@ } ], "drops": [ - 641 + 667 ], "boundingBox": "block" }, { - "id": 231, + "id": 243, "name": "spruce_trapdoor", "displayName": "Spruce Trapdoor", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4259, - "minStateId": 4244, - "maxStateId": 4307, + "defaultState": 4499, + "minStateId": 4484, + "maxStateId": 4547, "states": [ { "name": "facing", @@ -7337,25 +7797,25 @@ } ], "drops": [ - 642 + 668 ], "boundingBox": "block" }, { - "id": 232, + "id": 244, "name": "birch_trapdoor", "displayName": "Birch Trapdoor", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4323, - "minStateId": 4308, - "maxStateId": 4371, + "defaultState": 4563, + "minStateId": 4548, + "maxStateId": 4611, "states": [ { "name": "facing", @@ -7394,25 +7854,25 @@ } ], "drops": [ - 643 + 669 ], "boundingBox": "block" }, { - "id": 233, + "id": 245, "name": "jungle_trapdoor", "displayName": "Jungle Trapdoor", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4387, - "minStateId": 4372, - "maxStateId": 4435, + "defaultState": 4627, + "minStateId": 4612, + "maxStateId": 4675, "states": [ { "name": "facing", @@ -7451,25 +7911,25 @@ } ], "drops": [ - 644 + 670 ], "boundingBox": "block" }, { - "id": 234, + "id": 246, "name": "acacia_trapdoor", "displayName": "Acacia Trapdoor", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4451, - "minStateId": 4436, - "maxStateId": 4499, + "defaultState": 4691, + "minStateId": 4676, + "maxStateId": 4739, "states": [ { "name": "facing", @@ -7508,25 +7968,25 @@ } ], "drops": [ - 645 + 671 ], "boundingBox": "block" }, { - "id": 235, + "id": 247, "name": "dark_oak_trapdoor", "displayName": "Dark Oak Trapdoor", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4515, - "minStateId": 4500, - "maxStateId": 4563, + "defaultState": 4755, + "minStateId": 4740, + "maxStateId": 4803, "states": [ { "name": "facing", @@ -7565,128 +8025,235 @@ } ], "drops": [ - 646 + 672 ], "boundingBox": "block" }, { - "id": 236, + "id": 248, + "name": "mangrove_trapdoor", + "displayName": "Mangrove Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 4819, + "minStateId": 4804, + "maxStateId": 4867, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 673 + ], + "boundingBox": "block" + }, + { + "id": 249, "name": "stone_bricks", "displayName": "Stone Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4564, - "minStateId": 4564, - "maxStateId": 4564, + "defaultState": 4868, + "minStateId": 4868, + "maxStateId": 4868, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 283 + 295 ], "boundingBox": "block" }, { - "id": 237, + "id": 250, "name": "mossy_stone_bricks", "displayName": "Mossy Stone Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4565, - "minStateId": 4565, - "maxStateId": 4565, + "defaultState": 4869, + "minStateId": 4869, + "maxStateId": 4869, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 284 + 296 ], "boundingBox": "block" }, { - "id": 238, + "id": 251, "name": "cracked_stone_bricks", "displayName": "Cracked Stone Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4566, - "minStateId": 4566, - "maxStateId": 4566, + "defaultState": 4870, + "minStateId": 4870, + "maxStateId": 4870, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 285 + 297 ], "boundingBox": "block" }, { - "id": 239, + "id": 252, "name": "chiseled_stone_bricks", "displayName": "Chiseled Stone Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4567, - "minStateId": 4567, - "maxStateId": 4567, + "defaultState": 4871, + "minStateId": 4871, + "maxStateId": 4871, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 286 + 298 ], "boundingBox": "block" }, { - "id": 240, + "id": 253, + "name": "packed_mud", + "displayName": "Packed Mud", + "hardness": 1.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4872, + "minStateId": 4872, + "maxStateId": 4872, + "states": [], + "drops": [ + 299 + ], + "boundingBox": "block" + }, + { + "id": 254, + "name": "mud_bricks", + "displayName": "Mud Bricks", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 4873, + "minStateId": 4873, + "maxStateId": 4873, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 300 + ], + "boundingBox": "block" + }, + { + "id": 255, "name": "infested_stone", "displayName": "Infested Stone", "hardness": 0.75, @@ -7697,18 +8264,18 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4568, - "minStateId": 4568, - "maxStateId": 4568, + "defaultState": 4874, + "minStateId": 4874, + "maxStateId": 4874, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 241, + "id": 256, "name": "infested_cobblestone", "displayName": "Infested Cobblestone", - "hardness": 1, + "hardness": 1.0, "resistance": 0.75, "stackSize": 64, "diggable": true, @@ -7716,15 +8283,15 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4569, - "minStateId": 4569, - "maxStateId": 4569, + "defaultState": 4875, + "minStateId": 4875, + "maxStateId": 4875, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 242, + "id": 257, "name": "infested_stone_bricks", "displayName": "Infested Stone Bricks", "hardness": 0.75, @@ -7735,15 +8302,15 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4570, - "minStateId": 4570, - "maxStateId": 4570, + "defaultState": 4876, + "minStateId": 4876, + "maxStateId": 4876, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 243, + "id": 258, "name": "infested_mossy_stone_bricks", "displayName": "Infested Mossy Stone Bricks", "hardness": 0.75, @@ -7754,15 +8321,15 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4571, - "minStateId": 4571, - "maxStateId": 4571, + "defaultState": 4877, + "minStateId": 4877, + "maxStateId": 4877, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 244, + "id": 259, "name": "infested_cracked_stone_bricks", "displayName": "Infested Cracked Stone Bricks", "hardness": 0.75, @@ -7773,15 +8340,15 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4572, - "minStateId": 4572, - "maxStateId": 4572, + "defaultState": 4878, + "minStateId": 4878, + "maxStateId": 4878, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 245, + "id": 260, "name": "infested_chiseled_stone_bricks", "displayName": "Infested Chiseled Stone Bricks", "hardness": 0.75, @@ -7792,15 +8359,15 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4573, - "minStateId": 4573, - "maxStateId": 4573, + "defaultState": 4879, + "minStateId": 4879, + "maxStateId": 4879, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 246, + "id": 261, "name": "brown_mushroom_block", "displayName": "Brown Mushroom Block", "hardness": 0.2, @@ -7811,9 +8378,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4574, - "minStateId": 4574, - "maxStateId": 4637, + "defaultState": 4880, + "minStateId": 4880, + "maxStateId": 4943, "states": [ { "name": "down", @@ -7852,7 +8419,7 @@ "boundingBox": "block" }, { - "id": 247, + "id": 262, "name": "red_mushroom_block", "displayName": "Red Mushroom Block", "hardness": 0.2, @@ -7863,9 +8430,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4638, - "minStateId": 4638, - "maxStateId": 4701, + "defaultState": 4944, + "minStateId": 4944, + "maxStateId": 5007, "states": [ { "name": "down", @@ -7904,7 +8471,7 @@ "boundingBox": "block" }, { - "id": 248, + "id": 263, "name": "mushroom_stem", "displayName": "Mushroom Stem", "hardness": 0.2, @@ -7915,9 +8482,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4702, - "minStateId": 4702, - "maxStateId": 4765, + "defaultState": 5008, + "minStateId": 5008, + "maxStateId": 5071, "states": [ { "name": "down", @@ -7954,20 +8521,20 @@ "boundingBox": "block" }, { - "id": 249, + "id": 264, "name": "iron_bars", "displayName": "Iron Bars", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4797, - "minStateId": 4766, - "maxStateId": 4797, + "defaultState": 5103, + "minStateId": 5072, + "maxStateId": 5103, "states": [ { "name": "east", @@ -7996,33 +8563,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 295 + 310 ], "boundingBox": "block" }, { - "id": 250, + "id": 265, "name": "chain", "displayName": "Chain", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4801, - "minStateId": 4798, - "maxStateId": 4803, + "defaultState": 5107, + "minStateId": 5104, + "maxStateId": 5109, "states": [ { "name": "axis", @@ -8041,20 +8608,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 296 + 311 ], "boundingBox": "block" }, { - "id": 251, + "id": 266, "name": "glass_pane", "displayName": "Glass Pane", "hardness": 0.3, @@ -8065,9 +8632,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4835, - "minStateId": 4804, - "maxStateId": 4835, + "defaultState": 5141, + "minStateId": 5110, + "maxStateId": 5141, "states": [ { "name": "east", @@ -8099,41 +8666,41 @@ "boundingBox": "block" }, { - "id": 252, + "id": 267, "name": "melon", "displayName": "Melon", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "gourd;mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 4836, - "minStateId": 4836, - "maxStateId": 4836, + "defaultState": 5142, + "minStateId": 5142, + "maxStateId": 5142, "states": [], "drops": [ - 849 + 888 ], "boundingBox": "block" }, { - "id": 253, + "id": 268, "name": "attached_pumpkin_stem", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Attached Pumpkin Stem", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4837, - "minStateId": 4837, - "maxStateId": 4840, + "defaultState": 5143, + "minStateId": 5143, + "maxStateId": 5146, "states": [ { "name": "facing", @@ -8148,25 +8715,25 @@ } ], "drops": [ - 851 + 890 ], "boundingBox": "empty" }, { - "id": 254, + "id": 269, "name": "attached_melon_stem", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Attached Melon Stem", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4841, - "minStateId": 4841, - "maxStateId": 4844, + "defaultState": 5147, + "minStateId": 5147, + "maxStateId": 5150, "states": [ { "name": "facing", @@ -8181,25 +8748,25 @@ } ], "drops": [ - 852 + 891 ], "boundingBox": "empty" }, { - "id": 255, + "id": 270, "name": "pumpkin_stem", - "displayName": "Pumpkin Seeds", - "hardness": 0, - "resistance": 0, + "displayName": "Pumpkin Stem", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4845, - "minStateId": 4845, - "maxStateId": 4852, + "defaultState": 5151, + "minStateId": 5151, + "maxStateId": 5158, "states": [ { "name": "age", @@ -8223,20 +8790,20 @@ "boundingBox": "empty" }, { - "id": 256, + "id": 271, "name": "melon_stem", - "displayName": "Melon Seeds", - "hardness": 0, - "resistance": 0, + "displayName": "Melon Stem", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4853, - "minStateId": 4853, - "maxStateId": 4860, + "defaultState": 5159, + "minStateId": 5159, + "maxStateId": 5166, "states": [ { "name": "age", @@ -8260,7 +8827,7 @@ "boundingBox": "empty" }, { - "id": 257, + "id": 272, "name": "vine", "displayName": "Vines", "hardness": 0.2, @@ -8271,9 +8838,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 4892, - "minStateId": 4861, - "maxStateId": 4892, + "defaultState": 5198, + "minStateId": 5167, + "maxStateId": 5198, "states": [ { "name": "east", @@ -8305,7 +8872,7 @@ "boundingBox": "empty" }, { - "id": 258, + "id": 273, "name": "glow_lichen", "displayName": "Glow Lichen", "hardness": 0.2, @@ -8316,9 +8883,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5020, - "minStateId": 4893, - "maxStateId": 5020, + "defaultState": 5326, + "minStateId": 5199, + "maxStateId": 5326, "states": [ { "name": "down", @@ -8360,20 +8927,20 @@ "boundingBox": "empty" }, { - "id": 259, + "id": 274, "name": "oak_fence_gate", "displayName": "Oak Fence Gate", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5028, - "minStateId": 5021, - "maxStateId": 5052, + "defaultState": 5334, + "minStateId": 5327, + "maxStateId": 5358, "states": [ { "name": "facing", @@ -8403,25 +8970,25 @@ } ], "drops": [ - 649 + 676 ], "boundingBox": "block" }, { - "id": 260, + "id": 275, "name": "brick_stairs", "displayName": "Brick Stairs", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5064, - "minStateId": 5053, - "maxStateId": 5132, + "defaultState": 5370, + "minStateId": 5359, + "maxStateId": 5438, "states": [ { "name": "facing", @@ -8462,33 +9029,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 301 + 316 ], "boundingBox": "block" }, { - "id": 261, + "id": 276, "name": "stone_brick_stairs", "displayName": "Stone Brick Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5144, - "minStateId": 5133, - "maxStateId": 5212, + "defaultState": 5450, + "minStateId": 5439, + "maxStateId": 5518, "states": [ { "name": "facing", @@ -8529,20 +9096,87 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 302 + 317 ], "boundingBox": "block" }, { - "id": 262, + "id": 277, + "name": "mud_brick_stairs", + "displayName": "Mud Brick Stairs", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 5530, + "minStateId": 5519, + "maxStateId": 5598, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 318 + ], + "boundingBox": "block" + }, + { + "id": 278, "name": "mycelium", "displayName": "Mycelium", "hardness": 0.6, @@ -8553,9 +9187,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5214, - "minStateId": 5213, - "maxStateId": 5214, + "defaultState": 5600, + "minStateId": 5599, + "maxStateId": 5600, "states": [ { "name": "snowy", @@ -8569,70 +9203,70 @@ "boundingBox": "block" }, { - "id": 263, + "id": 279, "name": "lily_pad", "displayName": "Lily Pad", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5215, - "minStateId": 5215, - "maxStateId": 5215, + "defaultState": 5601, + "minStateId": 5601, + "maxStateId": 5601, "states": [], "drops": [ - 304 + 320 ], "boundingBox": "block" }, { - "id": 264, + "id": 280, "name": "nether_bricks", "displayName": "Nether Bricks", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5216, - "minStateId": 5216, - "maxStateId": 5216, + "defaultState": 5602, + "minStateId": 5602, + "maxStateId": 5602, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 305 + 321 ], "boundingBox": "block" }, { - "id": 265, + "id": 281, "name": "nether_brick_fence", "displayName": "Nether Brick Fence", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5248, - "minStateId": 5217, - "maxStateId": 5248, + "defaultState": 5634, + "minStateId": 5603, + "maxStateId": 5634, "states": [ { "name": "east", @@ -8661,33 +9295,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 308 + 324 ], "boundingBox": "block" }, { - "id": 266, + "id": 282, "name": "nether_brick_stairs", "displayName": "Nether Brick Stairs", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5260, - "minStateId": 5249, - "maxStateId": 5328, + "defaultState": 5646, + "minStateId": 5635, + "maxStateId": 5714, "states": [ { "name": "facing", @@ -8728,33 +9362,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 309 + 325 ], "boundingBox": "block" }, { - "id": 267, + "id": 283, "name": "nether_wart", "displayName": "Nether Wart", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5329, - "minStateId": 5329, - "maxStateId": 5332, + "defaultState": 5715, + "minStateId": 5715, + "maxStateId": 5718, "states": [ { "name": "age", @@ -8769,41 +9403,41 @@ } ], "drops": [ - 862 + 901 ], "boundingBox": "empty" }, { - "id": 268, + "id": 284, "name": "enchanting_table", "displayName": "Enchanting Table", - "hardness": 5, - "resistance": 1200, + "hardness": 5.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, - "emitLight": 0, + "emitLight": 7, "filterLight": 0, - "defaultState": 5333, - "minStateId": 5333, - "maxStateId": 5333, + "defaultState": 5719, + "minStateId": 5719, + "maxStateId": 5719, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 310 + 330 ], "boundingBox": "block" }, { - "id": 269, + "id": 285, "name": "brewing_stand", "displayName": "Brewing Stand", "hardness": 0.5, @@ -8814,9 +9448,9 @@ "transparent": true, "emitLight": 1, "filterLight": 0, - "defaultState": 5341, - "minStateId": 5334, - "maxStateId": 5341, + "defaultState": 5727, + "minStateId": 5720, + "maxStateId": 5727, "states": [ { "name": "has_bottle_0", @@ -8835,62 +9469,62 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 869 + 908 ], "boundingBox": "block" }, { - "id": 270, + "id": 286, "name": "cauldron", "displayName": "Cauldron", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5342, - "minStateId": 5342, - "maxStateId": 5342, + "defaultState": 5728, + "minStateId": 5728, + "maxStateId": 5728, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 870 + 909 ], "boundingBox": "block" }, { - "id": 271, + "id": 287, "name": "water_cauldron", - "displayName": "Cauldron", - "hardness": 2, - "resistance": 2, + "displayName": "Water Cauldron", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5343, - "minStateId": 5343, - "maxStateId": 5345, + "defaultState": 5729, + "minStateId": 5729, + "maxStateId": 5731, "states": [ { "name": "level", @@ -8904,62 +9538,62 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 870 + 909 ], "boundingBox": "block" }, { - "id": 272, + "id": 288, "name": "lava_cauldron", - "displayName": "Cauldron", - "hardness": 2, - "resistance": 2, + "displayName": "Lava Cauldron", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 15, "filterLight": 0, - "defaultState": 5346, - "minStateId": 5346, - "maxStateId": 5346, + "defaultState": 5732, + "minStateId": 5732, + "maxStateId": 5732, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 870 + 909 ], "boundingBox": "block" }, { - "id": 273, + "id": 289, "name": "powder_snow_cauldron", - "displayName": "Cauldron", - "hardness": 2, - "resistance": 2, + "displayName": "Powder Snow Cauldron", + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5347, - "minStateId": 5347, - "maxStateId": 5349, + "defaultState": 5733, + "minStateId": 5733, + "maxStateId": 5735, "states": [ { "name": "level", @@ -8973,52 +9607,52 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 870 + 909 ], "boundingBox": "block" }, { - "id": 274, + "id": 290, "name": "end_portal", - "displayName": "Air", - "hardness": 0, - "resistance": 3600000, + "displayName": "End Portal", + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": true, "emitLight": 15, "filterLight": 0, - "defaultState": 5350, - "minStateId": 5350, - "maxStateId": 5350, + "defaultState": 5736, + "minStateId": 5736, + "maxStateId": 5736, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 275, + "id": 291, "name": "end_portal_frame", "displayName": "End Portal Frame", - "hardness": 0, - "resistance": 3600000, + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": false, "emitLight": 1, "filterLight": 0, - "defaultState": 5355, - "minStateId": 5351, - "maxStateId": 5358, + "defaultState": 5741, + "minStateId": 5737, + "maxStateId": 5744, "states": [ { "name": "eye", @@ -9041,57 +9675,57 @@ "boundingBox": "block" }, { - "id": 276, + "id": 292, "name": "end_stone", "displayName": "End Stone", - "hardness": 3, - "resistance": 9, + "hardness": 3.0, + "resistance": 9.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5359, - "minStateId": 5359, - "maxStateId": 5359, + "defaultState": 5745, + "minStateId": 5745, + "maxStateId": 5745, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 312 + 332 ], "boundingBox": "block" }, { - "id": 277, + "id": 293, "name": "dragon_egg", "displayName": "Dragon Egg", - "hardness": 3, - "resistance": 9, + "hardness": 3.0, + "resistance": 9.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 1, "filterLight": 0, - "defaultState": 5360, - "minStateId": 5360, - "maxStateId": 5360, + "defaultState": 5746, + "minStateId": 5746, + "maxStateId": 5746, "states": [], "drops": [ - 314 + 334 ], "boundingBox": "block" }, { - "id": 278, + "id": 294, "name": "redstone_lamp", "displayName": "Redstone Lamp", "hardness": 0.3, @@ -9102,9 +9736,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5362, - "minStateId": 5361, - "maxStateId": 5362, + "defaultState": 5748, + "minStateId": 5747, + "maxStateId": 5748, "states": [ { "name": "lit", @@ -9113,25 +9747,25 @@ } ], "drops": [ - 607 + 630 ], "boundingBox": "block" }, { - "id": 279, + "id": 295, "name": "cocoa", - "displayName": "Cocoa Beans", + "displayName": "Cocoa", "hardness": 0.2, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5363, - "minStateId": 5363, - "maxStateId": 5374, + "defaultState": 5749, + "minStateId": 5749, + "maxStateId": 5760, "states": [ { "name": "age", @@ -9156,12 +9790,12 @@ } ], "drops": [ - 809 + 848 ], "boundingBox": "block" }, { - "id": 280, + "id": 296, "name": "sandstone_stairs", "displayName": "Sandstone Stairs", "hardness": 0.8, @@ -9172,9 +9806,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5386, - "minStateId": 5375, - "maxStateId": 5454, + "defaultState": 5772, + "minStateId": 5761, + "maxStateId": 5840, "states": [ { "name": "facing", @@ -9215,85 +9849,85 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 315 + 335 ], "boundingBox": "block" }, { - "id": 281, + "id": 297, "name": "emerald_ore", "displayName": "Emerald Ore", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5455, - "minStateId": 5455, - "maxStateId": 5455, + "defaultState": 5841, + "minStateId": 5841, + "maxStateId": 5841, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 687 + 723 ], "boundingBox": "block" }, { - "id": 282, + "id": 298, "name": "deepslate_emerald_ore", "displayName": "Deepslate Emerald Ore", "hardness": 4.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5456, - "minStateId": 5456, - "maxStateId": 5456, + "defaultState": 5842, + "minStateId": 5842, + "maxStateId": 5842, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 687 + 723 ], "boundingBox": "block" }, { - "id": 283, + "id": 299, "name": "ender_chest", "displayName": "Ender Chest", "hardness": 22.5, - "resistance": 600, + "resistance": 600.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 7, "filterLight": 0, - "defaultState": 5458, - "minStateId": 5457, - "maxStateId": 5464, + "defaultState": 5844, + "minStateId": 5843, + "maxStateId": 5850, "states": [ { "name": "facing", @@ -9313,33 +9947,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 235 + 247 ], "boundingBox": "block" }, { - "id": 284, + "id": 300, "name": "tripwire_hook", "displayName": "Tripwire Hook", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5474, - "minStateId": 5465, - "maxStateId": 5480, + "defaultState": 5860, + "minStateId": 5851, + "maxStateId": 5866, "states": [ { "name": "attached", @@ -9364,25 +9998,25 @@ } ], "drops": [ - 604 + 627 ], "boundingBox": "empty" }, { - "id": 285, + "id": 301, "name": "tripwire", - "displayName": "String", - "hardness": 0, - "resistance": 0, + "displayName": "Tripwire", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 5608, - "minStateId": 5481, - "maxStateId": 5608, + "defaultState": 5994, + "minStateId": 5867, + "maxStateId": 5994, "states": [ { "name": "attached", @@ -9421,51 +10055,51 @@ } ], "drops": [ - 732 + 768 ], "boundingBox": "empty" }, { - "id": 286, + "id": 302, "name": "emerald_block", "displayName": "Block of Emerald", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5609, - "minStateId": 5609, - "maxStateId": 5609, + "defaultState": 5995, + "minStateId": 5995, + "maxStateId": 5995, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 317 + 337 ], "boundingBox": "block" }, { - "id": 287, + "id": 303, "name": "spruce_stairs", "displayName": "Spruce Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5621, - "minStateId": 5610, - "maxStateId": 5689, + "defaultState": 6007, + "minStateId": 5996, + "maxStateId": 6075, "states": [ { "name": "facing", @@ -9506,25 +10140,25 @@ } ], "drops": [ - 318 + 339 ], "boundingBox": "block" }, { - "id": 288, + "id": 304, "name": "birch_stairs", "displayName": "Birch Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5701, - "minStateId": 5690, - "maxStateId": 5769, + "defaultState": 6087, + "minStateId": 6076, + "maxStateId": 6155, "states": [ { "name": "facing", @@ -9565,25 +10199,25 @@ } ], "drops": [ - 319 + 340 ], "boundingBox": "block" }, { - "id": 289, + "id": 305, "name": "jungle_stairs", "displayName": "Jungle Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 5781, - "minStateId": 5770, - "maxStateId": 5849, + "defaultState": 6167, + "minStateId": 6156, + "maxStateId": 6235, "states": [ { "name": "facing", @@ -9624,25 +10258,25 @@ } ], "drops": [ - 320 + 341 ], "boundingBox": "block" }, { - "id": 290, + "id": 306, "name": "command_block", "displayName": "Command Block", - "hardness": 0, - "resistance": 3600000, + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 5856, - "minStateId": 5850, - "maxStateId": 5861, + "defaultState": 6242, + "minStateId": 6236, + "maxStateId": 6247, "states": [ { "name": "conditional", @@ -9668,787 +10302,772 @@ "boundingBox": "block" }, { - "id": 291, + "id": 307, "name": "beacon", "displayName": "Beacon", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 15, "filterLight": 1, - "defaultState": 5862, - "minStateId": 5862, - "maxStateId": 5862, + "defaultState": 6248, + "minStateId": 6248, + "maxStateId": 6248, "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 + 348 ], "boundingBox": "block" }, { "id": 308, - "name": "potted_orange_tulip", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "cobblestone_wall", + "displayName": "Cobblestone Wall", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6525, - "minStateId": 6525, - "maxStateId": 6525, - "states": [], + "defaultState": 6252, + "minStateId": 6249, + "maxStateId": 6572, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 946, - 179 + 349 ], "boundingBox": "block" }, { "id": 309, - "name": "potted_white_tulip", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "mossy_cobblestone_wall", + "displayName": "Mossy Cobblestone Wall", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6526, - "minStateId": 6526, - "maxStateId": 6526, - "states": [], + "defaultState": 6576, + "minStateId": 6573, + "maxStateId": 6896, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 946, - 180 + 350 ], "boundingBox": "block" }, { "id": 310, - "name": "potted_pink_tulip", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "flower_pot", + "displayName": "Flower Pot", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6527, - "minStateId": 6527, - "maxStateId": 6527, + "defaultState": 6897, + "minStateId": 6897, + "maxStateId": 6897, "states": [], "drops": [ - 946, - 181 + 989 ], "boundingBox": "block" }, { "id": 311, - "name": "potted_oxeye_daisy", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_oak_sapling", + "displayName": "Potted Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6528, - "minStateId": 6528, - "maxStateId": 6528, + "defaultState": 6898, + "minStateId": 6898, + "maxStateId": 6898, "states": [], "drops": [ - 946, - 182 + 989, + 32 ], "boundingBox": "block" }, { "id": 312, - "name": "potted_cornflower", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_spruce_sapling", + "displayName": "Potted Spruce Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6529, - "minStateId": 6529, - "maxStateId": 6529, + "defaultState": 6899, + "minStateId": 6899, + "maxStateId": 6899, "states": [], "drops": [ - 946, - 183 + 989, + 33 ], "boundingBox": "block" }, { "id": 313, - "name": "potted_lily_of_the_valley", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_birch_sapling", + "displayName": "Potted Birch Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6530, - "minStateId": 6530, - "maxStateId": 6530, + "defaultState": 6900, + "minStateId": 6900, + "maxStateId": 6900, "states": [], "drops": [ - 946, - 184 + 989, + 34 ], "boundingBox": "block" }, { "id": 314, - "name": "potted_wither_rose", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_jungle_sapling", + "displayName": "Potted Jungle Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6531, - "minStateId": 6531, - "maxStateId": 6531, + "defaultState": 6901, + "minStateId": 6901, + "maxStateId": 6901, "states": [], "drops": [ - 946, - 185 + 989, + 35 ], "boundingBox": "block" }, { "id": 315, - "name": "potted_red_mushroom", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_acacia_sapling", + "displayName": "Potted Acacia Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6532, - "minStateId": 6532, - "maxStateId": 6532, + "defaultState": 6902, + "minStateId": 6902, + "maxStateId": 6902, "states": [], "drops": [ - 946, - 188 + 989, + 36 ], "boundingBox": "block" }, { "id": 316, - "name": "potted_brown_mushroom", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_dark_oak_sapling", + "displayName": "Potted Dark Oak Sapling", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6533, - "minStateId": 6533, - "maxStateId": 6533, + "defaultState": 6903, + "minStateId": 6903, + "maxStateId": 6903, "states": [], "drops": [ - 946, - 187 + 989, + 37 ], "boundingBox": "block" }, { "id": 317, - "name": "potted_dead_bush", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_mangrove_propagule", + "displayName": "Potted Mangrove Propagule", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6534, - "minStateId": 6534, - "maxStateId": 6534, + "defaultState": 6904, + "minStateId": 6904, + "maxStateId": 6904, "states": [], "drops": [ - 946, - 154 + 989, + 38 ], "boundingBox": "block" }, { "id": 318, - "name": "potted_cactus", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "name": "potted_fern", + "displayName": "Potted Fern", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6535, - "minStateId": 6535, - "maxStateId": 6535, + "defaultState": 6905, + "minStateId": 6905, + "maxStateId": 6905, "states": [], "drops": [ - 946, - 254 + 989, + 161 ], "boundingBox": "block" }, { "id": 319, - "name": "carrots", - "displayName": "Carrot", - "hardness": 0, - "resistance": 0, + "name": "potted_dandelion", + "displayName": "Potted Dandelion", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "default", "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" - ] - } - ], + "defaultState": 6906, + "minStateId": 6906, + "maxStateId": 6906, + "states": [], "drops": [ - 947 + 989, + 183 ], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 320, - "name": "potatoes", - "displayName": "Potato", - "hardness": 0, - "resistance": 0, + "name": "potted_poppy", + "displayName": "Potted Poppy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6907, + "minStateId": 6907, + "maxStateId": 6907, + "states": [], + "drops": [ + 989, + 184 + ], + "boundingBox": "block" + }, + { + "id": 321, + "name": "potted_blue_orchid", + "displayName": "Potted Blue Orchid", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6908, + "minStateId": 6908, + "maxStateId": 6908, + "states": [], + "drops": [ + 989, + 185 + ], + "boundingBox": "block" + }, + { + "id": 322, + "name": "potted_allium", + "displayName": "Potted Allium", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6909, + "minStateId": 6909, + "maxStateId": 6909, + "states": [], + "drops": [ + 989, + 186 + ], + "boundingBox": "block" + }, + { + "id": 323, + "name": "potted_azure_bluet", + "displayName": "Potted Azure Bluet", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6910, + "minStateId": 6910, + "maxStateId": 6910, + "states": [], + "drops": [ + 989, + 187 + ], + "boundingBox": "block" + }, + { + "id": 324, + "name": "potted_red_tulip", + "displayName": "Potted Red Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6911, + "minStateId": 6911, + "maxStateId": 6911, + "states": [], + "drops": [ + 989, + 188 + ], + "boundingBox": "block" + }, + { + "id": 325, + "name": "potted_orange_tulip", + "displayName": "Potted Orange Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6912, + "minStateId": 6912, + "maxStateId": 6912, + "states": [], + "drops": [ + 989, + 189 + ], + "boundingBox": "block" + }, + { + "id": 326, + "name": "potted_white_tulip", + "displayName": "Potted White Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6913, + "minStateId": 6913, + "maxStateId": 6913, + "states": [], + "drops": [ + 989, + 190 + ], + "boundingBox": "block" + }, + { + "id": 327, + "name": "potted_pink_tulip", + "displayName": "Potted Pink Tulip", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6914, + "minStateId": 6914, + "maxStateId": 6914, + "states": [], + "drops": [ + 989, + 191 + ], + "boundingBox": "block" + }, + { + "id": 328, + "name": "potted_oxeye_daisy", + "displayName": "Potted Oxeye Daisy", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6915, + "minStateId": 6915, + "maxStateId": 6915, + "states": [], + "drops": [ + 989, + 192 + ], + "boundingBox": "block" + }, + { + "id": 329, + "name": "potted_cornflower", + "displayName": "Potted Cornflower", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6916, + "minStateId": 6916, + "maxStateId": 6916, + "states": [], + "drops": [ + 989, + 193 + ], + "boundingBox": "block" + }, + { + "id": 330, + "name": "potted_lily_of_the_valley", + "displayName": "Potted Lily of the Valley", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6917, + "minStateId": 6917, + "maxStateId": 6917, + "states": [], + "drops": [ + 989, + 194 + ], + "boundingBox": "block" + }, + { + "id": 331, + "name": "potted_wither_rose", + "displayName": "Potted Wither Rose", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6918, + "minStateId": 6918, + "maxStateId": 6918, + "states": [], + "drops": [ + 989, + 195 + ], + "boundingBox": "block" + }, + { + "id": 332, + "name": "potted_red_mushroom", + "displayName": "Potted Red Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6919, + "minStateId": 6919, + "maxStateId": 6919, + "states": [], + "drops": [ + 989, + 198 + ], + "boundingBox": "block" + }, + { + "id": 333, + "name": "potted_brown_mushroom", + "displayName": "Potted Brown Mushroom", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6920, + "minStateId": 6920, + "maxStateId": 6920, + "states": [], + "drops": [ + 989, + 197 + ], + "boundingBox": "block" + }, + { + "id": 334, + "name": "potted_dead_bush", + "displayName": "Potted Dead Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6921, + "minStateId": 6921, + "maxStateId": 6921, + "states": [], + "drops": [ + 989, + 164 + ], + "boundingBox": "block" + }, + { + "id": 335, + "name": "potted_cactus", + "displayName": "Potted Cactus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6922, + "minStateId": 6922, + "maxStateId": 6922, + "states": [], + "drops": [ + 989, + 265 + ], + "boundingBox": "block" + }, + { + "id": 336, + "name": "carrots", + "displayName": "Carrots", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6544, - "minStateId": 6544, - "maxStateId": 6551, + "defaultState": 6923, + "minStateId": 6923, + "maxStateId": 6930, "states": [ { "name": "age", @@ -10467,12 +11086,49 @@ } ], "drops": [ - 948 + 990 ], "boundingBox": "empty" }, { - "id": 321, + "id": 337, + "name": "potatoes", + "displayName": "Potatoes", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 6931, + "minStateId": 6931, + "maxStateId": 6938, + "states": [ + { + "name": "age", + "type": "int", + "num_values": 8, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "drops": [ + 991 + ], + "boundingBox": "empty" + }, + { + "id": 338, "name": "oak_button", "displayName": "Oak Button", "hardness": 0.5, @@ -10483,9 +11139,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6561, - "minStateId": 6552, - "maxStateId": 6575, + "defaultState": 6948, + "minStateId": 6939, + "maxStateId": 6962, "states": [ { "name": "face", @@ -10515,12 +11171,12 @@ } ], "drops": [ - 611 + 634 ], "boundingBox": "empty" }, { - "id": 322, + "id": 339, "name": "spruce_button", "displayName": "Spruce Button", "hardness": 0.5, @@ -10531,9 +11187,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6585, - "minStateId": 6576, - "maxStateId": 6599, + "defaultState": 6972, + "minStateId": 6963, + "maxStateId": 6986, "states": [ { "name": "face", @@ -10563,12 +11219,12 @@ } ], "drops": [ - 612 + 635 ], "boundingBox": "empty" }, { - "id": 323, + "id": 340, "name": "birch_button", "displayName": "Birch Button", "hardness": 0.5, @@ -10579,9 +11235,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6609, - "minStateId": 6600, - "maxStateId": 6623, + "defaultState": 6996, + "minStateId": 6987, + "maxStateId": 7010, "states": [ { "name": "face", @@ -10611,12 +11267,12 @@ } ], "drops": [ - 613 + 636 ], "boundingBox": "empty" }, { - "id": 324, + "id": 341, "name": "jungle_button", "displayName": "Jungle Button", "hardness": 0.5, @@ -10627,9 +11283,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6633, - "minStateId": 6624, - "maxStateId": 6647, + "defaultState": 7020, + "minStateId": 7011, + "maxStateId": 7034, "states": [ { "name": "face", @@ -10659,12 +11315,12 @@ } ], "drops": [ - 614 + 637 ], "boundingBox": "empty" }, { - "id": 325, + "id": 342, "name": "acacia_button", "displayName": "Acacia Button", "hardness": 0.5, @@ -10675,9 +11331,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6657, - "minStateId": 6648, - "maxStateId": 6671, + "defaultState": 7044, + "minStateId": 7035, + "maxStateId": 7058, "states": [ { "name": "face", @@ -10707,12 +11363,12 @@ } ], "drops": [ - 615 + 638 ], "boundingBox": "empty" }, { - "id": 326, + "id": 343, "name": "dark_oak_button", "displayName": "Dark Oak Button", "hardness": 0.5, @@ -10723,9 +11379,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6681, - "minStateId": 6672, - "maxStateId": 6695, + "defaultState": 7068, + "minStateId": 7059, + "maxStateId": 7082, "states": [ { "name": "face", @@ -10755,25 +11411,73 @@ } ], "drops": [ - 616 + 639 ], "boundingBox": "empty" }, { - "id": 327, + "id": 344, + "name": "mangrove_button", + "displayName": "Mangrove Button", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 7092, + "minStateId": 7083, + "maxStateId": 7106, + "states": [ + { + "name": "face", + "type": "enum", + "num_values": 3, + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 640 + ], + "boundingBox": "empty" + }, + { + "id": 345, "name": "skeleton_skull", "displayName": "Skeleton Skull", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6696, - "minStateId": 6696, - "maxStateId": 6711, + "defaultState": 7107, + "minStateId": 7107, + "maxStateId": 7122, "states": [ { "name": "rotation", @@ -10800,25 +11504,25 @@ } ], "drops": [ - 953 + 996 ], "boundingBox": "block" }, { - "id": 328, + "id": 346, "name": "skeleton_wall_skull", "displayName": "Skeleton Skull", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6712, - "minStateId": 6712, - "maxStateId": 6715, + "defaultState": 7123, + "minStateId": 7123, + "maxStateId": 7126, "states": [ { "name": "facing", @@ -10833,25 +11537,25 @@ } ], "drops": [ - 953 + 996 ], "boundingBox": "block" }, { - "id": 329, + "id": 347, "name": "wither_skeleton_skull", "displayName": "Wither Skeleton Skull", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6716, - "minStateId": 6716, - "maxStateId": 6731, + "defaultState": 7127, + "minStateId": 7127, + "maxStateId": 7142, "states": [ { "name": "rotation", @@ -10878,25 +11582,25 @@ } ], "drops": [ - 954 + 997 ], "boundingBox": "block" }, { - "id": 330, + "id": 348, "name": "wither_skeleton_wall_skull", "displayName": "Wither Skeleton Skull", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6732, - "minStateId": 6732, - "maxStateId": 6735, + "defaultState": 7143, + "minStateId": 7143, + "maxStateId": 7146, "states": [ { "name": "facing", @@ -10911,25 +11615,25 @@ } ], "drops": [ - 954 + 997 ], "boundingBox": "block" }, { - "id": 331, + "id": 349, "name": "zombie_head", "displayName": "Zombie Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6736, - "minStateId": 6736, - "maxStateId": 6751, + "defaultState": 7147, + "minStateId": 7147, + "maxStateId": 7162, "states": [ { "name": "rotation", @@ -10956,25 +11660,25 @@ } ], "drops": [ - 956 + 999 ], "boundingBox": "block" }, { - "id": 332, + "id": 350, "name": "zombie_wall_head", "displayName": "Zombie Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6752, - "minStateId": 6752, - "maxStateId": 6755, + "defaultState": 7163, + "minStateId": 7163, + "maxStateId": 7166, "states": [ { "name": "facing", @@ -10989,25 +11693,25 @@ } ], "drops": [ - 956 + 999 ], "boundingBox": "block" }, { - "id": 333, + "id": 351, "name": "player_head", "displayName": "Player Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6756, - "minStateId": 6756, - "maxStateId": 6771, + "defaultState": 7167, + "minStateId": 7167, + "maxStateId": 7182, "states": [ { "name": "rotation", @@ -11034,25 +11738,25 @@ } ], "drops": [ - 955 + 998 ], "boundingBox": "block" }, { - "id": 334, + "id": 352, "name": "player_wall_head", "displayName": "Player Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6772, - "minStateId": 6772, - "maxStateId": 6775, + "defaultState": 7183, + "minStateId": 7183, + "maxStateId": 7186, "states": [ { "name": "facing", @@ -11067,25 +11771,25 @@ } ], "drops": [ - 955 + 998 ], "boundingBox": "block" }, { - "id": 335, + "id": 353, "name": "creeper_head", "displayName": "Creeper Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6776, - "minStateId": 6776, - "maxStateId": 6791, + "defaultState": 7187, + "minStateId": 7187, + "maxStateId": 7202, "states": [ { "name": "rotation", @@ -11112,25 +11816,25 @@ } ], "drops": [ - 957 + 1000 ], "boundingBox": "block" }, { - "id": 336, + "id": 354, "name": "creeper_wall_head", "displayName": "Creeper Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6792, - "minStateId": 6792, - "maxStateId": 6795, + "defaultState": 7203, + "minStateId": 7203, + "maxStateId": 7206, "states": [ { "name": "facing", @@ -11145,25 +11849,25 @@ } ], "drops": [ - 957 + 1000 ], "boundingBox": "block" }, { - "id": 337, + "id": 355, "name": "dragon_head", "displayName": "Dragon Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6796, - "minStateId": 6796, - "maxStateId": 6811, + "defaultState": 7207, + "minStateId": 7207, + "maxStateId": 7222, "states": [ { "name": "rotation", @@ -11190,25 +11894,25 @@ } ], "drops": [ - 958 + 1001 ], "boundingBox": "block" }, { - "id": 338, + "id": 356, "name": "dragon_wall_head", "displayName": "Dragon Head", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6812, - "minStateId": 6812, - "maxStateId": 6815, + "defaultState": 7223, + "minStateId": 7223, + "maxStateId": 7226, "states": [ { "name": "facing", @@ -11223,25 +11927,25 @@ } ], "drops": [ - 958 + 1001 ], "boundingBox": "block" }, { - "id": 339, + "id": 357, "name": "anvil", "displayName": "Anvil", - "hardness": 5, - "resistance": 1200, + "hardness": 5.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6816, - "minStateId": 6816, - "maxStateId": 6819, + "defaultState": 7227, + "minStateId": 7227, + "maxStateId": 7230, "states": [ { "name": "facing", @@ -11256,33 +11960,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 346 + 371 ], "boundingBox": "block" }, { - "id": 340, + "id": 358, "name": "chipped_anvil", "displayName": "Chipped Anvil", - "hardness": 5, - "resistance": 1200, + "hardness": 5.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6820, - "minStateId": 6820, - "maxStateId": 6823, + "defaultState": 7231, + "minStateId": 7231, + "maxStateId": 7234, "states": [ { "name": "facing", @@ -11297,33 +12001,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 347 + 372 ], "boundingBox": "block" }, { - "id": 341, + "id": 359, "name": "damaged_anvil", "displayName": "Damaged Anvil", - "hardness": 5, - "resistance": 1200, + "hardness": 5.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6824, - "minStateId": 6824, - "maxStateId": 6827, + "defaultState": 7235, + "minStateId": 7235, + "maxStateId": 7238, "states": [ { "name": "facing", @@ -11338,20 +12042,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 348 + 373 ], "boundingBox": "block" }, { - "id": 342, + "id": 360, "name": "trapped_chest", "displayName": "Trapped Chest", "hardness": 2.5, @@ -11362,9 +12066,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6829, - "minStateId": 6828, - "maxStateId": 6851, + "defaultState": 7240, + "minStateId": 7239, + "maxStateId": 7262, "states": [ { "name": "facing", @@ -11394,12 +12098,12 @@ } ], "drops": [ - 605 + 628 ], "boundingBox": "block" }, { - "id": 343, + "id": 361, "name": "light_weighted_pressure_plate", "displayName": "Light Weighted Pressure Plate", "hardness": 0.5, @@ -11410,9 +12114,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6852, - "minStateId": 6852, - "maxStateId": 6867, + "defaultState": 7263, + "minStateId": 7263, + "maxStateId": 7278, "states": [ { "name": "power", @@ -11439,20 +12143,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 621 + 645 ], "boundingBox": "empty" }, { - "id": 344, + "id": 362, "name": "heavy_weighted_pressure_plate", "displayName": "Heavy Weighted Pressure Plate", "hardness": 0.5, @@ -11463,9 +12167,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6868, - "minStateId": 6868, - "maxStateId": 6883, + "defaultState": 7279, + "minStateId": 7279, + "maxStateId": 7294, "states": [ { "name": "power", @@ -11492,33 +12196,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 622 + 646 ], "boundingBox": "empty" }, { - "id": 345, + "id": 363, "name": "comparator", "displayName": "Redstone Comparator", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6885, - "minStateId": 6884, - "maxStateId": 6899, + "defaultState": 7296, + "minStateId": 7295, + "maxStateId": 7310, "states": [ { "name": "facing", @@ -11547,12 +12251,12 @@ } ], "drops": [ - 589 + 612 ], "boundingBox": "block" }, { - "id": 346, + "id": 364, "name": "daylight_detector", "displayName": "Daylight Detector", "hardness": 0.2, @@ -11563,9 +12267,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6916, - "minStateId": 6900, - "maxStateId": 6931, + "defaultState": 7327, + "minStateId": 7311, + "maxStateId": 7342, "states": [ { "name": "inverted", @@ -11597,73 +12301,73 @@ } ], "drops": [ - 602 + 625 ], "boundingBox": "block" }, { - "id": 347, + "id": 365, "name": "redstone_block", "displayName": "Block of Redstone", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 6932, - "minStateId": 6932, - "maxStateId": 6932, + "defaultState": 7343, + "minStateId": 7343, + "maxStateId": 7343, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 587 + 610 ], "boundingBox": "block" }, { - "id": 348, + "id": 366, "name": "nether_quartz_ore", "displayName": "Nether Quartz Ore", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 6933, - "minStateId": 6933, - "maxStateId": 6933, + "defaultState": 7344, + "minStateId": 7344, + "maxStateId": 7344, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 689 + 725 ], "boundingBox": "block" }, { - "id": 349, + "id": 367, "name": "hopper", "displayName": "Hopper", - "hardness": 3, + "hardness": 3.0, "resistance": 4.8, "stackSize": 64, "diggable": true, @@ -11671,9 +12375,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 6934, - "minStateId": 6934, - "maxStateId": 6943, + "defaultState": 7345, + "minStateId": 7345, + "maxStateId": 7354, "states": [ { "name": "enabled", @@ -11694,20 +12398,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 595 + 618 ], "boundingBox": "block" }, { - "id": 350, + "id": 368, "name": "quartz_block", "displayName": "Block of Quartz", "hardness": 0.8, @@ -11718,25 +12422,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 6944, - "minStateId": 6944, - "maxStateId": 6944, + "defaultState": 7355, + "minStateId": 7355, + "maxStateId": 7355, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 350 + 375 ], "boundingBox": "block" }, { - "id": 351, + "id": 369, "name": "chiseled_quartz_block", "displayName": "Chiseled Quartz Block", "hardness": 0.8, @@ -11747,25 +12451,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 6945, - "minStateId": 6945, - "maxStateId": 6945, + "defaultState": 7356, + "minStateId": 7356, + "maxStateId": 7356, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 349 + 374 ], "boundingBox": "block" }, { - "id": 352, + "id": 370, "name": "quartz_pillar", "displayName": "Quartz Pillar", "hardness": 0.8, @@ -11776,9 +12480,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 6947, - "minStateId": 6946, - "maxStateId": 6948, + "defaultState": 7358, + "minStateId": 7357, + "maxStateId": 7359, "states": [ { "name": "axis", @@ -11792,20 +12496,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 352 + 377 ], "boundingBox": "block" }, { - "id": 353, + "id": 371, "name": "quartz_stairs", "displayName": "Quartz Stairs", "hardness": 0.8, @@ -11816,9 +12520,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 6960, - "minStateId": 6949, - "maxStateId": 7028, + "defaultState": 7371, + "minStateId": 7360, + "maxStateId": 7439, "states": [ { "name": "facing", @@ -11859,20 +12563,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 353 + 378 ], "boundingBox": "block" }, { - "id": 354, + "id": 372, "name": "activator_rail", "displayName": "Activator Rail", "hardness": 0.7, @@ -11883,9 +12587,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7042, - "minStateId": 7029, - "maxStateId": 7052, + "defaultState": 7453, + "minStateId": 7440, + "maxStateId": 7463, "states": [ { "name": "powered", @@ -11912,12 +12616,12 @@ } ], "drops": [ - 660 + 688 ], "boundingBox": "empty" }, { - "id": 355, + "id": 373, "name": "dropper", "displayName": "Dropper", "hardness": 3.5, @@ -11928,9 +12632,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7054, - "minStateId": 7053, - "maxStateId": 7064, + "defaultState": 7465, + "minStateId": 7464, + "maxStateId": 7475, "states": [ { "name": "facing", @@ -11952,20 +12656,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 597 + 620 ], "boundingBox": "block" }, { - "id": 356, + "id": 374, "name": "white_terracotta", "displayName": "White Terracotta", "hardness": 1.25, @@ -11976,25 +12680,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7065, - "minStateId": 7065, - "maxStateId": 7065, + "defaultState": 7476, + "minStateId": 7476, + "maxStateId": 7476, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 354 + 379 ], "boundingBox": "block" }, { - "id": 357, + "id": 375, "name": "orange_terracotta", "displayName": "Orange Terracotta", "hardness": 1.25, @@ -12005,25 +12709,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7066, - "minStateId": 7066, - "maxStateId": 7066, + "defaultState": 7477, + "minStateId": 7477, + "maxStateId": 7477, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 355 + 380 ], "boundingBox": "block" }, { - "id": 358, + "id": 376, "name": "magenta_terracotta", "displayName": "Magenta Terracotta", "hardness": 1.25, @@ -12034,25 +12738,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7067, - "minStateId": 7067, - "maxStateId": 7067, + "defaultState": 7478, + "minStateId": 7478, + "maxStateId": 7478, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 356 + 381 ], "boundingBox": "block" }, { - "id": 359, + "id": 377, "name": "light_blue_terracotta", "displayName": "Light Blue Terracotta", "hardness": 1.25, @@ -12063,25 +12767,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7068, - "minStateId": 7068, - "maxStateId": 7068, + "defaultState": 7479, + "minStateId": 7479, + "maxStateId": 7479, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 357 + 382 ], "boundingBox": "block" }, { - "id": 360, + "id": 378, "name": "yellow_terracotta", "displayName": "Yellow Terracotta", "hardness": 1.25, @@ -12092,25 +12796,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7069, - "minStateId": 7069, - "maxStateId": 7069, + "defaultState": 7480, + "minStateId": 7480, + "maxStateId": 7480, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 358 + 383 ], "boundingBox": "block" }, { - "id": 361, + "id": 379, "name": "lime_terracotta", "displayName": "Lime Terracotta", "hardness": 1.25, @@ -12121,25 +12825,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7070, - "minStateId": 7070, - "maxStateId": 7070, + "defaultState": 7481, + "minStateId": 7481, + "maxStateId": 7481, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 359 + 384 ], "boundingBox": "block" }, { - "id": 362, + "id": 380, "name": "pink_terracotta", "displayName": "Pink Terracotta", "hardness": 1.25, @@ -12150,25 +12854,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7071, - "minStateId": 7071, - "maxStateId": 7071, + "defaultState": 7482, + "minStateId": 7482, + "maxStateId": 7482, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 360 + 385 ], "boundingBox": "block" }, { - "id": 363, + "id": 381, "name": "gray_terracotta", "displayName": "Gray Terracotta", "hardness": 1.25, @@ -12179,25 +12883,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7072, - "minStateId": 7072, - "maxStateId": 7072, + "defaultState": 7483, + "minStateId": 7483, + "maxStateId": 7483, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 361 + 386 ], "boundingBox": "block" }, { - "id": 364, + "id": 382, "name": "light_gray_terracotta", "displayName": "Light Gray Terracotta", "hardness": 1.25, @@ -12208,25 +12912,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7073, - "minStateId": 7073, - "maxStateId": 7073, + "defaultState": 7484, + "minStateId": 7484, + "maxStateId": 7484, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 362 + 387 ], "boundingBox": "block" }, { - "id": 365, + "id": 383, "name": "cyan_terracotta", "displayName": "Cyan Terracotta", "hardness": 1.25, @@ -12237,25 +12941,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7074, - "minStateId": 7074, - "maxStateId": 7074, + "defaultState": 7485, + "minStateId": 7485, + "maxStateId": 7485, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 363 + 388 ], "boundingBox": "block" }, { - "id": 366, + "id": 384, "name": "purple_terracotta", "displayName": "Purple Terracotta", "hardness": 1.25, @@ -12266,25 +12970,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7075, - "minStateId": 7075, - "maxStateId": 7075, + "defaultState": 7486, + "minStateId": 7486, + "maxStateId": 7486, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 364 + 389 ], "boundingBox": "block" }, { - "id": 367, + "id": 385, "name": "blue_terracotta", "displayName": "Blue Terracotta", "hardness": 1.25, @@ -12295,25 +12999,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7076, - "minStateId": 7076, - "maxStateId": 7076, + "defaultState": 7487, + "minStateId": 7487, + "maxStateId": 7487, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 365 + 390 ], "boundingBox": "block" }, { - "id": 368, + "id": 386, "name": "brown_terracotta", "displayName": "Brown Terracotta", "hardness": 1.25, @@ -12324,25 +13028,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7077, - "minStateId": 7077, - "maxStateId": 7077, + "defaultState": 7488, + "minStateId": 7488, + "maxStateId": 7488, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 366 + 391 ], "boundingBox": "block" }, { - "id": 369, + "id": 387, "name": "green_terracotta", "displayName": "Green Terracotta", "hardness": 1.25, @@ -12353,25 +13057,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7078, - "minStateId": 7078, - "maxStateId": 7078, + "defaultState": 7489, + "minStateId": 7489, + "maxStateId": 7489, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 367 + 392 ], "boundingBox": "block" }, { - "id": 370, + "id": 388, "name": "red_terracotta", "displayName": "Red Terracotta", "hardness": 1.25, @@ -12382,25 +13086,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7079, - "minStateId": 7079, - "maxStateId": 7079, + "defaultState": 7490, + "minStateId": 7490, + "maxStateId": 7490, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 368 + 393 ], "boundingBox": "block" }, { - "id": 371, + "id": 389, "name": "black_terracotta", "displayName": "Black Terracotta", "hardness": 1.25, @@ -12411,25 +13115,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7080, - "minStateId": 7080, - "maxStateId": 7080, + "defaultState": 7491, + "minStateId": 7491, + "maxStateId": 7491, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 369 + 394 ], "boundingBox": "block" }, { - "id": 372, + "id": 390, "name": "white_stained_glass_pane", "displayName": "White Stained Glass Pane", "hardness": 0.3, @@ -12440,9 +13144,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7112, - "minStateId": 7081, - "maxStateId": 7112, + "defaultState": 7523, + "minStateId": 7492, + "maxStateId": 7523, "states": [ { "name": "east", @@ -12474,7 +13178,7 @@ "boundingBox": "block" }, { - "id": 373, + "id": 391, "name": "orange_stained_glass_pane", "displayName": "Orange Stained Glass Pane", "hardness": 0.3, @@ -12485,9 +13189,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7144, - "minStateId": 7113, - "maxStateId": 7144, + "defaultState": 7555, + "minStateId": 7524, + "maxStateId": 7555, "states": [ { "name": "east", @@ -12519,7 +13223,7 @@ "boundingBox": "block" }, { - "id": 374, + "id": 392, "name": "magenta_stained_glass_pane", "displayName": "Magenta Stained Glass Pane", "hardness": 0.3, @@ -12530,9 +13234,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7176, - "minStateId": 7145, - "maxStateId": 7176, + "defaultState": 7587, + "minStateId": 7556, + "maxStateId": 7587, "states": [ { "name": "east", @@ -12564,7 +13268,7 @@ "boundingBox": "block" }, { - "id": 375, + "id": 393, "name": "light_blue_stained_glass_pane", "displayName": "Light Blue Stained Glass Pane", "hardness": 0.3, @@ -12575,9 +13279,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7208, - "minStateId": 7177, - "maxStateId": 7208, + "defaultState": 7619, + "minStateId": 7588, + "maxStateId": 7619, "states": [ { "name": "east", @@ -12609,7 +13313,7 @@ "boundingBox": "block" }, { - "id": 376, + "id": 394, "name": "yellow_stained_glass_pane", "displayName": "Yellow Stained Glass Pane", "hardness": 0.3, @@ -12620,9 +13324,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7240, - "minStateId": 7209, - "maxStateId": 7240, + "defaultState": 7651, + "minStateId": 7620, + "maxStateId": 7651, "states": [ { "name": "east", @@ -12654,7 +13358,7 @@ "boundingBox": "block" }, { - "id": 377, + "id": 395, "name": "lime_stained_glass_pane", "displayName": "Lime Stained Glass Pane", "hardness": 0.3, @@ -12665,9 +13369,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7272, - "minStateId": 7241, - "maxStateId": 7272, + "defaultState": 7683, + "minStateId": 7652, + "maxStateId": 7683, "states": [ { "name": "east", @@ -12699,7 +13403,7 @@ "boundingBox": "block" }, { - "id": 378, + "id": 396, "name": "pink_stained_glass_pane", "displayName": "Pink Stained Glass Pane", "hardness": 0.3, @@ -12710,9 +13414,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7304, - "minStateId": 7273, - "maxStateId": 7304, + "defaultState": 7715, + "minStateId": 7684, + "maxStateId": 7715, "states": [ { "name": "east", @@ -12744,7 +13448,7 @@ "boundingBox": "block" }, { - "id": 379, + "id": 397, "name": "gray_stained_glass_pane", "displayName": "Gray Stained Glass Pane", "hardness": 0.3, @@ -12755,9 +13459,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7336, - "minStateId": 7305, - "maxStateId": 7336, + "defaultState": 7747, + "minStateId": 7716, + "maxStateId": 7747, "states": [ { "name": "east", @@ -12789,7 +13493,7 @@ "boundingBox": "block" }, { - "id": 380, + "id": 398, "name": "light_gray_stained_glass_pane", "displayName": "Light Gray Stained Glass Pane", "hardness": 0.3, @@ -12800,9 +13504,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7368, - "minStateId": 7337, - "maxStateId": 7368, + "defaultState": 7779, + "minStateId": 7748, + "maxStateId": 7779, "states": [ { "name": "east", @@ -12834,7 +13538,7 @@ "boundingBox": "block" }, { - "id": 381, + "id": 399, "name": "cyan_stained_glass_pane", "displayName": "Cyan Stained Glass Pane", "hardness": 0.3, @@ -12845,9 +13549,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7400, - "minStateId": 7369, - "maxStateId": 7400, + "defaultState": 7811, + "minStateId": 7780, + "maxStateId": 7811, "states": [ { "name": "east", @@ -12879,7 +13583,7 @@ "boundingBox": "block" }, { - "id": 382, + "id": 400, "name": "purple_stained_glass_pane", "displayName": "Purple Stained Glass Pane", "hardness": 0.3, @@ -12890,9 +13594,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7432, - "minStateId": 7401, - "maxStateId": 7432, + "defaultState": 7843, + "minStateId": 7812, + "maxStateId": 7843, "states": [ { "name": "east", @@ -12924,7 +13628,7 @@ "boundingBox": "block" }, { - "id": 383, + "id": 401, "name": "blue_stained_glass_pane", "displayName": "Blue Stained Glass Pane", "hardness": 0.3, @@ -12935,9 +13639,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7464, - "minStateId": 7433, - "maxStateId": 7464, + "defaultState": 7875, + "minStateId": 7844, + "maxStateId": 7875, "states": [ { "name": "east", @@ -12969,7 +13673,7 @@ "boundingBox": "block" }, { - "id": 384, + "id": 402, "name": "brown_stained_glass_pane", "displayName": "Brown Stained Glass Pane", "hardness": 0.3, @@ -12980,9 +13684,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7496, - "minStateId": 7465, - "maxStateId": 7496, + "defaultState": 7907, + "minStateId": 7876, + "maxStateId": 7907, "states": [ { "name": "east", @@ -13014,7 +13718,7 @@ "boundingBox": "block" }, { - "id": 385, + "id": 403, "name": "green_stained_glass_pane", "displayName": "Green Stained Glass Pane", "hardness": 0.3, @@ -13025,9 +13729,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7528, - "minStateId": 7497, - "maxStateId": 7528, + "defaultState": 7939, + "minStateId": 7908, + "maxStateId": 7939, "states": [ { "name": "east", @@ -13059,7 +13763,7 @@ "boundingBox": "block" }, { - "id": 386, + "id": 404, "name": "red_stained_glass_pane", "displayName": "Red Stained Glass Pane", "hardness": 0.3, @@ -13070,9 +13774,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7560, - "minStateId": 7529, - "maxStateId": 7560, + "defaultState": 7971, + "minStateId": 7940, + "maxStateId": 7971, "states": [ { "name": "east", @@ -13104,7 +13808,7 @@ "boundingBox": "block" }, { - "id": 387, + "id": 405, "name": "black_stained_glass_pane", "displayName": "Black Stained Glass Pane", "hardness": 0.3, @@ -13115,9 +13819,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7592, - "minStateId": 7561, - "maxStateId": 7592, + "defaultState": 8003, + "minStateId": 7972, + "maxStateId": 8003, "states": [ { "name": "east", @@ -13149,20 +13853,20 @@ "boundingBox": "block" }, { - "id": 388, + "id": 406, "name": "acacia_stairs", "displayName": "Acacia Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 7604, - "minStateId": 7593, - "maxStateId": 7672, + "defaultState": 8015, + "minStateId": 8004, + "maxStateId": 8083, "states": [ { "name": "facing", @@ -13203,25 +13907,25 @@ } ], "drops": [ - 391 + 342 ], "boundingBox": "block" }, { - "id": 389, + "id": 407, "name": "dark_oak_stairs", "displayName": "Dark Oak Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 7684, - "minStateId": 7673, - "maxStateId": 7752, + "defaultState": 8095, + "minStateId": 8084, + "maxStateId": 8163, "states": [ { "name": "facing", @@ -13262,36 +13966,95 @@ } ], "drops": [ - 392 + 343 ], "boundingBox": "block" }, { - "id": 390, + "id": 408, + "name": "mangrove_stairs", + "displayName": "Mangrove Stairs", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8175, + "minStateId": 8164, + "maxStateId": 8243, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 344 + ], + "boundingBox": "block" + }, + { + "id": 409, "name": "slime_block", "displayName": "Slime Block", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 7753, - "minStateId": 7753, - "maxStateId": 7753, + "defaultState": 8244, + "minStateId": 8244, + "maxStateId": 8244, "states": [], "drops": [ - 592 + 615 ], "boundingBox": "block" }, { - "id": 391, + "id": 410, "name": "barrier", "displayName": "Barrier", - "hardness": 0, + "hardness": -1.0, "resistance": 3600000.8, "stackSize": 64, "diggable": false, @@ -13299,18 +14062,18 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7754, - "minStateId": 7754, - "maxStateId": 7754, + "defaultState": 8245, + "minStateId": 8245, + "maxStateId": 8245, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 392, + "id": 411, "name": "light", "displayName": "Light", - "hardness": 0, + "hardness": -1.0, "resistance": 3600000.8, "stackSize": 64, "diggable": false, @@ -13318,9 +14081,9 @@ "transparent": true, "emitLight": 15, "filterLight": 0, - "defaultState": 7786, - "minStateId": 7755, - "maxStateId": 7786, + "defaultState": 8277, + "minStateId": 8246, + "maxStateId": 8277, "states": [ { "name": "level", @@ -13355,20 +14118,20 @@ "boundingBox": "empty" }, { - "id": 393, + "id": 412, "name": "iron_trapdoor", "displayName": "Iron Trapdoor", - "hardness": 5, - "resistance": 5, + "hardness": 5.0, + "resistance": 5.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 7802, - "minStateId": 7787, - "maxStateId": 7850, + "defaultState": 8293, + "minStateId": 8278, + "maxStateId": 8341, "states": [ { "name": "facing", @@ -13407,120 +14170,120 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 640 + 666 ], "boundingBox": "block" }, { - "id": 394, + "id": 413, "name": "prismarine", "displayName": "Prismarine", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7851, - "minStateId": 7851, - "maxStateId": 7851, + "defaultState": 8342, + "minStateId": 8342, + "maxStateId": 8342, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 432 + 455 ], "boundingBox": "block" }, { - "id": 395, + "id": 414, "name": "prismarine_bricks", "displayName": "Prismarine Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7852, - "minStateId": 7852, - "maxStateId": 7852, + "defaultState": 8343, + "minStateId": 8343, + "maxStateId": 8343, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 433 + 456 ], "boundingBox": "block" }, { - "id": 396, + "id": 415, "name": "dark_prismarine", "displayName": "Dark Prismarine", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 7853, - "minStateId": 7853, - "maxStateId": 7853, + "defaultState": 8344, + "minStateId": 8344, + "maxStateId": 8344, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 434 + 457 ], "boundingBox": "block" }, { - "id": 397, + "id": 416, "name": "prismarine_stairs", "displayName": "Prismarine Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 7865, - "minStateId": 7854, - "maxStateId": 7933, + "defaultState": 8356, + "minStateId": 8345, + "maxStateId": 8424, "states": [ { "name": "facing", @@ -13561,33 +14324,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 435 + 458 ], "boundingBox": "block" }, { - "id": 398, + "id": 417, "name": "prismarine_brick_stairs", "displayName": "Prismarine Brick Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 7945, - "minStateId": 7934, - "maxStateId": 8013, + "defaultState": 8436, + "minStateId": 8425, + "maxStateId": 8504, "states": [ { "name": "facing", @@ -13628,33 +14391,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 436 + 459 ], "boundingBox": "block" }, { - "id": 399, + "id": 418, "name": "dark_prismarine_stairs", "displayName": "Dark Prismarine Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8025, - "minStateId": 8014, - "maxStateId": 8093, + "defaultState": 8516, + "minStateId": 8505, + "maxStateId": 8584, "states": [ { "name": "facing", @@ -13695,33 +14458,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 437 + 460 ], "boundingBox": "block" }, { - "id": 400, + "id": 419, "name": "prismarine_slab", "displayName": "Prismarine Slab", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8097, - "minStateId": 8094, - "maxStateId": 8099, + "defaultState": 8588, + "minStateId": 8585, + "maxStateId": 8590, "states": [ { "name": "type", @@ -13740,33 +14503,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 225 + 237 ], "boundingBox": "block" }, { - "id": 401, + "id": 420, "name": "prismarine_brick_slab", "displayName": "Prismarine Brick Slab", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8103, - "minStateId": 8100, - "maxStateId": 8105, + "defaultState": 8594, + "minStateId": 8591, + "maxStateId": 8596, "states": [ { "name": "type", @@ -13785,33 +14548,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 226 + 238 ], "boundingBox": "block" }, { - "id": 402, + "id": 421, "name": "dark_prismarine_slab", "displayName": "Dark Prismarine Slab", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8109, - "minStateId": 8106, - "maxStateId": 8111, + "defaultState": 8600, + "minStateId": 8597, + "maxStateId": 8602, "states": [ { "name": "type", @@ -13830,20 +14593,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 227 + 239 ], "boundingBox": "block" }, { - "id": 403, + "id": 422, "name": "sea_lantern", "displayName": "Sea Lantern", "hardness": 0.3, @@ -13854,17 +14617,17 @@ "transparent": false, "emitLight": 15, "filterLight": 15, - "defaultState": 8112, - "minStateId": 8112, - "maxStateId": 8112, + "defaultState": 8603, + "minStateId": 8603, + "maxStateId": 8603, "states": [], "drops": [ - 966 + 1009 ], "boundingBox": "block" }, { - "id": 404, + "id": 423, "name": "hay_block", "displayName": "Hay Bale", "hardness": 0.5, @@ -13875,9 +14638,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8114, - "minStateId": 8113, - "maxStateId": 8115, + "defaultState": 8605, + "minStateId": 8604, + "maxStateId": 8606, "states": [ { "name": "axis", @@ -13891,12 +14654,12 @@ } ], "drops": [ - 372 + 397 ], "boundingBox": "block" }, { - "id": 405, + "id": 424, "name": "white_carpet", "displayName": "White Carpet", "hardness": 0.1, @@ -13907,17 +14670,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8116, - "minStateId": 8116, - "maxStateId": 8116, + "defaultState": 8607, + "minStateId": 8607, + "maxStateId": 8607, "states": [], "drops": [ - 373 + 398 ], "boundingBox": "block" }, { - "id": 406, + "id": 425, "name": "orange_carpet", "displayName": "Orange Carpet", "hardness": 0.1, @@ -13928,17 +14691,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8117, - "minStateId": 8117, - "maxStateId": 8117, + "defaultState": 8608, + "minStateId": 8608, + "maxStateId": 8608, "states": [], "drops": [ - 374 + 399 ], "boundingBox": "block" }, { - "id": 407, + "id": 426, "name": "magenta_carpet", "displayName": "Magenta Carpet", "hardness": 0.1, @@ -13949,17 +14712,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8118, - "minStateId": 8118, - "maxStateId": 8118, + "defaultState": 8609, + "minStateId": 8609, + "maxStateId": 8609, "states": [], "drops": [ - 375 + 400 ], "boundingBox": "block" }, { - "id": 408, + "id": 427, "name": "light_blue_carpet", "displayName": "Light Blue Carpet", "hardness": 0.1, @@ -13970,17 +14733,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8119, - "minStateId": 8119, - "maxStateId": 8119, + "defaultState": 8610, + "minStateId": 8610, + "maxStateId": 8610, "states": [], "drops": [ - 376 + 401 ], "boundingBox": "block" }, { - "id": 409, + "id": 428, "name": "yellow_carpet", "displayName": "Yellow Carpet", "hardness": 0.1, @@ -13991,17 +14754,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8120, - "minStateId": 8120, - "maxStateId": 8120, + "defaultState": 8611, + "minStateId": 8611, + "maxStateId": 8611, "states": [], "drops": [ - 377 + 402 ], "boundingBox": "block" }, { - "id": 410, + "id": 429, "name": "lime_carpet", "displayName": "Lime Carpet", "hardness": 0.1, @@ -14012,17 +14775,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8121, - "minStateId": 8121, - "maxStateId": 8121, + "defaultState": 8612, + "minStateId": 8612, + "maxStateId": 8612, "states": [], "drops": [ - 378 + 403 ], "boundingBox": "block" }, { - "id": 411, + "id": 430, "name": "pink_carpet", "displayName": "Pink Carpet", "hardness": 0.1, @@ -14033,17 +14796,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8122, - "minStateId": 8122, - "maxStateId": 8122, + "defaultState": 8613, + "minStateId": 8613, + "maxStateId": 8613, "states": [], "drops": [ - 379 + 404 ], "boundingBox": "block" }, { - "id": 412, + "id": 431, "name": "gray_carpet", "displayName": "Gray Carpet", "hardness": 0.1, @@ -14054,17 +14817,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8123, - "minStateId": 8123, - "maxStateId": 8123, + "defaultState": 8614, + "minStateId": 8614, + "maxStateId": 8614, "states": [], "drops": [ - 380 + 405 ], "boundingBox": "block" }, { - "id": 413, + "id": 432, "name": "light_gray_carpet", "displayName": "Light Gray Carpet", "hardness": 0.1, @@ -14075,17 +14838,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8124, - "minStateId": 8124, - "maxStateId": 8124, + "defaultState": 8615, + "minStateId": 8615, + "maxStateId": 8615, "states": [], "drops": [ - 381 + 406 ], "boundingBox": "block" }, { - "id": 414, + "id": 433, "name": "cyan_carpet", "displayName": "Cyan Carpet", "hardness": 0.1, @@ -14096,17 +14859,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8125, - "minStateId": 8125, - "maxStateId": 8125, + "defaultState": 8616, + "minStateId": 8616, + "maxStateId": 8616, "states": [], "drops": [ - 382 + 407 ], "boundingBox": "block" }, { - "id": 415, + "id": 434, "name": "purple_carpet", "displayName": "Purple Carpet", "hardness": 0.1, @@ -14117,17 +14880,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8126, - "minStateId": 8126, - "maxStateId": 8126, + "defaultState": 8617, + "minStateId": 8617, + "maxStateId": 8617, "states": [], "drops": [ - 383 + 408 ], "boundingBox": "block" }, { - "id": 416, + "id": 435, "name": "blue_carpet", "displayName": "Blue Carpet", "hardness": 0.1, @@ -14138,17 +14901,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8127, - "minStateId": 8127, - "maxStateId": 8127, + "defaultState": 8618, + "minStateId": 8618, + "maxStateId": 8618, "states": [], "drops": [ - 384 + 409 ], "boundingBox": "block" }, { - "id": 417, + "id": 436, "name": "brown_carpet", "displayName": "Brown Carpet", "hardness": 0.1, @@ -14159,17 +14922,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8128, - "minStateId": 8128, - "maxStateId": 8128, + "defaultState": 8619, + "minStateId": 8619, + "maxStateId": 8619, "states": [], "drops": [ - 385 + 410 ], "boundingBox": "block" }, { - "id": 418, + "id": 437, "name": "green_carpet", "displayName": "Green Carpet", "hardness": 0.1, @@ -14180,17 +14943,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8129, - "minStateId": 8129, - "maxStateId": 8129, + "defaultState": 8620, + "minStateId": 8620, + "maxStateId": 8620, "states": [], "drops": [ - 386 + 411 ], "boundingBox": "block" }, { - "id": 419, + "id": 438, "name": "red_carpet", "displayName": "Red Carpet", "hardness": 0.1, @@ -14201,17 +14964,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8130, - "minStateId": 8130, - "maxStateId": 8130, + "defaultState": 8621, + "minStateId": 8621, + "maxStateId": 8621, "states": [], "drops": [ - 387 + 412 ], "boundingBox": "block" }, { - "id": 420, + "id": 439, "name": "black_carpet", "displayName": "Black Carpet", "hardness": 0.1, @@ -14222,17 +14985,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8131, - "minStateId": 8131, - "maxStateId": 8131, + "defaultState": 8622, + "minStateId": 8622, + "maxStateId": 8622, "states": [], "drops": [ - 388 + 413 ], "boundingBox": "block" }, { - "id": 421, + "id": 440, "name": "terracotta", "displayName": "Terracotta", "hardness": 1.25, @@ -14243,54 +15006,54 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8132, - "minStateId": 8132, - "maxStateId": 8132, + "defaultState": 8623, + "minStateId": 8623, + "maxStateId": 8623, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 389 + 414 ], "boundingBox": "block" }, { - "id": 422, + "id": 441, "name": "coal_block", "displayName": "Block of Coal", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8133, - "minStateId": 8133, - "maxStateId": 8133, + "defaultState": 8624, + "minStateId": 8624, + "maxStateId": 8624, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 59 + 62 ], "boundingBox": "block" }, { - "id": 423, + "id": 442, "name": "packed_ice", "displayName": "Packed Ice", "hardness": 0.5, @@ -14301,28 +15064,28 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8134, - "minStateId": 8134, - "maxStateId": 8134, + "defaultState": 8625, + "minStateId": 8625, + "maxStateId": 8625, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 424, + "id": 443, "name": "sunflower", "displayName": "Sunflower", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "plant;mineable/axe", + "material": "plant", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8136, - "minStateId": 8135, - "maxStateId": 8136, + "defaultState": 8627, + "minStateId": 8626, + "maxStateId": 8627, "states": [ { "name": "half", @@ -14335,851 +15098,176 @@ } ], "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 + 417 ], "boundingBox": "empty" }, { "id": 444, - "name": "red_banner", - "displayName": "Red Banner", - "hardness": 1, - "resistance": 1, - "stackSize": 16, + "name": "lilac", + "displayName": "Lilac", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, "diggable": true, - "material": "mineable/axe", + "material": "plant", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8371, - "minStateId": 8371, - "maxStateId": 8386, + "defaultState": 8629, + "minStateId": 8628, + "maxStateId": 8629, "states": [ { - "name": "rotation", - "type": "int", - "num_values": 16, + "name": "half", + "type": "enum", + "num_values": 2, "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "upper", + "lower" ] } ], "drops": [ - 996 + 418 ], "boundingBox": "empty" }, { "id": 445, - "name": "black_banner", - "displayName": "Black Banner", - "hardness": 1, - "resistance": 1, + "name": "rose_bush", + "displayName": "Rose Bush", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8631, + "minStateId": 8630, + "maxStateId": 8631, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 419 + ], + "boundingBox": "empty" + }, + { + "id": 446, + "name": "peony", + "displayName": "Peony", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8633, + "minStateId": 8632, + "maxStateId": 8633, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [ + 420 + ], + "boundingBox": "empty" + }, + { + "id": 447, + "name": "tall_grass", + "displayName": "Tall Grass", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8635, + "minStateId": 8634, + "maxStateId": 8635, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 448, + "name": "large_fern", + "displayName": "Large Fern", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8637, + "minStateId": 8636, + "maxStateId": 8637, + "states": [ + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 449, + "name": "white_banner", + "displayName": "White Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8387, - "minStateId": 8387, - "maxStateId": 8402, + "defaultState": 8638, + "minStateId": 8638, + "maxStateId": 8653, "states": [ { "name": "rotation", @@ -15206,520 +15294,700 @@ } ], "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 + 1025 ], "boundingBox": "empty" }, { "id": 450, - "name": "yellow_wall_banner", - "displayName": "Yellow Banner", - "hardness": 1, - "resistance": 1, + "name": "orange_banner", + "displayName": "Orange Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8419, - "minStateId": 8419, - "maxStateId": 8422, + "defaultState": 8654, + "minStateId": 8654, + "maxStateId": 8669, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 986 + 1026 ], "boundingBox": "empty" }, { "id": 451, - "name": "lime_wall_banner", - "displayName": "Lime Banner", - "hardness": 1, - "resistance": 1, + "name": "magenta_banner", + "displayName": "Magenta Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8423, - "minStateId": 8423, - "maxStateId": 8426, + "defaultState": 8670, + "minStateId": 8670, + "maxStateId": 8685, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 987 + 1027 ], "boundingBox": "empty" }, { "id": 452, - "name": "pink_wall_banner", - "displayName": "Pink Banner", - "hardness": 1, - "resistance": 1, + "name": "light_blue_banner", + "displayName": "Light Blue Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8427, - "minStateId": 8427, - "maxStateId": 8430, + "defaultState": 8686, + "minStateId": 8686, + "maxStateId": 8701, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 988 + 1028 ], "boundingBox": "empty" }, { "id": 453, - "name": "gray_wall_banner", - "displayName": "Gray Banner", - "hardness": 1, - "resistance": 1, + "name": "yellow_banner", + "displayName": "Yellow Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8431, - "minStateId": 8431, - "maxStateId": 8434, + "defaultState": 8702, + "minStateId": 8702, + "maxStateId": 8717, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 989 + 1029 ], "boundingBox": "empty" }, { "id": 454, - "name": "light_gray_wall_banner", - "displayName": "Light Gray Banner", - "hardness": 1, - "resistance": 1, + "name": "lime_banner", + "displayName": "Lime Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8435, - "minStateId": 8435, - "maxStateId": 8438, + "defaultState": 8718, + "minStateId": 8718, + "maxStateId": 8733, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 990 + 1030 ], "boundingBox": "empty" }, { "id": 455, - "name": "cyan_wall_banner", - "displayName": "Cyan Banner", - "hardness": 1, - "resistance": 1, + "name": "pink_banner", + "displayName": "Pink Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8439, - "minStateId": 8439, - "maxStateId": 8442, + "defaultState": 8734, + "minStateId": 8734, + "maxStateId": 8749, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 991 + 1031 ], "boundingBox": "empty" }, { "id": 456, - "name": "purple_wall_banner", - "displayName": "Purple Banner", - "hardness": 1, - "resistance": 1, + "name": "gray_banner", + "displayName": "Gray Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8443, - "minStateId": 8443, - "maxStateId": 8446, + "defaultState": 8750, + "minStateId": 8750, + "maxStateId": 8765, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 992 + 1032 ], "boundingBox": "empty" }, { "id": 457, - "name": "blue_wall_banner", - "displayName": "Blue Banner", - "hardness": 1, - "resistance": 1, + "name": "light_gray_banner", + "displayName": "Light Gray Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8447, - "minStateId": 8447, - "maxStateId": 8450, + "defaultState": 8766, + "minStateId": 8766, + "maxStateId": 8781, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 993 + 1033 ], "boundingBox": "empty" }, { "id": 458, - "name": "brown_wall_banner", - "displayName": "Brown Banner", - "hardness": 1, - "resistance": 1, + "name": "cyan_banner", + "displayName": "Cyan Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8451, - "minStateId": 8451, - "maxStateId": 8454, + "defaultState": 8782, + "minStateId": 8782, + "maxStateId": 8797, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 994 + 1034 ], "boundingBox": "empty" }, { "id": 459, - "name": "green_wall_banner", - "displayName": "Green Banner", - "hardness": 1, - "resistance": 1, + "name": "purple_banner", + "displayName": "Purple Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8455, - "minStateId": 8455, - "maxStateId": 8458, + "defaultState": 8798, + "minStateId": 8798, + "maxStateId": 8813, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 995 + 1035 ], "boundingBox": "empty" }, { "id": 460, - "name": "red_wall_banner", - "displayName": "Red Banner", - "hardness": 1, - "resistance": 1, + "name": "blue_banner", + "displayName": "Blue Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8459, - "minStateId": 8459, - "maxStateId": 8462, + "defaultState": 8814, + "minStateId": 8814, + "maxStateId": 8829, "states": [ { - "name": "facing", - "type": "enum", - "num_values": 4, + "name": "rotation", + "type": "int", + "num_values": 16, "values": [ - "north", - "south", - "west", - "east" + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] } ], "drops": [ - 996 + 1036 ], "boundingBox": "empty" }, { "id": 461, - "name": "black_wall_banner", - "displayName": "Black Banner", - "hardness": 1, - "resistance": 1, + "name": "brown_banner", + "displayName": "Brown Banner", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 8463, - "minStateId": 8463, - "maxStateId": 8466, + "defaultState": 8830, + "minStateId": 8830, + "maxStateId": 8845, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1037 + ], + "boundingBox": "empty" + }, + { + "id": 462, + "name": "green_banner", + "displayName": "Green Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8846, + "minStateId": 8846, + "maxStateId": 8861, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1038 + ], + "boundingBox": "empty" + }, + { + "id": 463, + "name": "red_banner", + "displayName": "Red Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8862, + "minStateId": 8862, + "maxStateId": 8877, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1039 + ], + "boundingBox": "empty" + }, + { + "id": 464, + "name": "black_banner", + "displayName": "Black Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8878, + "minStateId": 8878, + "maxStateId": 8893, + "states": [ + { + "name": "rotation", + "type": "int", + "num_values": 16, + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "drops": [ + 1040 + ], + "boundingBox": "empty" + }, + { + "id": 465, + "name": "white_wall_banner", + "displayName": "White Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8894, + "minStateId": 8894, + "maxStateId": 8897, "states": [ { "name": "facing", @@ -15734,12 +16002,507 @@ } ], "drops": [ - 997 + 1025 ], "boundingBox": "empty" }, { - "id": 462, + "id": 466, + "name": "orange_wall_banner", + "displayName": "Orange Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8898, + "minStateId": 8898, + "maxStateId": 8901, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1026 + ], + "boundingBox": "empty" + }, + { + "id": 467, + "name": "magenta_wall_banner", + "displayName": "Magenta Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8902, + "minStateId": 8902, + "maxStateId": 8905, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1027 + ], + "boundingBox": "empty" + }, + { + "id": 468, + "name": "light_blue_wall_banner", + "displayName": "Light Blue Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8906, + "minStateId": 8906, + "maxStateId": 8909, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1028 + ], + "boundingBox": "empty" + }, + { + "id": 469, + "name": "yellow_wall_banner", + "displayName": "Yellow Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8910, + "minStateId": 8910, + "maxStateId": 8913, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1029 + ], + "boundingBox": "empty" + }, + { + "id": 470, + "name": "lime_wall_banner", + "displayName": "Lime Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8914, + "minStateId": 8914, + "maxStateId": 8917, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1030 + ], + "boundingBox": "empty" + }, + { + "id": 471, + "name": "pink_wall_banner", + "displayName": "Pink Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8918, + "minStateId": 8918, + "maxStateId": 8921, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1031 + ], + "boundingBox": "empty" + }, + { + "id": 472, + "name": "gray_wall_banner", + "displayName": "Gray Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8922, + "minStateId": 8922, + "maxStateId": 8925, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1032 + ], + "boundingBox": "empty" + }, + { + "id": 473, + "name": "light_gray_wall_banner", + "displayName": "Light Gray Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8926, + "minStateId": 8926, + "maxStateId": 8929, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1033 + ], + "boundingBox": "empty" + }, + { + "id": 474, + "name": "cyan_wall_banner", + "displayName": "Cyan Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8930, + "minStateId": 8930, + "maxStateId": 8933, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1034 + ], + "boundingBox": "empty" + }, + { + "id": 475, + "name": "purple_wall_banner", + "displayName": "Purple Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8934, + "minStateId": 8934, + "maxStateId": 8937, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1035 + ], + "boundingBox": "empty" + }, + { + "id": 476, + "name": "blue_wall_banner", + "displayName": "Blue Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8938, + "minStateId": 8938, + "maxStateId": 8941, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1036 + ], + "boundingBox": "empty" + }, + { + "id": 477, + "name": "brown_wall_banner", + "displayName": "Brown Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8942, + "minStateId": 8942, + "maxStateId": 8945, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1037 + ], + "boundingBox": "empty" + }, + { + "id": 478, + "name": "green_wall_banner", + "displayName": "Green Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8946, + "minStateId": 8946, + "maxStateId": 8949, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1038 + ], + "boundingBox": "empty" + }, + { + "id": 479, + "name": "red_wall_banner", + "displayName": "Red Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8950, + "minStateId": 8950, + "maxStateId": 8953, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1039 + ], + "boundingBox": "empty" + }, + { + "id": 480, + "name": "black_wall_banner", + "displayName": "Black Banner", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 16, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 8954, + "minStateId": 8954, + "maxStateId": 8957, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "drops": [ + 1040 + ], + "boundingBox": "empty" + }, + { + "id": 481, "name": "red_sandstone", "displayName": "Red Sandstone", "hardness": 0.8, @@ -15750,25 +16513,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8467, - "minStateId": 8467, - "maxStateId": 8467, + "defaultState": 8958, + "minStateId": 8958, + "maxStateId": 8958, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 439 + 462 ], "boundingBox": "block" }, { - "id": 463, + "id": 482, "name": "chiseled_red_sandstone", "displayName": "Chiseled Red Sandstone", "hardness": 0.8, @@ -15779,25 +16542,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8468, - "minStateId": 8468, - "maxStateId": 8468, + "defaultState": 8959, + "minStateId": 8959, + "maxStateId": 8959, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 440 + 463 ], "boundingBox": "block" }, { - "id": 464, + "id": 483, "name": "cut_red_sandstone", "displayName": "Cut Red Sandstone", "hardness": 0.8, @@ -15808,25 +16571,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 8469, - "minStateId": 8469, - "maxStateId": 8469, + "defaultState": 8960, + "minStateId": 8960, + "maxStateId": 8960, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 441 + 464 ], "boundingBox": "block" }, { - "id": 465, + "id": 484, "name": "red_sandstone_stairs", "displayName": "Red Sandstone Stairs", "hardness": 0.8, @@ -15837,9 +16600,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8481, - "minStateId": 8470, - "maxStateId": 8549, + "defaultState": 8972, + "minStateId": 8961, + "maxStateId": 9040, "states": [ { "name": "facing", @@ -15880,33 +16643,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 442 + 465 ], "boundingBox": "block" }, { - "id": 466, + "id": 485, "name": "oak_slab", "displayName": "Oak Slab", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8553, - "minStateId": 8550, - "maxStateId": 8555, + "defaultState": 9044, + "minStateId": 9041, + "maxStateId": 9046, "states": [ { "name": "type", @@ -15924,346 +16687,26 @@ "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, + "id": 486, + "name": "spruce_slab", + "displayName": "Spruce Slab", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", + "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8607, - "minStateId": 8604, - "maxStateId": 8609, + "defaultState": 9050, + "minStateId": 9047, + "maxStateId": 9052, "states": [ { "name": "type", @@ -16281,34 +16724,26 @@ "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, + "id": 487, + "name": "birch_slab", + "displayName": "Birch Slab", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", + "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8613, - "minStateId": 8610, - "maxStateId": 8615, + "defaultState": 9056, + "minStateId": 9053, + "maxStateId": 9058, "states": [ { "name": "type", @@ -16326,34 +16761,26 @@ "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, + "id": 488, + "name": "jungle_slab", + "displayName": "Jungle Slab", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", + "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8619, - "minStateId": 8616, - "maxStateId": 8621, + "defaultState": 9062, + "minStateId": 9059, + "maxStateId": 9064, "states": [ { "name": "type", @@ -16371,34 +16798,26 @@ "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, + "id": 489, + "name": "acacia_slab", + "displayName": "Acacia Slab", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", + "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8625, - "minStateId": 8622, - "maxStateId": 8627, + "defaultState": 9068, + "minStateId": 9065, + "maxStateId": 9070, "states": [ { "name": "type", @@ -16416,34 +16835,26 @@ "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, + "id": 490, + "name": "dark_oak_slab", + "displayName": "Dark Oak Slab", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", + "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8631, - "minStateId": 8628, - "maxStateId": 8633, + "defaultState": 9074, + "minStateId": 9071, + "maxStateId": 9076, "states": [ { "name": "type", @@ -16461,34 +16872,26 @@ "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, + "id": 491, + "name": "mangrove_slab", + "displayName": "Mangrove Slab", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/pickaxe", + "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8637, - "minStateId": 8634, - "maxStateId": 8639, + "defaultState": 9080, + "minStateId": 9077, + "maxStateId": 9082, "states": [ { "name": "type", @@ -16506,34 +16909,26 @@ "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, + "id": 492, + "name": "stone_slab", + "displayName": "Stone Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8643, - "minStateId": 8640, - "maxStateId": 8645, + "defaultState": 9086, + "minStateId": 9083, + "maxStateId": 9088, "states": [ { "name": "type", @@ -16552,102 +16947,12 @@ } ], "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 + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 223 @@ -16655,20 +16960,20 @@ "boundingBox": "block" }, { - "id": 484, - "name": "purpur_slab", - "displayName": "Purpur Slab", - "hardness": 2, - "resistance": 6, + "id": 493, + "name": "smooth_stone_slab", + "displayName": "Smooth Stone Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8661, - "minStateId": 8658, - "maxStateId": 8663, + "defaultState": 9092, + "minStateId": 9089, + "maxStateId": 9094, "states": [ { "name": "type", @@ -16687,12 +16992,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 224 @@ -16700,86 +17005,179 @@ "boundingBox": "block" }, { - "id": 485, - "name": "smooth_stone", - "displayName": "Smooth Stone", - "hardness": 2, - "resistance": 6, + "id": 494, + "name": "sandstone_slab", + "displayName": "Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 8664, - "minStateId": 8664, - "maxStateId": 8664, - "states": [], + "filterLight": 0, + "defaultState": 9098, + "minStateId": 9095, + "maxStateId": 9100, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 231 + 225 ], "boundingBox": "block" }, { - "id": 486, - "name": "smooth_sandstone", - "displayName": "Smooth Sandstone", - "hardness": 2, - "resistance": 6, + "id": 495, + "name": "cut_sandstone_slab", + "displayName": "Cut Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 8665, - "minStateId": 8665, - "maxStateId": 8665, - "states": [], + "filterLight": 0, + "defaultState": 9104, + "minStateId": 9101, + "maxStateId": 9106, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 230 + 226 ], "boundingBox": "block" }, { - "id": 487, - "name": "smooth_quartz", - "displayName": "Smooth Quartz Block", - "hardness": 2, - "resistance": 6, + "id": 496, + "name": "petrified_oak_slab", + "displayName": "Petrified Oak Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 8666, - "minStateId": 8666, - "maxStateId": 8666, - "states": [], + "filterLight": 0, + "defaultState": 9110, + "minStateId": 9107, + "maxStateId": 9112, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 227 + ], + "boundingBox": "block" + }, + { + "id": 497, + "name": "cobblestone_slab", + "displayName": "Cobblestone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9116, + "minStateId": 9113, + "maxStateId": 9118, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 228 @@ -16787,768 +17185,1066 @@ "boundingBox": "block" }, { - "id": 488, - "name": "smooth_red_sandstone", - "displayName": "Smooth Red Sandstone", - "hardness": 2, - "resistance": 6, + "id": 498, + "name": "brick_slab", + "displayName": "Brick Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 8667, - "minStateId": 8667, - "maxStateId": 8667, - "states": [], + "filterLight": 0, + "defaultState": 9122, + "minStateId": 9119, + "maxStateId": 9124, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": 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, + "name": "stone_brick_slab", + "displayName": "Stone Brick Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "mineable/axe", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 8999, - "minStateId": 8988, - "maxStateId": 9051, + "defaultState": 9128, + "minStateId": 9125, + "maxStateId": 9130, "states": [ { - "name": "facing", + "name": "type", "type": "enum", - "num_values": 4, + "num_values": 3, "values": [ - "north", - "south", - "west", - "east" + "top", + "bottom", + "double" ] }, { - "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", + "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 633 + 230 ], "boundingBox": "block" }, { "id": 500, - "name": "birch_door", - "displayName": "Birch Door", - "hardness": 3, - "resistance": 3, + "name": "mud_brick_slab", + "displayName": "Mud Brick Slab", + "hardness": 1.5, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "mineable/axe", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 9063, - "minStateId": 9052, - "maxStateId": 9115, + "defaultState": 9134, + "minStateId": 9131, + "maxStateId": 9136, "states": [ { - "name": "facing", + "name": "type", "type": "enum", - "num_values": 4, + "num_values": 3, "values": [ - "north", - "south", - "west", - "east" + "top", + "bottom", + "double" ] }, { - "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", + "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 634 + 231 ], "boundingBox": "block" }, { "id": 501, - "name": "jungle_door", - "displayName": "Jungle Door", - "hardness": 3, - "resistance": 3, + "name": "nether_brick_slab", + "displayName": "Nether Brick Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "mineable/axe", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 9127, - "minStateId": 9116, - "maxStateId": 9179, + "defaultState": 9140, + "minStateId": 9137, + "maxStateId": 9142, "states": [ { - "name": "facing", + "name": "type", "type": "enum", - "num_values": 4, + "num_values": 3, "values": [ - "north", - "south", - "west", - "east" + "top", + "bottom", + "double" ] }, { - "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", + "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 635 + 232 ], "boundingBox": "block" }, { "id": 502, - "name": "acacia_door", - "displayName": "Acacia Door", - "hardness": 3, - "resistance": 3, + "name": "quartz_slab", + "displayName": "Quartz Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "mineable/axe", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 9191, - "minStateId": 9180, - "maxStateId": 9243, + "defaultState": 9146, + "minStateId": 9143, + "maxStateId": 9148, "states": [ { - "name": "facing", + "name": "type", "type": "enum", - "num_values": 4, + "num_values": 3, "values": [ - "north", - "south", - "west", - "east" + "top", + "bottom", + "double" ] }, { - "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", + "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [ - 636 + 233 ], "boundingBox": "block" }, { "id": 503, - "name": "dark_oak_door", - "displayName": "Dark Oak Door", - "hardness": 3, - "resistance": 3, + "name": "red_sandstone_slab", + "displayName": "Red Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9152, + "minStateId": 9149, + "maxStateId": 9154, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 234 + ], + "boundingBox": "block" + }, + { + "id": 504, + "name": "cut_red_sandstone_slab", + "displayName": "Cut Red Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9158, + "minStateId": 9155, + "maxStateId": 9160, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 235 + ], + "boundingBox": "block" + }, + { + "id": 505, + "name": "purpur_slab", + "displayName": "Purpur Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9164, + "minStateId": 9161, + "maxStateId": 9166, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 236 + ], + "boundingBox": "block" + }, + { + "id": 506, + "name": "smooth_stone", + "displayName": "Smooth Stone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9167, + "minStateId": 9167, + "maxStateId": 9167, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 243 + ], + "boundingBox": "block" + }, + { + "id": 507, + "name": "smooth_sandstone", + "displayName": "Smooth Sandstone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9168, + "minStateId": 9168, + "maxStateId": 9168, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 242 + ], + "boundingBox": "block" + }, + { + "id": 508, + "name": "smooth_quartz", + "displayName": "Smooth Quartz Block", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9169, + "minStateId": 9169, + "maxStateId": 9169, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 240 + ], + "boundingBox": "block" + }, + { + "id": 509, + "name": "smooth_red_sandstone", + "displayName": "Smooth Red Sandstone", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 9170, + "minStateId": 9170, + "maxStateId": 9170, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 241 + ], + "boundingBox": "block" + }, + { + "id": 510, + "name": "spruce_fence_gate", + "displayName": "Spruce Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9178, + "minStateId": 9171, + "maxStateId": 9202, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 677 + ], + "boundingBox": "block" + }, + { + "id": 511, + "name": "birch_fence_gate", + "displayName": "Birch Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9210, + "minStateId": 9203, + "maxStateId": 9234, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 678 + ], + "boundingBox": "block" + }, + { + "id": 512, + "name": "jungle_fence_gate", + "displayName": "Jungle Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9242, + "minStateId": 9235, + "maxStateId": 9266, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 679 + ], + "boundingBox": "block" + }, + { + "id": 513, + "name": "acacia_fence_gate", + "displayName": "Acacia Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9274, + "minStateId": 9267, + "maxStateId": 9298, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 680 + ], + "boundingBox": "block" + }, + { + "id": 514, + "name": "dark_oak_fence_gate", + "displayName": "Dark Oak Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9306, + "minStateId": 9299, + "maxStateId": 9330, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 681 + ], + "boundingBox": "block" + }, + { + "id": 515, + "name": "mangrove_fence_gate", + "displayName": "Mangrove Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9338, + "minStateId": 9331, + "maxStateId": 9362, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 682 + ], + "boundingBox": "block" + }, + { + "id": 516, + "name": "spruce_fence", + "displayName": "Spruce Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9394, + "minStateId": 9363, + "maxStateId": 9394, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 269 + ], + "boundingBox": "block" + }, + { + "id": 517, + "name": "birch_fence", + "displayName": "Birch Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9426, + "minStateId": 9395, + "maxStateId": 9426, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 270 + ], + "boundingBox": "block" + }, + { + "id": 518, + "name": "jungle_fence", + "displayName": "Jungle Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9458, + "minStateId": 9427, + "maxStateId": 9458, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 271 + ], + "boundingBox": "block" + }, + { + "id": 519, + "name": "acacia_fence", + "displayName": "Acacia Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9490, + "minStateId": 9459, + "maxStateId": 9490, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 272 + ], + "boundingBox": "block" + }, + { + "id": 520, + "name": "dark_oak_fence", + "displayName": "Dark Oak Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9522, + "minStateId": 9491, + "maxStateId": 9522, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 273 + ], + "boundingBox": "block" + }, + { + "id": 521, + "name": "mangrove_fence", + "displayName": "Mangrove Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9554, + "minStateId": 9523, + "maxStateId": 9554, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 274 + ], + "boundingBox": "block" + }, + { + "id": 522, + "name": "spruce_door", + "displayName": "Spruce Door", + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9255, - "minStateId": 9244, - "maxStateId": 9307, + "defaultState": 9566, + "minStateId": 9555, + "maxStateId": 9618, "states": [ { "name": "facing", @@ -17591,25 +18287,330 @@ } ], "drops": [ - 637 + 658 ], "boundingBox": "block" }, { - "id": 504, + "id": 523, + "name": "birch_door", + "displayName": "Birch Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9630, + "minStateId": 9619, + "maxStateId": 9682, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 659 + ], + "boundingBox": "block" + }, + { + "id": 524, + "name": "jungle_door", + "displayName": "Jungle Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9694, + "minStateId": 9683, + "maxStateId": 9746, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 660 + ], + "boundingBox": "block" + }, + { + "id": 525, + "name": "acacia_door", + "displayName": "Acacia Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9758, + "minStateId": 9747, + "maxStateId": 9810, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 661 + ], + "boundingBox": "block" + }, + { + "id": 526, + "name": "dark_oak_door", + "displayName": "Dark Oak Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9822, + "minStateId": 9811, + "maxStateId": 9874, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 662 + ], + "boundingBox": "block" + }, + { + "id": 527, + "name": "mangrove_door", + "displayName": "Mangrove Door", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 9886, + "minStateId": 9875, + "maxStateId": 9938, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "type": "enum", + "num_values": 2, + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 663 + ], + "boundingBox": "block" + }, + { + "id": 528, "name": "end_rod", "displayName": "End Rod", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 14, "filterLight": 0, - "defaultState": 9312, - "minStateId": 9308, - "maxStateId": 9313, + "defaultState": 9943, + "minStateId": 9939, + "maxStateId": 9944, "states": [ { "name": "facing", @@ -17626,12 +18627,12 @@ } ], "drops": [ - 237 + 249 ], "boundingBox": "block" }, { - "id": 505, + "id": 529, "name": "chorus_plant", "displayName": "Chorus Plant", "hardness": 0.4, @@ -17642,9 +18643,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9377, - "minStateId": 9314, - "maxStateId": 9377, + "defaultState": 10008, + "minStateId": 9945, + "maxStateId": 10008, "states": [ { "name": "down", @@ -17678,12 +18679,12 @@ } ], "drops": [ - 999 + 0 ], "boundingBox": "block" }, { - "id": 506, + "id": 530, "name": "chorus_flower", "displayName": "Chorus Flower", "hardness": 0.4, @@ -17694,9 +18695,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9378, - "minStateId": 9378, - "maxStateId": 9383, + "defaultState": 10009, + "minStateId": 10009, + "maxStateId": 10014, "states": [ { "name": "age", @@ -17716,49 +18717,49 @@ "boundingBox": "block" }, { - "id": 507, + "id": 531, "name": "purpur_block", "displayName": "Purpur Block", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9384, - "minStateId": 9384, - "maxStateId": 9384, + "defaultState": 10015, + "minStateId": 10015, + "maxStateId": 10015, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 240 + 252 ], "boundingBox": "block" }, { - "id": 508, + "id": 532, "name": "purpur_pillar", "displayName": "Purpur Pillar", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9386, - "minStateId": 9385, - "maxStateId": 9387, + "defaultState": 10017, + "minStateId": 10016, + "maxStateId": 10018, "states": [ { "name": "axis", @@ -17772,33 +18773,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 241 + 253 ], "boundingBox": "block" }, { - "id": 509, + "id": 533, "name": "purpur_stairs", "displayName": "Purpur Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 9399, - "minStateId": 9388, - "maxStateId": 9467, + "defaultState": 10030, + "minStateId": 10019, + "maxStateId": 10098, "states": [ { "name": "facing", @@ -17839,62 +18840,62 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 242 + 254 ], "boundingBox": "block" }, { - "id": 510, + "id": 534, "name": "end_stone_bricks", "displayName": "End Stone Bricks", - "hardness": 3, - "resistance": 9, + "hardness": 3.0, + "resistance": 9.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9468, - "minStateId": 9468, - "maxStateId": 9468, + "defaultState": 10099, + "minStateId": 10099, + "maxStateId": 10099, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 313 + 333 ], "boundingBox": "block" }, { - "id": 511, + "id": 535, "name": "beetroots", - "displayName": "Beetroot Seeds", - "hardness": 0, - "resistance": 0, + "displayName": "Beetroots", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9469, - "minStateId": 9469, - "maxStateId": 9472, + "defaultState": 10100, + "minStateId": 10100, + "maxStateId": 10103, "states": [ { "name": "age", @@ -17909,12 +18910,12 @@ } ], "drops": [ - 1002 + 1045 ], "boundingBox": "empty" }, { - "id": 512, + "id": 536, "name": "dirt_path", "displayName": "Dirt Path", "hardness": 0.65, @@ -17925,9 +18926,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 9473, - "minStateId": 9473, - "maxStateId": 9473, + "defaultState": 10104, + "minStateId": 10104, + "maxStateId": 10104, "states": [], "drops": [ 15 @@ -17935,39 +18936,39 @@ "boundingBox": "block" }, { - "id": 513, + "id": 537, "name": "end_gateway", - "displayName": "Air", - "hardness": 0, - "resistance": 3600000, + "displayName": "End Gateway", + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": true, "emitLight": 15, "filterLight": 1, - "defaultState": 9474, - "minStateId": 9474, - "maxStateId": 9474, + "defaultState": 10105, + "minStateId": 10105, + "maxStateId": 10105, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 514, + "id": 538, "name": "repeating_command_block", "displayName": "Repeating Command Block", - "hardness": 0, - "resistance": 3600000, + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9481, - "minStateId": 9475, - "maxStateId": 9486, + "defaultState": 10112, + "minStateId": 10106, + "maxStateId": 10117, "states": [ { "name": "conditional", @@ -17993,20 +18994,20 @@ "boundingBox": "block" }, { - "id": 515, + "id": 539, "name": "chain_command_block", "displayName": "Chain Command Block", - "hardness": 0, - "resistance": 3600000, + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9493, - "minStateId": 9487, - "maxStateId": 9498, + "defaultState": 10124, + "minStateId": 10118, + "maxStateId": 10129, "states": [ { "name": "conditional", @@ -18032,9 +19033,9 @@ "boundingBox": "block" }, { - "id": 516, + "id": 540, "name": "frosted_ice", - "displayName": "Air", + "displayName": "Frosted Ice", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -18043,9 +19044,9 @@ "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9499, - "minStateId": 9499, - "maxStateId": 9502, + "defaultState": 10130, + "minStateId": 10130, + "maxStateId": 10133, "states": [ { "name": "age", @@ -18063,7 +19064,7 @@ "boundingBox": "block" }, { - "id": 517, + "id": 541, "name": "magma_block", "displayName": "Magma Block", "hardness": 0.5, @@ -18074,88 +19075,88 @@ "transparent": false, "emitLight": 3, "filterLight": 15, - "defaultState": 9503, - "minStateId": 9503, - "maxStateId": 9503, + "defaultState": 10134, + "minStateId": 10134, + "maxStateId": 10134, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 445 + 468 ], "boundingBox": "block" }, { - "id": 518, + "id": 542, "name": "nether_wart_block", "displayName": "Nether Wart Block", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "mineable/hoe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9504, - "minStateId": 9504, - "maxStateId": 9504, + "defaultState": 10135, + "minStateId": 10135, + "maxStateId": 10135, "states": [], "drops": [ - 446 + 469 ], "boundingBox": "block" }, { - "id": 519, + "id": 543, "name": "red_nether_bricks", "displayName": "Red Nether Bricks", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9505, - "minStateId": 9505, - "maxStateId": 9505, + "defaultState": 10136, + "minStateId": 10136, + "maxStateId": 10136, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 448 + 471 ], "boundingBox": "block" }, { - "id": 520, + "id": 544, "name": "bone_block", "displayName": "Bone Block", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9507, - "minStateId": 9506, - "maxStateId": 9508, + "defaultState": 10138, + "minStateId": 10137, + "maxStateId": 10139, "states": [ { "name": "axis", @@ -18169,52 +19170,52 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 449 + 472 ], "boundingBox": "block" }, { - "id": 521, + "id": 545, "name": "structure_void", "displayName": "Structure Void", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9509, - "minStateId": 9509, - "maxStateId": 9509, + "defaultState": 10140, + "minStateId": 10140, + "maxStateId": 10140, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 522, + "id": 546, "name": "observer", "displayName": "Observer", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9515, - "minStateId": 9510, - "maxStateId": 9521, + "defaultState": 10146, + "minStateId": 10141, + "maxStateId": 10152, "states": [ { "name": "facing", @@ -18236,33 +19237,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 594 + 617 ], "boundingBox": "block" }, { - "id": 523, + "id": 547, "name": "shulker_box", "displayName": "Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9526, - "minStateId": 9522, - "maxStateId": 9527, + "defaultState": 10157, + "minStateId": 10153, + "maxStateId": 10158, "states": [ { "name": "facing", @@ -18279,25 +19280,25 @@ } ], "drops": [ - 451 + 474 ], "boundingBox": "block" }, { - "id": 524, + "id": 548, "name": "white_shulker_box", "displayName": "White Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9532, - "minStateId": 9528, - "maxStateId": 9533, + "defaultState": 10163, + "minStateId": 10159, + "maxStateId": 10164, "states": [ { "name": "facing", @@ -18314,25 +19315,25 @@ } ], "drops": [ - 452 + 475 ], "boundingBox": "block" }, { - "id": 525, + "id": 549, "name": "orange_shulker_box", "displayName": "Orange Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9538, - "minStateId": 9534, - "maxStateId": 9539, + "defaultState": 10169, + "minStateId": 10165, + "maxStateId": 10170, "states": [ { "name": "facing", @@ -18349,25 +19350,25 @@ } ], "drops": [ - 453 + 476 ], "boundingBox": "block" }, { - "id": 526, + "id": 550, "name": "magenta_shulker_box", "displayName": "Magenta Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9544, - "minStateId": 9540, - "maxStateId": 9545, + "defaultState": 10175, + "minStateId": 10171, + "maxStateId": 10176, "states": [ { "name": "facing", @@ -18384,25 +19385,25 @@ } ], "drops": [ - 454 + 477 ], "boundingBox": "block" }, { - "id": 527, + "id": 551, "name": "light_blue_shulker_box", "displayName": "Light Blue Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9550, - "minStateId": 9546, - "maxStateId": 9551, + "defaultState": 10181, + "minStateId": 10177, + "maxStateId": 10182, "states": [ { "name": "facing", @@ -18419,25 +19420,25 @@ } ], "drops": [ - 455 + 478 ], "boundingBox": "block" }, { - "id": 528, + "id": 552, "name": "yellow_shulker_box", "displayName": "Yellow Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9556, - "minStateId": 9552, - "maxStateId": 9557, + "defaultState": 10187, + "minStateId": 10183, + "maxStateId": 10188, "states": [ { "name": "facing", @@ -18454,25 +19455,25 @@ } ], "drops": [ - 456 + 479 ], "boundingBox": "block" }, { - "id": 529, + "id": 553, "name": "lime_shulker_box", "displayName": "Lime Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9562, - "minStateId": 9558, - "maxStateId": 9563, + "defaultState": 10193, + "minStateId": 10189, + "maxStateId": 10194, "states": [ { "name": "facing", @@ -18489,25 +19490,25 @@ } ], "drops": [ - 457 + 480 ], "boundingBox": "block" }, { - "id": 530, + "id": 554, "name": "pink_shulker_box", "displayName": "Pink Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9568, - "minStateId": 9564, - "maxStateId": 9569, + "defaultState": 10199, + "minStateId": 10195, + "maxStateId": 10200, "states": [ { "name": "facing", @@ -18524,25 +19525,25 @@ } ], "drops": [ - 458 + 481 ], "boundingBox": "block" }, { - "id": 531, + "id": 555, "name": "gray_shulker_box", "displayName": "Gray Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9574, - "minStateId": 9570, - "maxStateId": 9575, + "defaultState": 10205, + "minStateId": 10201, + "maxStateId": 10206, "states": [ { "name": "facing", @@ -18559,25 +19560,25 @@ } ], "drops": [ - 459 + 482 ], "boundingBox": "block" }, { - "id": 532, + "id": 556, "name": "light_gray_shulker_box", "displayName": "Light Gray Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9580, - "minStateId": 9576, - "maxStateId": 9581, + "defaultState": 10211, + "minStateId": 10207, + "maxStateId": 10212, "states": [ { "name": "facing", @@ -18594,25 +19595,25 @@ } ], "drops": [ - 460 + 483 ], "boundingBox": "block" }, { - "id": 533, + "id": 557, "name": "cyan_shulker_box", "displayName": "Cyan Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9586, - "minStateId": 9582, - "maxStateId": 9587, + "defaultState": 10217, + "minStateId": 10213, + "maxStateId": 10218, "states": [ { "name": "facing", @@ -18629,25 +19630,25 @@ } ], "drops": [ - 461 + 484 ], "boundingBox": "block" }, { - "id": 534, + "id": 558, "name": "purple_shulker_box", "displayName": "Purple Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9592, - "minStateId": 9588, - "maxStateId": 9593, + "defaultState": 10223, + "minStateId": 10219, + "maxStateId": 10224, "states": [ { "name": "facing", @@ -18664,25 +19665,25 @@ } ], "drops": [ - 462 + 485 ], "boundingBox": "block" }, { - "id": 535, + "id": 559, "name": "blue_shulker_box", "displayName": "Blue Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9598, - "minStateId": 9594, - "maxStateId": 9599, + "defaultState": 10229, + "minStateId": 10225, + "maxStateId": 10230, "states": [ { "name": "facing", @@ -18699,25 +19700,25 @@ } ], "drops": [ - 463 + 486 ], "boundingBox": "block" }, { - "id": 536, + "id": 560, "name": "brown_shulker_box", "displayName": "Brown Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9604, - "minStateId": 9600, - "maxStateId": 9605, + "defaultState": 10235, + "minStateId": 10231, + "maxStateId": 10236, "states": [ { "name": "facing", @@ -18734,25 +19735,25 @@ } ], "drops": [ - 464 + 487 ], "boundingBox": "block" }, { - "id": 537, + "id": 561, "name": "green_shulker_box", "displayName": "Green Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9610, - "minStateId": 9606, - "maxStateId": 9611, + "defaultState": 10241, + "minStateId": 10237, + "maxStateId": 10242, "states": [ { "name": "facing", @@ -18769,25 +19770,25 @@ } ], "drops": [ - 465 + 488 ], "boundingBox": "block" }, { - "id": 538, + "id": 562, "name": "red_shulker_box", "displayName": "Red Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9616, - "minStateId": 9612, - "maxStateId": 9617, + "defaultState": 10247, + "minStateId": 10243, + "maxStateId": 10248, "states": [ { "name": "facing", @@ -18804,25 +19805,25 @@ } ], "drops": [ - 466 + 489 ], "boundingBox": "block" }, { - "id": 539, + "id": 563, "name": "black_shulker_box", "displayName": "Black Shulker Box", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 1, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9622, - "minStateId": 9618, - "maxStateId": 9623, + "defaultState": 10253, + "minStateId": 10249, + "maxStateId": 10254, "states": [ { "name": "facing", @@ -18839,12 +19840,12 @@ } ], "drops": [ - 467 + 490 ], "boundingBox": "block" }, { - "id": 540, + "id": 564, "name": "white_glazed_terracotta", "displayName": "White Glazed Terracotta", "hardness": 1.4, @@ -18855,9 +19856,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9624, - "minStateId": 9624, - "maxStateId": 9627, + "defaultState": 10255, + "minStateId": 10255, + "maxStateId": 10258, "states": [ { "name": "facing", @@ -18872,20 +19873,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 468 + 491 ], "boundingBox": "block" }, { - "id": 541, + "id": 565, "name": "orange_glazed_terracotta", "displayName": "Orange Glazed Terracotta", "hardness": 1.4, @@ -18896,9 +19897,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9628, - "minStateId": 9628, - "maxStateId": 9631, + "defaultState": 10259, + "minStateId": 10259, + "maxStateId": 10262, "states": [ { "name": "facing", @@ -18913,20 +19914,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 469 + 492 ], "boundingBox": "block" }, { - "id": 542, + "id": 566, "name": "magenta_glazed_terracotta", "displayName": "Magenta Glazed Terracotta", "hardness": 1.4, @@ -18937,9 +19938,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9632, - "minStateId": 9632, - "maxStateId": 9635, + "defaultState": 10263, + "minStateId": 10263, + "maxStateId": 10266, "states": [ { "name": "facing", @@ -18954,20 +19955,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 470 + 493 ], "boundingBox": "block" }, { - "id": 543, + "id": 567, "name": "light_blue_glazed_terracotta", "displayName": "Light Blue Glazed Terracotta", "hardness": 1.4, @@ -18978,9 +19979,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9636, - "minStateId": 9636, - "maxStateId": 9639, + "defaultState": 10267, + "minStateId": 10267, + "maxStateId": 10270, "states": [ { "name": "facing", @@ -18995,20 +19996,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 471 + 494 ], "boundingBox": "block" }, { - "id": 544, + "id": 568, "name": "yellow_glazed_terracotta", "displayName": "Yellow Glazed Terracotta", "hardness": 1.4, @@ -19019,9 +20020,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9640, - "minStateId": 9640, - "maxStateId": 9643, + "defaultState": 10271, + "minStateId": 10271, + "maxStateId": 10274, "states": [ { "name": "facing", @@ -19036,20 +20037,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 472 + 495 ], "boundingBox": "block" }, { - "id": 545, + "id": 569, "name": "lime_glazed_terracotta", "displayName": "Lime Glazed Terracotta", "hardness": 1.4, @@ -19060,9 +20061,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9644, - "minStateId": 9644, - "maxStateId": 9647, + "defaultState": 10275, + "minStateId": 10275, + "maxStateId": 10278, "states": [ { "name": "facing", @@ -19077,20 +20078,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 473 + 496 ], "boundingBox": "block" }, { - "id": 546, + "id": 570, "name": "pink_glazed_terracotta", "displayName": "Pink Glazed Terracotta", "hardness": 1.4, @@ -19101,9 +20102,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9648, - "minStateId": 9648, - "maxStateId": 9651, + "defaultState": 10279, + "minStateId": 10279, + "maxStateId": 10282, "states": [ { "name": "facing", @@ -19118,20 +20119,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 474 + 497 ], "boundingBox": "block" }, { - "id": 547, + "id": 571, "name": "gray_glazed_terracotta", "displayName": "Gray Glazed Terracotta", "hardness": 1.4, @@ -19142,9 +20143,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9652, - "minStateId": 9652, - "maxStateId": 9655, + "defaultState": 10283, + "minStateId": 10283, + "maxStateId": 10286, "states": [ { "name": "facing", @@ -19159,20 +20160,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 475 + 498 ], "boundingBox": "block" }, { - "id": 548, + "id": 572, "name": "light_gray_glazed_terracotta", "displayName": "Light Gray Glazed Terracotta", "hardness": 1.4, @@ -19183,9 +20184,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9656, - "minStateId": 9656, - "maxStateId": 9659, + "defaultState": 10287, + "minStateId": 10287, + "maxStateId": 10290, "states": [ { "name": "facing", @@ -19200,20 +20201,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 476 + 499 ], "boundingBox": "block" }, { - "id": 549, + "id": 573, "name": "cyan_glazed_terracotta", "displayName": "Cyan Glazed Terracotta", "hardness": 1.4, @@ -19224,9 +20225,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9660, - "minStateId": 9660, - "maxStateId": 9663, + "defaultState": 10291, + "minStateId": 10291, + "maxStateId": 10294, "states": [ { "name": "facing", @@ -19241,20 +20242,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 477 + 500 ], "boundingBox": "block" }, { - "id": 550, + "id": 574, "name": "purple_glazed_terracotta", "displayName": "Purple Glazed Terracotta", "hardness": 1.4, @@ -19265,9 +20266,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9664, - "minStateId": 9664, - "maxStateId": 9667, + "defaultState": 10295, + "minStateId": 10295, + "maxStateId": 10298, "states": [ { "name": "facing", @@ -19282,20 +20283,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 478 + 501 ], "boundingBox": "block" }, { - "id": 551, + "id": 575, "name": "blue_glazed_terracotta", "displayName": "Blue Glazed Terracotta", "hardness": 1.4, @@ -19306,9 +20307,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9668, - "minStateId": 9668, - "maxStateId": 9671, + "defaultState": 10299, + "minStateId": 10299, + "maxStateId": 10302, "states": [ { "name": "facing", @@ -19323,20 +20324,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 479 + 502 ], "boundingBox": "block" }, { - "id": 552, + "id": 576, "name": "brown_glazed_terracotta", "displayName": "Brown Glazed Terracotta", "hardness": 1.4, @@ -19347,9 +20348,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9672, - "minStateId": 9672, - "maxStateId": 9675, + "defaultState": 10303, + "minStateId": 10303, + "maxStateId": 10306, "states": [ { "name": "facing", @@ -19364,20 +20365,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 480 + 503 ], "boundingBox": "block" }, { - "id": 553, + "id": 577, "name": "green_glazed_terracotta", "displayName": "Green Glazed Terracotta", "hardness": 1.4, @@ -19388,9 +20389,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9676, - "minStateId": 9676, - "maxStateId": 9679, + "defaultState": 10307, + "minStateId": 10307, + "maxStateId": 10310, "states": [ { "name": "facing", @@ -19405,20 +20406,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 481 + 504 ], "boundingBox": "block" }, { - "id": 554, + "id": 578, "name": "red_glazed_terracotta", "displayName": "Red Glazed Terracotta", "hardness": 1.4, @@ -19429,9 +20430,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9680, - "minStateId": 9680, - "maxStateId": 9683, + "defaultState": 10311, + "minStateId": 10311, + "maxStateId": 10314, "states": [ { "name": "facing", @@ -19446,20 +20447,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 482 + 505 ], "boundingBox": "block" }, { - "id": 555, + "id": 579, "name": "black_glazed_terracotta", "displayName": "Black Glazed Terracotta", "hardness": 1.4, @@ -19470,9 +20471,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9684, - "minStateId": 9684, - "maxStateId": 9687, + "defaultState": 10315, + "minStateId": 10315, + "maxStateId": 10318, "states": [ { "name": "facing", @@ -19487,20 +20488,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 483 + 506 ], "boundingBox": "block" }, { - "id": 556, + "id": 580, "name": "white_concrete", "displayName": "White Concrete", "hardness": 1.8, @@ -19511,25 +20512,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9688, - "minStateId": 9688, - "maxStateId": 9688, + "defaultState": 10319, + "minStateId": 10319, + "maxStateId": 10319, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 484 + 507 ], "boundingBox": "block" }, { - "id": 557, + "id": 581, "name": "orange_concrete", "displayName": "Orange Concrete", "hardness": 1.8, @@ -19540,25 +20541,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9689, - "minStateId": 9689, - "maxStateId": 9689, + "defaultState": 10320, + "minStateId": 10320, + "maxStateId": 10320, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 485 + 508 ], "boundingBox": "block" }, { - "id": 558, + "id": 582, "name": "magenta_concrete", "displayName": "Magenta Concrete", "hardness": 1.8, @@ -19569,25 +20570,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9690, - "minStateId": 9690, - "maxStateId": 9690, + "defaultState": 10321, + "minStateId": 10321, + "maxStateId": 10321, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 486 + 509 ], "boundingBox": "block" }, { - "id": 559, + "id": 583, "name": "light_blue_concrete", "displayName": "Light Blue Concrete", "hardness": 1.8, @@ -19598,25 +20599,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9691, - "minStateId": 9691, - "maxStateId": 9691, + "defaultState": 10322, + "minStateId": 10322, + "maxStateId": 10322, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 487 + 510 ], "boundingBox": "block" }, { - "id": 560, + "id": 584, "name": "yellow_concrete", "displayName": "Yellow Concrete", "hardness": 1.8, @@ -19627,25 +20628,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9692, - "minStateId": 9692, - "maxStateId": 9692, + "defaultState": 10323, + "minStateId": 10323, + "maxStateId": 10323, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 488 + 511 ], "boundingBox": "block" }, { - "id": 561, + "id": 585, "name": "lime_concrete", "displayName": "Lime Concrete", "hardness": 1.8, @@ -19656,25 +20657,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9693, - "minStateId": 9693, - "maxStateId": 9693, + "defaultState": 10324, + "minStateId": 10324, + "maxStateId": 10324, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 489 + 512 ], "boundingBox": "block" }, { - "id": 562, + "id": 586, "name": "pink_concrete", "displayName": "Pink Concrete", "hardness": 1.8, @@ -19685,25 +20686,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9694, - "minStateId": 9694, - "maxStateId": 9694, + "defaultState": 10325, + "minStateId": 10325, + "maxStateId": 10325, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 490 + 513 ], "boundingBox": "block" }, { - "id": 563, + "id": 587, "name": "gray_concrete", "displayName": "Gray Concrete", "hardness": 1.8, @@ -19714,25 +20715,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9695, - "minStateId": 9695, - "maxStateId": 9695, + "defaultState": 10326, + "minStateId": 10326, + "maxStateId": 10326, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 491 + 514 ], "boundingBox": "block" }, { - "id": 564, + "id": 588, "name": "light_gray_concrete", "displayName": "Light Gray Concrete", "hardness": 1.8, @@ -19743,25 +20744,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9696, - "minStateId": 9696, - "maxStateId": 9696, + "defaultState": 10327, + "minStateId": 10327, + "maxStateId": 10327, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 492 + 515 ], "boundingBox": "block" }, { - "id": 565, + "id": 589, "name": "cyan_concrete", "displayName": "Cyan Concrete", "hardness": 1.8, @@ -19772,25 +20773,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9697, - "minStateId": 9697, - "maxStateId": 9697, + "defaultState": 10328, + "minStateId": 10328, + "maxStateId": 10328, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 493 + 516 ], "boundingBox": "block" }, { - "id": 566, + "id": 590, "name": "purple_concrete", "displayName": "Purple Concrete", "hardness": 1.8, @@ -19801,25 +20802,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9698, - "minStateId": 9698, - "maxStateId": 9698, + "defaultState": 10329, + "minStateId": 10329, + "maxStateId": 10329, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 494 + 517 ], "boundingBox": "block" }, { - "id": 567, + "id": 591, "name": "blue_concrete", "displayName": "Blue Concrete", "hardness": 1.8, @@ -19830,25 +20831,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9699, - "minStateId": 9699, - "maxStateId": 9699, + "defaultState": 10330, + "minStateId": 10330, + "maxStateId": 10330, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 495 + 518 ], "boundingBox": "block" }, { - "id": 568, + "id": 592, "name": "brown_concrete", "displayName": "Brown Concrete", "hardness": 1.8, @@ -19859,25 +20860,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9700, - "minStateId": 9700, - "maxStateId": 9700, + "defaultState": 10331, + "minStateId": 10331, + "maxStateId": 10331, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 496 + 519 ], "boundingBox": "block" }, { - "id": 569, + "id": 593, "name": "green_concrete", "displayName": "Green Concrete", "hardness": 1.8, @@ -19888,25 +20889,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9701, - "minStateId": 9701, - "maxStateId": 9701, + "defaultState": 10332, + "minStateId": 10332, + "maxStateId": 10332, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 497 + 520 ], "boundingBox": "block" }, { - "id": 570, + "id": 594, "name": "red_concrete", "displayName": "Red Concrete", "hardness": 1.8, @@ -19917,25 +20918,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9702, - "minStateId": 9702, - "maxStateId": 9702, + "defaultState": 10333, + "minStateId": 10333, + "maxStateId": 10333, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 498 + 521 ], "boundingBox": "block" }, { - "id": 571, + "id": 595, "name": "black_concrete", "displayName": "Black Concrete", "hardness": 1.8, @@ -19946,25 +20947,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9703, - "minStateId": 9703, - "maxStateId": 9703, + "defaultState": 10334, + "minStateId": 10334, + "maxStateId": 10334, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 499 + 522 ], "boundingBox": "block" }, { - "id": 572, + "id": 596, "name": "white_concrete_powder", "displayName": "White Concrete Powder", "hardness": 0.5, @@ -19975,17 +20976,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9704, - "minStateId": 9704, - "maxStateId": 9704, + "defaultState": 10335, + "minStateId": 10335, + "maxStateId": 10335, "states": [], "drops": [ - 500 + 523 ], "boundingBox": "block" }, { - "id": 573, + "id": 597, "name": "orange_concrete_powder", "displayName": "Orange Concrete Powder", "hardness": 0.5, @@ -19996,17 +20997,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9705, - "minStateId": 9705, - "maxStateId": 9705, + "defaultState": 10336, + "minStateId": 10336, + "maxStateId": 10336, "states": [], "drops": [ - 501 + 524 ], "boundingBox": "block" }, { - "id": 574, + "id": 598, "name": "magenta_concrete_powder", "displayName": "Magenta Concrete Powder", "hardness": 0.5, @@ -20017,17 +21018,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9706, - "minStateId": 9706, - "maxStateId": 9706, + "defaultState": 10337, + "minStateId": 10337, + "maxStateId": 10337, "states": [], "drops": [ - 502 + 525 ], "boundingBox": "block" }, { - "id": 575, + "id": 599, "name": "light_blue_concrete_powder", "displayName": "Light Blue Concrete Powder", "hardness": 0.5, @@ -20038,17 +21039,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9707, - "minStateId": 9707, - "maxStateId": 9707, + "defaultState": 10338, + "minStateId": 10338, + "maxStateId": 10338, "states": [], "drops": [ - 503 + 526 ], "boundingBox": "block" }, { - "id": 576, + "id": 600, "name": "yellow_concrete_powder", "displayName": "Yellow Concrete Powder", "hardness": 0.5, @@ -20059,17 +21060,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9708, - "minStateId": 9708, - "maxStateId": 9708, + "defaultState": 10339, + "minStateId": 10339, + "maxStateId": 10339, "states": [], "drops": [ - 504 + 527 ], "boundingBox": "block" }, { - "id": 577, + "id": 601, "name": "lime_concrete_powder", "displayName": "Lime Concrete Powder", "hardness": 0.5, @@ -20080,17 +21081,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9709, - "minStateId": 9709, - "maxStateId": 9709, + "defaultState": 10340, + "minStateId": 10340, + "maxStateId": 10340, "states": [], "drops": [ - 505 + 528 ], "boundingBox": "block" }, { - "id": 578, + "id": 602, "name": "pink_concrete_powder", "displayName": "Pink Concrete Powder", "hardness": 0.5, @@ -20101,17 +21102,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9710, - "minStateId": 9710, - "maxStateId": 9710, + "defaultState": 10341, + "minStateId": 10341, + "maxStateId": 10341, "states": [], "drops": [ - 506 + 529 ], "boundingBox": "block" }, { - "id": 579, + "id": 603, "name": "gray_concrete_powder", "displayName": "Gray Concrete Powder", "hardness": 0.5, @@ -20122,17 +21123,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9711, - "minStateId": 9711, - "maxStateId": 9711, + "defaultState": 10342, + "minStateId": 10342, + "maxStateId": 10342, "states": [], "drops": [ - 507 + 530 ], "boundingBox": "block" }, { - "id": 580, + "id": 604, "name": "light_gray_concrete_powder", "displayName": "Light Gray Concrete Powder", "hardness": 0.5, @@ -20143,17 +21144,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9712, - "minStateId": 9712, - "maxStateId": 9712, + "defaultState": 10343, + "minStateId": 10343, + "maxStateId": 10343, "states": [], "drops": [ - 508 + 531 ], "boundingBox": "block" }, { - "id": 581, + "id": 605, "name": "cyan_concrete_powder", "displayName": "Cyan Concrete Powder", "hardness": 0.5, @@ -20164,17 +21165,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9713, - "minStateId": 9713, - "maxStateId": 9713, + "defaultState": 10344, + "minStateId": 10344, + "maxStateId": 10344, "states": [], "drops": [ - 509 + 532 ], "boundingBox": "block" }, { - "id": 582, + "id": 606, "name": "purple_concrete_powder", "displayName": "Purple Concrete Powder", "hardness": 0.5, @@ -20185,17 +21186,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9714, - "minStateId": 9714, - "maxStateId": 9714, + "defaultState": 10345, + "minStateId": 10345, + "maxStateId": 10345, "states": [], "drops": [ - 510 + 533 ], "boundingBox": "block" }, { - "id": 583, + "id": 607, "name": "blue_concrete_powder", "displayName": "Blue Concrete Powder", "hardness": 0.5, @@ -20206,17 +21207,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9715, - "minStateId": 9715, - "maxStateId": 9715, + "defaultState": 10346, + "minStateId": 10346, + "maxStateId": 10346, "states": [], "drops": [ - 511 + 534 ], "boundingBox": "block" }, { - "id": 584, + "id": 608, "name": "brown_concrete_powder", "displayName": "Brown Concrete Powder", "hardness": 0.5, @@ -20227,17 +21228,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9716, - "minStateId": 9716, - "maxStateId": 9716, + "defaultState": 10347, + "minStateId": 10347, + "maxStateId": 10347, "states": [], "drops": [ - 512 + 535 ], "boundingBox": "block" }, { - "id": 585, + "id": 609, "name": "green_concrete_powder", "displayName": "Green Concrete Powder", "hardness": 0.5, @@ -20248,17 +21249,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9717, - "minStateId": 9717, - "maxStateId": 9717, + "defaultState": 10348, + "minStateId": 10348, + "maxStateId": 10348, "states": [], "drops": [ - 513 + 536 ], "boundingBox": "block" }, { - "id": 586, + "id": 610, "name": "red_concrete_powder", "displayName": "Red Concrete Powder", "hardness": 0.5, @@ -20269,17 +21270,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9718, - "minStateId": 9718, - "maxStateId": 9718, + "defaultState": 10349, + "minStateId": 10349, + "maxStateId": 10349, "states": [], "drops": [ - 514 + 537 ], "boundingBox": "block" }, { - "id": 587, + "id": 611, "name": "black_concrete_powder", "displayName": "Black Concrete Powder", "hardness": 0.5, @@ -20290,30 +21291,30 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9719, - "minStateId": 9719, - "maxStateId": 9719, + "defaultState": 10350, + "minStateId": 10350, + "maxStateId": 10350, "states": [], "drops": [ - 515 + 538 ], "boundingBox": "block" }, { - "id": 588, + "id": 612, "name": "kelp", "displayName": "Kelp", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9720, - "minStateId": 9720, - "maxStateId": 9745, + "defaultState": 10351, + "minStateId": 10351, + "maxStateId": 10376, "states": [ { "name": "age", @@ -20350,33 +21351,33 @@ } ], "drops": [ - 197 + 207 ], "boundingBox": "empty" }, { - "id": 589, + "id": 613, "name": "kelp_plant", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Kelp Plant", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9746, - "minStateId": 9746, - "maxStateId": 9746, + "defaultState": 10377, + "minStateId": 10377, + "maxStateId": 10377, "states": [], "drops": [ - 197 + 207 ], "boundingBox": "empty" }, { - "id": 590, + "id": 614, "name": "dried_kelp_block", "displayName": "Dried Kelp Block", "hardness": 0.5, @@ -20387,17 +21388,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9747, - "minStateId": 9747, - "maxStateId": 9747, + "defaultState": 10378, + "minStateId": 10378, + "maxStateId": 10378, "states": [], "drops": [ - 790 + 828 ], "boundingBox": "block" }, { - "id": 591, + "id": 615, "name": "turtle_egg", "displayName": "Turtle Egg", "hardness": 0.5, @@ -20408,9 +21409,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9748, - "minStateId": 9748, - "maxStateId": 9759, + "defaultState": 10379, + "minStateId": 10379, + "maxStateId": 10390, "states": [ { "name": "eggs", @@ -20438,1078 +21439,311 @@ "boundingBox": "block" }, { - "id": 592, + "id": 616, "name": "dead_tube_coral_block", "displayName": "Dead Tube Coral Block", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9760, - "minStateId": 9760, - "maxStateId": 9760, + "defaultState": 10391, + "minStateId": 10391, + "maxStateId": 10391, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 517 + 540 ], "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, + "name": "dead_brain_coral_block", + "displayName": "Dead Brain Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, - "filterLight": 1, - "defaultState": 9800, - "minStateId": 9800, - "maxStateId": 9801, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } + "filterLight": 15, + "defaultState": 10392, + "minStateId": 10392, + "maxStateId": 10392, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 541 ], - "drops": [], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 618, - "name": "brain_coral_fan", - "displayName": "Brain Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_bubble_coral_block", + "displayName": "Dead Bubble Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, - "filterLight": 1, - "defaultState": 9802, - "minStateId": 9802, - "maxStateId": 9803, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } + "filterLight": 15, + "defaultState": 10393, + "minStateId": 10393, + "maxStateId": 10393, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 542 ], - "drops": [], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 619, - "name": "bubble_coral_fan", - "displayName": "Bubble Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_fire_coral_block", + "displayName": "Dead Fire Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, - "filterLight": 1, - "defaultState": 9804, - "minStateId": 9804, - "maxStateId": 9805, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } + "filterLight": 15, + "defaultState": 10394, + "minStateId": 10394, + "maxStateId": 10394, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 543 ], - "drops": [], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 620, - "name": "fire_coral_fan", - "displayName": "Fire Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_horn_coral_block", + "displayName": "Dead Horn Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, - "filterLight": 1, - "defaultState": 9806, - "minStateId": 9806, - "maxStateId": 9807, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } + "filterLight": 15, + "defaultState": 10395, + "minStateId": 10395, + "maxStateId": 10395, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 544 ], - "drops": [], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 621, - "name": "horn_coral_fan", - "displayName": "Horn Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "tube_coral_block", + "displayName": "Tube Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, - "material": "default", - "transparent": true, + "material": "mineable/pickaxe", + "transparent": false, "emitLight": 0, - "filterLight": 1, - "defaultState": 9808, - "minStateId": 9808, - "maxStateId": 9809, - "states": [ - { - "name": "waterlogged", - "type": "bool", - "num_values": 2 - } + "filterLight": 15, + "defaultState": 10396, + "minStateId": 10396, + "maxStateId": 10396, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 540 ], - "drops": [], - "boundingBox": "empty" + "boundingBox": "block" }, { "id": 622, - "name": "dead_tube_coral_wall_fan", - "displayName": "Dead Tube Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "brain_coral_block", + "displayName": "Brain Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", - "transparent": true, + "transparent": false, "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 - } - ], + "filterLight": 15, + "defaultState": 10397, + "minStateId": 10397, + "maxStateId": 10397, + "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, - "drops": [], - "boundingBox": "empty" + "drops": [ + 541 + ], + "boundingBox": "block" }, { "id": 623, - "name": "dead_brain_coral_wall_fan", - "displayName": "Dead Brain Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "bubble_coral_block", + "displayName": "Bubble Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", - "transparent": true, + "transparent": false, "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 - } - ], + "filterLight": 15, + "defaultState": 10398, + "minStateId": 10398, + "maxStateId": 10398, + "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, - "drops": [], - "boundingBox": "empty" + "drops": [ + 542 + ], + "boundingBox": "block" }, { "id": 624, - "name": "dead_bubble_coral_wall_fan", - "displayName": "Dead Bubble Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "fire_coral_block", + "displayName": "Fire Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", - "transparent": true, + "transparent": false, "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 - } - ], + "filterLight": 15, + "defaultState": 10399, + "minStateId": 10399, + "maxStateId": 10399, + "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, - "drops": [], - "boundingBox": "empty" + "drops": [ + 543 + ], + "boundingBox": "block" }, { "id": 625, - "name": "dead_fire_coral_wall_fan", - "displayName": "Dead Fire Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "horn_coral_block", + "displayName": "Horn Coral Block", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", - "transparent": true, + "transparent": false, "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 - } - ], + "filterLight": 15, + "defaultState": 10400, + "minStateId": 10400, + "maxStateId": 10400, + "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, - "drops": [], - "boundingBox": "empty" + "drops": [ + 544 + ], + "boundingBox": "block" }, { "id": 626, - "name": "dead_horn_coral_wall_fan", - "displayName": "Dead Horn Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_tube_coral", + "displayName": "Dead Tube Coral", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9842, - "minStateId": 9842, - "maxStateId": 9849, + "defaultState": 10401, + "minStateId": 10401, + "maxStateId": 10402, "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "type": "bool", @@ -21517,187 +21751,164 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [], "boundingBox": "empty" }, { "id": 627, - "name": "tube_coral_wall_fan", - "displayName": "Tube Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_brain_coral", + "displayName": "Dead Brain Coral", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "default", + "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9850, - "minStateId": 9850, - "maxStateId": 9857, + "defaultState": 10403, + "minStateId": 10403, + "maxStateId": 10404, "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [], "boundingBox": "empty" }, { "id": 628, - "name": "brain_coral_wall_fan", - "displayName": "Brain Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_bubble_coral", + "displayName": "Dead Bubble Coral", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "default", + "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9858, - "minStateId": 9858, - "maxStateId": 9865, + "defaultState": 10405, + "minStateId": 10405, + "maxStateId": 10406, "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [], "boundingBox": "empty" }, { "id": 629, - "name": "bubble_coral_wall_fan", - "displayName": "Bubble Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_fire_coral", + "displayName": "Dead Fire Coral", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "default", + "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9866, - "minStateId": 9866, - "maxStateId": 9873, + "defaultState": 10407, + "minStateId": 10407, + "maxStateId": 10408, "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [], "boundingBox": "empty" }, { "id": 630, - "name": "fire_coral_wall_fan", - "displayName": "Fire Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "dead_horn_coral", + "displayName": "Dead Horn Coral", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, - "material": "default", + "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9874, - "minStateId": 9874, - "maxStateId": 9881, + "defaultState": 10409, + "minStateId": 10409, + "maxStateId": 10410, "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "type": "bool", "num_values": 2 } ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, "drops": [], "boundingBox": "empty" }, { "id": 631, - "name": "horn_coral_wall_fan", - "displayName": "Horn Coral Fan", - "hardness": 0, - "resistance": 0, + "name": "tube_coral", + "displayName": "Tube Coral", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9882, - "minStateId": 9882, - "maxStateId": 9889, + "defaultState": 10411, + "minStateId": 10411, + "maxStateId": 10412, "states": [ - { - "name": "facing", - "type": "enum", - "num_values": 4, - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "type": "bool", @@ -21709,19 +21920,809 @@ }, { "id": 632, + "name": "brain_coral", + "displayName": "Brain Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10413, + "minStateId": 10413, + "maxStateId": 10414, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 633, + "name": "bubble_coral", + "displayName": "Bubble Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10415, + "minStateId": 10415, + "maxStateId": 10416, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 634, + "name": "fire_coral", + "displayName": "Fire Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10417, + "minStateId": 10417, + "maxStateId": 10418, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 635, + "name": "horn_coral", + "displayName": "Horn Coral", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10419, + "minStateId": 10419, + "maxStateId": 10420, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 636, + "name": "dead_tube_coral_fan", + "displayName": "Dead Tube Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10421, + "minStateId": 10421, + "maxStateId": 10422, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 637, + "name": "dead_brain_coral_fan", + "displayName": "Dead Brain Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10423, + "minStateId": 10423, + "maxStateId": 10424, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 638, + "name": "dead_bubble_coral_fan", + "displayName": "Dead Bubble Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10425, + "minStateId": 10425, + "maxStateId": 10426, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 639, + "name": "dead_fire_coral_fan", + "displayName": "Dead Fire Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10427, + "minStateId": 10427, + "maxStateId": 10428, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 640, + "name": "dead_horn_coral_fan", + "displayName": "Dead Horn Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10429, + "minStateId": 10429, + "maxStateId": 10430, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 641, + "name": "tube_coral_fan", + "displayName": "Tube Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10431, + "minStateId": 10431, + "maxStateId": 10432, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 642, + "name": "brain_coral_fan", + "displayName": "Brain Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10433, + "minStateId": 10433, + "maxStateId": 10434, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 643, + "name": "bubble_coral_fan", + "displayName": "Bubble Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10435, + "minStateId": 10435, + "maxStateId": 10436, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 644, + "name": "fire_coral_fan", + "displayName": "Fire Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10437, + "minStateId": 10437, + "maxStateId": 10438, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 645, + "name": "horn_coral_fan", + "displayName": "Horn Coral Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10439, + "minStateId": 10439, + "maxStateId": 10440, + "states": [ + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 646, + "name": "dead_tube_coral_wall_fan", + "displayName": "Dead Tube Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10441, + "minStateId": 10441, + "maxStateId": 10448, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 647, + "name": "dead_brain_coral_wall_fan", + "displayName": "Dead Brain Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10449, + "minStateId": 10449, + "maxStateId": 10456, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 648, + "name": "dead_bubble_coral_wall_fan", + "displayName": "Dead Bubble Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10457, + "minStateId": 10457, + "maxStateId": 10464, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 649, + "name": "dead_fire_coral_wall_fan", + "displayName": "Dead Fire Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10465, + "minStateId": 10465, + "maxStateId": 10472, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 650, + "name": "dead_horn_coral_wall_fan", + "displayName": "Dead Horn Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10473, + "minStateId": 10473, + "maxStateId": 10480, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [], + "boundingBox": "empty" + }, + { + "id": 651, + "name": "tube_coral_wall_fan", + "displayName": "Tube Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10481, + "minStateId": 10481, + "maxStateId": 10488, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 652, + "name": "brain_coral_wall_fan", + "displayName": "Brain Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10489, + "minStateId": 10489, + "maxStateId": 10496, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 653, + "name": "bubble_coral_wall_fan", + "displayName": "Bubble Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10497, + "minStateId": 10497, + "maxStateId": 10504, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 654, + "name": "fire_coral_wall_fan", + "displayName": "Fire Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10505, + "minStateId": 10505, + "maxStateId": 10512, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 655, + "name": "horn_coral_wall_fan", + "displayName": "Horn Coral Wall Fan", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 10513, + "minStateId": 10513, + "maxStateId": 10520, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 656, "name": "sea_pickle", "displayName": "Sea Pickle", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 6, "filterLight": 1, - "defaultState": 9890, - "minStateId": 9890, - "maxStateId": 9897, + "defaultState": 10521, + "minStateId": 10521, + "maxStateId": 10528, "states": [ { "name": "pickles", @@ -21741,12 +22742,12 @@ } ], "drops": [ - 156 + 166 ], "boundingBox": "block" }, { - "id": 633, + "id": 657, "name": "blue_ice", "displayName": "Blue Ice", "hardness": 2.8, @@ -21757,28 +22758,28 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 9898, - "minStateId": 9898, - "maxStateId": 9898, + "defaultState": 10529, + "minStateId": 10529, + "maxStateId": 10529, "states": [], "drops": [], "boundingBox": "block" }, { - "id": 634, + "id": 658, "name": "conduit", "displayName": "Conduit", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, - "material": "default", + "material": "mineable/pickaxe", "transparent": true, "emitLight": 15, "filterLight": 1, - "defaultState": 9899, - "minStateId": 9899, - "maxStateId": 9900, + "defaultState": 10530, + "minStateId": 10530, + "maxStateId": 10531, "states": [ { "name": "waterlogged", @@ -21787,46 +22788,46 @@ } ], "drops": [ - 548 + 571 ], "boundingBox": "block" }, { - "id": 635, + "id": 659, "name": "bamboo_sapling", - "displayName": "Air", - "hardness": 1, - "resistance": 1, + "displayName": "Bamboo Shoot", + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9901, - "minStateId": 9901, - "maxStateId": 9901, + "defaultState": 10532, + "minStateId": 10532, + "maxStateId": 10532, "states": [], "drops": [ - 203 + 213 ], "boundingBox": "empty" }, { - "id": 636, + "id": 660, "name": "bamboo", "displayName": "Bamboo", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9902, - "minStateId": 9902, - "maxStateId": 9913, + "defaultState": 10533, + "minStateId": 10533, + "maxStateId": 10544, "states": [ { "name": "age", @@ -21858,85 +22859,85 @@ } ], "drops": [ - 203 + 213 ], "boundingBox": "block" }, { - "id": 637, + "id": 661, "name": "potted_bamboo", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Bamboo", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9914, - "minStateId": 9914, - "maxStateId": 9914, + "defaultState": 10545, + "minStateId": 10545, + "maxStateId": 10545, "states": [], "drops": [ - 946, - 203 + 989, + 213 ], "boundingBox": "block" }, { - "id": 638, + "id": 662, "name": "void_air", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Void Air", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, - "diggable": true, + "diggable": false, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9915, - "minStateId": 9915, - "maxStateId": 9915, + "defaultState": 10546, + "minStateId": 10546, + "maxStateId": 10546, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 639, + "id": 663, "name": "cave_air", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Cave Air", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, - "diggable": true, + "diggable": false, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 9916, - "minStateId": 9916, - "maxStateId": 9916, + "defaultState": 10547, + "minStateId": 10547, + "maxStateId": 10547, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 640, + "id": 664, "name": "bubble_column", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Bubble Column", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 9917, - "minStateId": 9917, - "maxStateId": 9918, + "defaultState": 10548, + "minStateId": 10548, + "maxStateId": 10549, "states": [ { "name": "drag", @@ -21948,20 +22949,20 @@ "boundingBox": "empty" }, { - "id": 641, + "id": 665, "name": "polished_granite_stairs", "displayName": "Polished Granite Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 9930, - "minStateId": 9919, - "maxStateId": 9998, + "defaultState": 10561, + "minStateId": 10550, + "maxStateId": 10629, "states": [ { "name": "facing", @@ -22002,1153 +23003,12 @@ } ], "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 + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 572 @@ -23156,29 +23016,51 @@ "boundingBox": "block" }, { - "id": 661, - "name": "smooth_sandstone_slab", - "displayName": "Smooth Sandstone Slab", - "hardness": 2, - "resistance": 6, + "id": 666, + "name": "smooth_red_sandstone_stairs", + "displayName": "Smooth Red Sandstone Stairs", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11078, - "minStateId": 11075, - "maxStateId": 11080, + "defaultState": 10641, + "minStateId": 10630, + "maxStateId": 10709, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -23188,12 +23070,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 573 @@ -23201,29 +23083,51 @@ "boundingBox": "block" }, { - "id": 662, - "name": "smooth_quartz_slab", - "displayName": "Smooth Quartz Slab", - "hardness": 2, - "resistance": 6, + "id": 667, + "name": "mossy_stone_brick_stairs", + "displayName": "Mossy Stone Brick Stairs", + "hardness": 1.5, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11084, - "minStateId": 11081, - "maxStateId": 11086, + "defaultState": 10721, + "minStateId": 10710, + "maxStateId": 10789, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -23233,12 +23137,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 574 @@ -23246,29 +23150,51 @@ "boundingBox": "block" }, { - "id": 663, - "name": "granite_slab", - "displayName": "Granite Slab", + "id": 668, + "name": "polished_diorite_stairs", + "displayName": "Polished Diorite Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11090, - "minStateId": 11087, - "maxStateId": 11092, + "defaultState": 10801, + "minStateId": 10790, + "maxStateId": 10869, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -23278,12 +23204,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 575 @@ -23291,29 +23217,51 @@ "boundingBox": "block" }, { - "id": 664, - "name": "andesite_slab", - "displayName": "Andesite Slab", - "hardness": 1.5, - "resistance": 6, + "id": 669, + "name": "mossy_cobblestone_stairs", + "displayName": "Mossy Cobblestone Stairs", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11096, - "minStateId": 11093, - "maxStateId": 11098, + "defaultState": 10881, + "minStateId": 10870, + "maxStateId": 10949, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -23323,12 +23271,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 576 @@ -23336,29 +23284,51 @@ "boundingBox": "block" }, { - "id": 665, - "name": "red_nether_brick_slab", - "displayName": "Red Nether Brick Slab", - "hardness": 2, - "resistance": 6, + "id": 670, + "name": "end_stone_brick_stairs", + "displayName": "End Stone Brick Stairs", + "hardness": 3.0, + "resistance": 9.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11102, - "minStateId": 11099, - "maxStateId": 11104, + "defaultState": 10961, + "minStateId": 10950, + "maxStateId": 11029, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -23368,12 +23338,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 577 @@ -23381,29 +23351,51 @@ "boundingBox": "block" }, { - "id": 666, - "name": "polished_andesite_slab", - "displayName": "Polished Andesite Slab", + "id": 671, + "name": "stone_stairs", + "displayName": "Stone Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11108, - "minStateId": 11105, - "maxStateId": 11110, + "defaultState": 11041, + "minStateId": 11030, + "maxStateId": 11109, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -23413,12 +23405,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 578 @@ -23426,20 +23418,489 @@ "boundingBox": "block" }, { - "id": 667, - "name": "diorite_slab", - "displayName": "Diorite Slab", - "hardness": 1.5, - "resistance": 6, + "id": 672, + "name": "smooth_sandstone_stairs", + "displayName": "Smooth Sandstone Stairs", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11114, - "minStateId": 11111, - "maxStateId": 11116, + "defaultState": 11121, + "minStateId": 11110, + "maxStateId": 11189, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 579 + ], + "boundingBox": "block" + }, + { + "id": 673, + "name": "smooth_quartz_stairs", + "displayName": "Smooth Quartz Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11201, + "minStateId": 11190, + "maxStateId": 11269, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 580 + ], + "boundingBox": "block" + }, + { + "id": 674, + "name": "granite_stairs", + "displayName": "Granite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11281, + "minStateId": 11270, + "maxStateId": 11349, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 581 + ], + "boundingBox": "block" + }, + { + "id": 675, + "name": "andesite_stairs", + "displayName": "Andesite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11361, + "minStateId": 11350, + "maxStateId": 11429, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 582 + ], + "boundingBox": "block" + }, + { + "id": 676, + "name": "red_nether_brick_stairs", + "displayName": "Red Nether Brick Stairs", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11441, + "minStateId": 11430, + "maxStateId": 11509, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 583 + ], + "boundingBox": "block" + }, + { + "id": 677, + "name": "polished_andesite_stairs", + "displayName": "Polished Andesite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11521, + "minStateId": 11510, + "maxStateId": 11589, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 584 + ], + "boundingBox": "block" + }, + { + "id": 678, + "name": "diorite_stairs", + "displayName": "Diorite Stairs", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11601, + "minStateId": 11590, + "maxStateId": 11669, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 585 + ], + "boundingBox": "block" + }, + { + "id": 679, + "name": "polished_granite_slab", + "displayName": "Polished Granite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11673, + "minStateId": 11670, + "maxStateId": 11675, "states": [ { "name": "type", @@ -23458,33 +23919,573 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 579 + 590 ], "boundingBox": "block" }, { - "id": 668, - "name": "brick_wall", - "displayName": "Brick Wall", - "hardness": 2, - "resistance": 6, + "id": 680, + "name": "smooth_red_sandstone_slab", + "displayName": "Smooth Red Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11120, - "minStateId": 11117, - "maxStateId": 11440, + "defaultState": 11679, + "minStateId": 11676, + "maxStateId": 11681, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 591 + ], + "boundingBox": "block" + }, + { + "id": 681, + "name": "mossy_stone_brick_slab", + "displayName": "Mossy Stone Brick Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11685, + "minStateId": 11682, + "maxStateId": 11687, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 592 + ], + "boundingBox": "block" + }, + { + "id": 682, + "name": "polished_diorite_slab", + "displayName": "Polished Diorite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11691, + "minStateId": 11688, + "maxStateId": 11693, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 593 + ], + "boundingBox": "block" + }, + { + "id": 683, + "name": "mossy_cobblestone_slab", + "displayName": "Mossy Cobblestone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11697, + "minStateId": 11694, + "maxStateId": 11699, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 594 + ], + "boundingBox": "block" + }, + { + "id": 684, + "name": "end_stone_brick_slab", + "displayName": "End Stone Brick Slab", + "hardness": 3.0, + "resistance": 9.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11703, + "minStateId": 11700, + "maxStateId": 11705, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 595 + ], + "boundingBox": "block" + }, + { + "id": 685, + "name": "smooth_sandstone_slab", + "displayName": "Smooth Sandstone Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11709, + "minStateId": 11706, + "maxStateId": 11711, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 596 + ], + "boundingBox": "block" + }, + { + "id": 686, + "name": "smooth_quartz_slab", + "displayName": "Smooth Quartz Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11715, + "minStateId": 11712, + "maxStateId": 11717, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 597 + ], + "boundingBox": "block" + }, + { + "id": 687, + "name": "granite_slab", + "displayName": "Granite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11721, + "minStateId": 11718, + "maxStateId": 11723, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 598 + ], + "boundingBox": "block" + }, + { + "id": 688, + "name": "andesite_slab", + "displayName": "Andesite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11727, + "minStateId": 11724, + "maxStateId": 11729, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 599 + ], + "boundingBox": "block" + }, + { + "id": 689, + "name": "red_nether_brick_slab", + "displayName": "Red Nether Brick Slab", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11733, + "minStateId": 11730, + "maxStateId": 11735, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 600 + ], + "boundingBox": "block" + }, + { + "id": 690, + "name": "polished_andesite_slab", + "displayName": "Polished Andesite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11739, + "minStateId": 11736, + "maxStateId": 11741, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 601 + ], + "boundingBox": "block" + }, + { + "id": 691, + "name": "diorite_slab", + "displayName": "Diorite Slab", + "hardness": 1.5, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11745, + "minStateId": 11742, + "maxStateId": 11747, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 602 + ], + "boundingBox": "block" + }, + { + "id": 692, + "name": "brick_wall", + "displayName": "Brick Wall", + "hardness": 2.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 11751, + "minStateId": 11748, + "maxStateId": 12071, "states": [ { "name": "east", @@ -23538,33 +24539,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 327 + 351 ], "boundingBox": "block" }, { - "id": 669, + "id": 693, "name": "prismarine_wall", "displayName": "Prismarine Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11444, - "minStateId": 11441, - "maxStateId": 11764, + "defaultState": 12075, + "minStateId": 12072, + "maxStateId": 12395, "states": [ { "name": "east", @@ -23618,20 +24619,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 328 + 352 ], "boundingBox": "block" }, { - "id": 670, + "id": 694, "name": "red_sandstone_wall", "displayName": "Red Sandstone Wall", "hardness": 0.8, @@ -23642,9 +24643,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 11768, - "minStateId": 11765, - "maxStateId": 12088, + "defaultState": 12399, + "minStateId": 12396, + "maxStateId": 12719, "states": [ { "name": "east", @@ -23698,33 +24699,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 329 + 353 ], "boundingBox": "block" }, { - "id": 671, + "id": 695, "name": "mossy_stone_brick_wall", "displayName": "Mossy Stone Brick Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 12092, - "minStateId": 12089, - "maxStateId": 12412, + "defaultState": 12723, + "minStateId": 12720, + "maxStateId": 13043, "states": [ { "name": "east", @@ -23778,33 +24779,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 330 + 354 ], "boundingBox": "block" }, { - "id": 672, + "id": 696, "name": "granite_wall", "displayName": "Granite Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 12416, - "minStateId": 12413, - "maxStateId": 12736, + "defaultState": 13047, + "minStateId": 13044, + "maxStateId": 13367, "states": [ { "name": "east", @@ -23858,33 +24859,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 331 + 355 ], "boundingBox": "block" }, { - "id": 673, + "id": 697, "name": "stone_brick_wall", "displayName": "Stone Brick Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 12740, - "minStateId": 12737, - "maxStateId": 13060, + "defaultState": 13371, + "minStateId": 13368, + "maxStateId": 13691, "states": [ { "name": "east", @@ -23938,33 +24939,113 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 332 + 356 ], "boundingBox": "block" }, { - "id": 674, + "id": 698, + "name": "mud_brick_wall", + "displayName": "Mud Brick Wall", + "hardness": 1.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 13695, + "minStateId": 13692, + "maxStateId": 14015, + "states": [ + { + "name": "east", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "enum", + "num_values": 3, + "values": [ + "none", + "low", + "tall" + ] + } + ], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 357 + ], + "boundingBox": "block" + }, + { + "id": 699, "name": "nether_brick_wall", "displayName": "Nether Brick Wall", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 13064, - "minStateId": 13061, - "maxStateId": 13384, + "defaultState": 14019, + "minStateId": 14016, + "maxStateId": 14339, "states": [ { "name": "east", @@ -24018,33 +25099,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 333 + 358 ], "boundingBox": "block" }, { - "id": 675, + "id": 700, "name": "andesite_wall", "displayName": "Andesite Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 13388, - "minStateId": 13385, - "maxStateId": 13708, + "defaultState": 14343, + "minStateId": 14340, + "maxStateId": 14663, "states": [ { "name": "east", @@ -24098,33 +25179,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 334 + 359 ], "boundingBox": "block" }, { - "id": 676, + "id": 701, "name": "red_nether_brick_wall", "displayName": "Red Nether Brick Wall", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 13712, - "minStateId": 13709, - "maxStateId": 14032, + "defaultState": 14667, + "minStateId": 14664, + "maxStateId": 14987, "states": [ { "name": "east", @@ -24178,20 +25259,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 335 + 360 ], "boundingBox": "block" }, { - "id": 677, + "id": 702, "name": "sandstone_wall", "displayName": "Sandstone Wall", "hardness": 0.8, @@ -24202,9 +25283,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 14036, - "minStateId": 14033, - "maxStateId": 14356, + "defaultState": 14991, + "minStateId": 14988, + "maxStateId": 15311, "states": [ { "name": "east", @@ -24258,33 +25339,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 336 + 361 ], "boundingBox": "block" }, { - "id": 678, + "id": 703, "name": "end_stone_brick_wall", "displayName": "End Stone Brick Wall", - "hardness": 3, - "resistance": 9, + "hardness": 3.0, + "resistance": 9.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 14360, - "minStateId": 14357, - "maxStateId": 14680, + "defaultState": 15315, + "minStateId": 15312, + "maxStateId": 15635, "states": [ { "name": "east", @@ -24338,33 +25419,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 337 + 362 ], "boundingBox": "block" }, { - "id": 679, + "id": 704, "name": "diorite_wall", "displayName": "Diorite Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 14684, - "minStateId": 14681, - "maxStateId": 15004, + "defaultState": 15639, + "minStateId": 15636, + "maxStateId": 15959, "states": [ { "name": "east", @@ -24418,33 +25499,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 338 + 363 ], "boundingBox": "block" }, { - "id": 680, + "id": 705, "name": "scaffolding", "displayName": "Scaffolding", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15036, - "minStateId": 15005, - "maxStateId": 15036, + "defaultState": 15991, + "minStateId": 15960, + "maxStateId": 15991, "states": [ { "name": "bottom", @@ -24473,12 +25554,12 @@ } ], "drops": [ - 584 + 607 ], "boundingBox": "block" }, { - "id": 681, + "id": 706, "name": "loom", "displayName": "Loom", "hardness": 2.5, @@ -24489,9 +25570,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15037, - "minStateId": 15037, - "maxStateId": 15040, + "defaultState": 15992, + "minStateId": 15992, + "maxStateId": 15995, "states": [ { "name": "facing", @@ -24506,12 +25587,12 @@ } ], "drops": [ - 1034 + 1080 ], "boundingBox": "block" }, { - "id": 682, + "id": 707, "name": "barrel", "displayName": "Barrel", "hardness": 2.5, @@ -24522,9 +25603,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15042, - "minStateId": 15041, - "maxStateId": 15052, + "defaultState": 15997, + "minStateId": 15996, + "maxStateId": 16007, "states": [ { "name": "facing", @@ -24546,12 +25627,12 @@ } ], "drops": [ - 1042 + 1089 ], "boundingBox": "block" }, { - "id": 683, + "id": 708, "name": "smoker", "displayName": "Smoker", "hardness": 3.5, @@ -24562,9 +25643,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15054, - "minStateId": 15053, - "maxStateId": 15060, + "defaultState": 16009, + "minStateId": 16008, + "maxStateId": 16015, "states": [ { "name": "facing", @@ -24584,20 +25665,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1043 + 1090 ], "boundingBox": "block" }, { - "id": 684, + "id": 709, "name": "blast_furnace", "displayName": "Blast Furnace", "hardness": 3.5, @@ -24608,9 +25689,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15062, - "minStateId": 15061, - "maxStateId": 15068, + "defaultState": 16017, + "minStateId": 16016, + "maxStateId": 16023, "states": [ { "name": "facing", @@ -24630,20 +25711,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1044 + 1091 ], "boundingBox": "block" }, { - "id": 685, + "id": 710, "name": "cartography_table", "displayName": "Cartography Table", "hardness": 2.5, @@ -24654,17 +25735,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15069, - "minStateId": 15069, - "maxStateId": 15069, + "defaultState": 16024, + "minStateId": 16024, + "maxStateId": 16024, "states": [], "drops": [ - 1045 + 1092 ], "boundingBox": "block" }, { - "id": 686, + "id": 711, "name": "fletching_table", "displayName": "Fletching Table", "hardness": 2.5, @@ -24675,30 +25756,30 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15070, - "minStateId": 15070, - "maxStateId": 15070, + "defaultState": 16025, + "minStateId": 16025, + "maxStateId": 16025, "states": [], "drops": [ - 1046 + 1093 ], "boundingBox": "block" }, { - "id": 687, + "id": 712, "name": "grindstone", "displayName": "Grindstone", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15075, - "minStateId": 15071, - "maxStateId": 15082, + "defaultState": 16030, + "minStateId": 16026, + "maxStateId": 16037, "states": [ { "name": "face", @@ -24723,20 +25804,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1047 + 1094 ], "boundingBox": "block" }, { - "id": 688, + "id": 713, "name": "lectern", "displayName": "Lectern", "hardness": 2.5, @@ -24747,9 +25828,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15086, - "minStateId": 15083, - "maxStateId": 15098, + "defaultState": 16041, + "minStateId": 16038, + "maxStateId": 16053, "states": [ { "name": "facing", @@ -24774,12 +25855,12 @@ } ], "drops": [ - 598 + 621 ], "boundingBox": "block" }, { - "id": 689, + "id": 714, "name": "smithing_table", "displayName": "Smithing Table", "hardness": 2.5, @@ -24790,17 +25871,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15099, - "minStateId": 15099, - "maxStateId": 15099, + "defaultState": 16054, + "minStateId": 16054, + "maxStateId": 16054, "states": [], "drops": [ - 1048 + 1095 ], "boundingBox": "block" }, { - "id": 690, + "id": 715, "name": "stonecutter", "displayName": "Stonecutter", "hardness": 3.5, @@ -24811,9 +25892,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15100, - "minStateId": 15100, - "maxStateId": 15103, + "defaultState": 16055, + "minStateId": 16055, + "maxStateId": 16058, "states": [ { "name": "facing", @@ -24828,33 +25909,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1049 + 1096 ], "boundingBox": "block" }, { - "id": 691, + "id": 716, "name": "bell", "displayName": "Bell", - "hardness": 5, - "resistance": 5, + "hardness": 5.0, + "resistance": 5.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15105, - "minStateId": 15104, - "maxStateId": 15135, + "defaultState": 16060, + "minStateId": 16059, + "maxStateId": 16090, "states": [ { "name": "attachment", @@ -24885,20 +25966,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1050 + 1097 ], "boundingBox": "block" }, { - "id": 692, + "id": 717, "name": "lantern", "displayName": "Lantern", "hardness": 3.5, @@ -24909,9 +25990,9 @@ "transparent": true, "emitLight": 15, "filterLight": 0, - "defaultState": 15139, - "minStateId": 15136, - "maxStateId": 15139, + "defaultState": 16094, + "minStateId": 16091, + "maxStateId": 16094, "states": [ { "name": "hanging", @@ -24925,20 +26006,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1051 + 1098 ], "boundingBox": "block" }, { - "id": 693, + "id": 718, "name": "soul_lantern", "displayName": "Soul Lantern", "hardness": 3.5, @@ -24949,9 +26030,9 @@ "transparent": true, "emitLight": 10, "filterLight": 0, - "defaultState": 15143, - "minStateId": 15140, - "maxStateId": 15143, + "defaultState": 16098, + "minStateId": 16095, + "maxStateId": 16098, "states": [ { "name": "hanging", @@ -24965,33 +26046,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1052 + 1099 ], "boundingBox": "block" }, { - "id": 694, + "id": 719, "name": "campfire", "displayName": "Campfire", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 15, "filterLight": 0, - "defaultState": 15147, - "minStateId": 15144, - "maxStateId": 15175, + "defaultState": 16102, + "minStateId": 16099, + "maxStateId": 16130, "states": [ { "name": "facing", @@ -25021,25 +26102,25 @@ } ], "drops": [ - 685 + 721 ], "boundingBox": "block" }, { - "id": 695, + "id": 720, "name": "soul_campfire", "displayName": "Soul Campfire", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 10, "filterLight": 0, - "defaultState": 15179, - "minStateId": 15176, - "maxStateId": 15207, + "defaultState": 16134, + "minStateId": 16131, + "maxStateId": 16162, "states": [ { "name": "facing", @@ -25069,25 +26150,25 @@ } ], "drops": [ - 270 + 282 ], "boundingBox": "block" }, { - "id": 696, + "id": 721, "name": "sweet_berry_bush", - "displayName": "Sweet Berries", - "hardness": 0, - "resistance": 0, + "displayName": "Sweet Berry Bush", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15208, - "minStateId": 15208, - "maxStateId": 15211, + "defaultState": 16163, + "minStateId": 16163, + "maxStateId": 16166, "states": [ { "name": "age", @@ -25105,20 +26186,20 @@ "boundingBox": "empty" }, { - "id": 697, + "id": 722, "name": "warped_stem", "displayName": "Warped Stem", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15213, - "minStateId": 15212, - "maxStateId": 15214, + "defaultState": 16168, + "minStateId": 16167, + "maxStateId": 16169, "states": [ { "name": "axis", @@ -25132,328 +26213,25 @@ } ], "drops": [ - 108 + 114 ], "boundingBox": "block" }, { - "id": 698, + "id": 723, "name": "stripped_warped_stem", "displayName": "Stripped Warped Stem", - "hardness": 2, - "resistance": 2, + "hardness": 2.0, + "resistance": 2.0, "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, + "defaultState": 16171, + "minStateId": 16170, + "maxStateId": 16172, "states": [ { "name": "axis", @@ -25472,7 +26250,310 @@ "boundingBox": "block" }, { - "id": 710, + "id": 724, + "name": "warped_hyphae", + "displayName": "Warped Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16174, + "minStateId": 16173, + "maxStateId": 16175, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 141 + ], + "boundingBox": "block" + }, + { + "id": 725, + "name": "stripped_warped_hyphae", + "displayName": "Stripped Warped Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16177, + "minStateId": 16176, + "maxStateId": 16178, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 132 + ], + "boundingBox": "block" + }, + { + "id": 726, + "name": "warped_nylium", + "displayName": "Warped Nylium", + "hardness": 0.4, + "resistance": 0.4, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16179, + "minStateId": 16179, + "maxStateId": 16179, + "states": [], + "harvestTools": { + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 280 + ], + "boundingBox": "block" + }, + { + "id": 727, + "name": "warped_fungus", + "displayName": "Warped Fungus", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "plant;mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16180, + "minStateId": 16180, + "maxStateId": 16180, + "states": [], + "drops": [ + 200 + ], + "boundingBox": "empty" + }, + { + "id": 728, + "name": "warped_wart_block", + "displayName": "Warped Wart Block", + "hardness": 1.0, + "resistance": 1.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16181, + "minStateId": 16181, + "maxStateId": 16181, + "states": [], + "drops": [ + 470 + ], + "boundingBox": "block" + }, + { + "id": 729, + "name": "warped_roots", + "displayName": "Warped Roots", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16182, + "minStateId": 16182, + "maxStateId": 16182, + "states": [], + "drops": [ + 202 + ], + "boundingBox": "empty" + }, + { + "id": 730, + "name": "nether_sprouts", + "displayName": "Nether Sprouts", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16183, + "minStateId": 16183, + "maxStateId": 16183, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 731, + "name": "crimson_stem", + "displayName": "Crimson Stem", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16185, + "minStateId": 16184, + "maxStateId": 16186, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 113 + ], + "boundingBox": "block" + }, + { + "id": 732, + "name": "stripped_crimson_stem", + "displayName": "Stripped Crimson Stem", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16188, + "minStateId": 16187, + "maxStateId": 16189, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 122 + ], + "boundingBox": "block" + }, + { + "id": 733, + "name": "crimson_hyphae", + "displayName": "Crimson Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16191, + "minStateId": 16190, + "maxStateId": 16192, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 140 + ], + "boundingBox": "block" + }, + { + "id": 734, + "name": "stripped_crimson_hyphae", + "displayName": "Stripped Crimson Hyphae", + "hardness": 2.0, + "resistance": 2.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 16194, + "minStateId": 16193, + "maxStateId": 16195, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 131 + ], + "boundingBox": "block" + }, + { + "id": 735, "name": "crimson_nylium", "displayName": "Crimson Nylium", "hardness": 0.4, @@ -25483,80 +26564,80 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15241, - "minStateId": 15241, - "maxStateId": 15241, + "defaultState": 16196, + "minStateId": 16196, + "maxStateId": 16196, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 268 + 280 ], "boundingBox": "block" }, { - "id": 711, + "id": 736, "name": "crimson_fungus", "displayName": "Crimson Fungus", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15242, - "minStateId": 15242, - "maxStateId": 15242, + "defaultState": 16197, + "minStateId": 16197, + "maxStateId": 16197, "states": [], "drops": [ - 189 + 199 ], "boundingBox": "empty" }, { - "id": 712, + "id": 737, "name": "shroomlight", "displayName": "Shroomlight", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "mineable/hoe", "transparent": false, "emitLight": 15, "filterLight": 15, - "defaultState": 15243, - "minStateId": 15243, - "maxStateId": 15243, + "defaultState": 16198, + "minStateId": 16198, + "maxStateId": 16198, "states": [], "drops": [ - 1057 + 1104 ], "boundingBox": "block" }, { - "id": 713, + "id": 738, "name": "weeping_vines", "displayName": "Weeping Vines", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15244, - "minStateId": 15244, - "maxStateId": 15269, + "defaultState": 16199, + "minStateId": 16199, + "maxStateId": 16224, "states": [ { "name": "age", @@ -25596,41 +26677,39 @@ "boundingBox": "empty" }, { - "id": 714, + "id": 739, "name": "weeping_vines_plant", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Weeping Vines Plant", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15270, - "minStateId": 15270, - "maxStateId": 15270, + "defaultState": 16225, + "minStateId": 16225, + "maxStateId": 16225, "states": [], - "drops": [ - 194 - ], + "drops": [], "boundingBox": "empty" }, { - "id": 715, + "id": 740, "name": "twisting_vines", "displayName": "Twisting Vines", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15271, - "minStateId": 15271, - "maxStateId": 15296, + "defaultState": 16226, + "minStateId": 16226, + "maxStateId": 16251, "states": [ { "name": "age", @@ -25670,104 +26749,102 @@ "boundingBox": "empty" }, { - "id": 716, + "id": 741, "name": "twisting_vines_plant", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Twisting Vines Plant", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15297, - "minStateId": 15297, - "maxStateId": 15297, + "defaultState": 16252, + "minStateId": 16252, + "maxStateId": 16252, "states": [], - "drops": [ - 195 - ], + "drops": [], "boundingBox": "empty" }, { - "id": 717, + "id": 742, "name": "crimson_roots", "displayName": "Crimson Roots", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15298, - "minStateId": 15298, - "maxStateId": 15298, + "defaultState": 16253, + "minStateId": 16253, + "maxStateId": 16253, "states": [], "drops": [ - 191 + 201 ], "boundingBox": "empty" }, { - "id": 718, + "id": 743, "name": "crimson_planks", "displayName": "Crimson Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15299, - "minStateId": 15299, - "maxStateId": 15299, + "defaultState": 16254, + "minStateId": 16254, + "maxStateId": 16254, "states": [], "drops": [ - 28 + 30 ], "boundingBox": "block" }, { - "id": 719, + "id": 744, "name": "warped_planks", "displayName": "Warped Planks", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15300, - "minStateId": 15300, - "maxStateId": 15300, + "defaultState": 16255, + "minStateId": 16255, + "maxStateId": 16255, "states": [], "drops": [ - 29 + 31 ], "boundingBox": "block" }, { - "id": 720, + "id": 745, "name": "crimson_slab", "displayName": "Crimson Slab", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15304, - "minStateId": 15301, - "maxStateId": 15306, + "defaultState": 16259, + "minStateId": 16256, + "maxStateId": 16261, "states": [ { "name": "type", @@ -25786,25 +26863,25 @@ } ], "drops": [ - 210 + 221 ], "boundingBox": "block" }, { - "id": 721, + "id": 746, "name": "warped_slab", "displayName": "Warped Slab", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15310, - "minStateId": 15307, - "maxStateId": 15312, + "defaultState": 16265, + "minStateId": 16262, + "maxStateId": 16267, "states": [ { "name": "type", @@ -25823,12 +26900,12 @@ } ], "drops": [ - 211 + 222 ], "boundingBox": "block" }, { - "id": 722, + "id": 747, "name": "crimson_pressure_plate", "displayName": "Crimson Pressure Plate", "hardness": 0.5, @@ -25839,9 +26916,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15314, - "minStateId": 15313, - "maxStateId": 15314, + "defaultState": 16269, + "minStateId": 16268, + "maxStateId": 16269, "states": [ { "name": "powered", @@ -25850,12 +26927,12 @@ } ], "drops": [ - 629 + 654 ], "boundingBox": "empty" }, { - "id": 723, + "id": 748, "name": "warped_pressure_plate", "displayName": "Warped Pressure Plate", "hardness": 0.5, @@ -25866,9 +26943,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15316, - "minStateId": 15315, - "maxStateId": 15316, + "defaultState": 16271, + "minStateId": 16270, + "maxStateId": 16271, "states": [ { "name": "powered", @@ -25876,282 +26953,234 @@ "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" + "boundingBox": "empty" }, { - "id": 729, - "name": "warped_fence_gate", - "displayName": "Warped Fence Gate", - "hardness": 2, - "resistance": 3, + "id": 749, + "name": "crimson_fence", + "displayName": "Crimson Fence", + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15548, - "minStateId": 15541, - "maxStateId": 15572, + "defaultState": 16303, + "minStateId": 16272, + "maxStateId": 16303, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 275 + ], + "boundingBox": "block" + }, + { + "id": 750, + "name": "warped_fence", + "displayName": "Warped Fence", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16335, + "minStateId": 16304, + "maxStateId": 16335, + "states": [ + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 276 + ], + "boundingBox": "block" + }, + { + "id": 751, + "name": "crimson_trapdoor", + "displayName": "Crimson Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16351, + "minStateId": 16336, + "maxStateId": 16399, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 674 + ], + "boundingBox": "block" + }, + { + "id": 752, + "name": "warped_trapdoor", + "displayName": "Warped Trapdoor", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16415, + "minStateId": 16400, + "maxStateId": 16463, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 675 + ], + "boundingBox": "block" + }, + { + "id": 753, + "name": "crimson_fence_gate", + "displayName": "Crimson Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16471, + "minStateId": 16464, + "maxStateId": 16495, "states": [ { "name": "facing", @@ -26181,25 +27210,73 @@ } ], "drops": [ - 656 + 683 ], "boundingBox": "block" }, { - "id": 730, + "id": 754, + "name": "warped_fence_gate", + "displayName": "Warped Fence Gate", + "hardness": 2.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/axe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 16503, + "minStateId": 16496, + "maxStateId": 16527, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "in_wall", + "type": "bool", + "num_values": 2 + }, + { + "name": "open", + "type": "bool", + "num_values": 2 + }, + { + "name": "powered", + "type": "bool", + "num_values": 2 + } + ], + "drops": [ + 684 + ], + "boundingBox": "block" + }, + { + "id": 755, "name": "crimson_stairs", "displayName": "Crimson Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15584, - "minStateId": 15573, - "maxStateId": 15652, + "defaultState": 16539, + "minStateId": 16528, + "maxStateId": 16607, "states": [ { "name": "facing", @@ -26240,25 +27317,25 @@ } ], "drops": [ - 321 + 345 ], "boundingBox": "block" }, { - "id": 731, + "id": 756, "name": "warped_stairs", "displayName": "Warped Stairs", - "hardness": 2, - "resistance": 3, + "hardness": 2.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 15664, - "minStateId": 15653, - "maxStateId": 15732, + "defaultState": 16619, + "minStateId": 16608, + "maxStateId": 16687, "states": [ { "name": "facing", @@ -26299,12 +27376,12 @@ } ], "drops": [ - 322 + 346 ], "boundingBox": "block" }, { - "id": 732, + "id": 757, "name": "crimson_button", "displayName": "Crimson Button", "hardness": 0.5, @@ -26315,9 +27392,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15742, - "minStateId": 15733, - "maxStateId": 15756, + "defaultState": 16697, + "minStateId": 16688, + "maxStateId": 16711, "states": [ { "name": "face", @@ -26347,12 +27424,12 @@ } ], "drops": [ - 617 + 641 ], "boundingBox": "empty" }, { - "id": 733, + "id": 758, "name": "warped_button", "displayName": "Warped Button", "hardness": 0.5, @@ -26363,9 +27440,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15766, - "minStateId": 15757, - "maxStateId": 15780, + "defaultState": 16721, + "minStateId": 16712, + "maxStateId": 16735, "states": [ { "name": "face", @@ -26395,25 +27472,25 @@ } ], "drops": [ - 618 + 642 ], "boundingBox": "empty" }, { - "id": 734, + "id": 759, "name": "crimson_door", "displayName": "Crimson Door", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15792, - "minStateId": 15781, - "maxStateId": 15844, + "defaultState": 16747, + "minStateId": 16736, + "maxStateId": 16799, "states": [ { "name": "facing", @@ -26456,25 +27533,25 @@ } ], "drops": [ - 638 + 664 ], "boundingBox": "block" }, { - "id": 735, + "id": 760, "name": "warped_door", "displayName": "Warped Door", - "hardness": 3, - "resistance": 3, + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15856, - "minStateId": 15845, - "maxStateId": 15908, + "defaultState": 16811, + "minStateId": 16800, + "maxStateId": 16863, "states": [ { "name": "facing", @@ -26517,25 +27594,25 @@ } ], "drops": [ - 639 + 665 ], "boundingBox": "block" }, { - "id": 736, + "id": 761, "name": "crimson_sign", "displayName": "Crimson Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15910, - "minStateId": 15909, - "maxStateId": 15940, + "defaultState": 16865, + "minStateId": 16864, + "maxStateId": 16895, "states": [ { "name": "rotation", @@ -26567,25 +27644,25 @@ } ], "drops": [ - 774 + 811 ], "boundingBox": "empty" }, { - "id": 737, + "id": 762, "name": "warped_sign", "displayName": "Warped Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15942, - "minStateId": 15941, - "maxStateId": 15972, + "defaultState": 16897, + "minStateId": 16896, + "maxStateId": 16927, "states": [ { "name": "rotation", @@ -26617,25 +27694,25 @@ } ], "drops": [ - 775 + 812 ], "boundingBox": "empty" }, { - "id": 738, + "id": 763, "name": "crimson_wall_sign", "displayName": "Crimson Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15974, - "minStateId": 15973, - "maxStateId": 15980, + "defaultState": 16929, + "minStateId": 16928, + "maxStateId": 16935, "states": [ { "name": "facing", @@ -26655,25 +27732,25 @@ } ], "drops": [ - 774 + 811 ], "boundingBox": "empty" }, { - "id": 739, + "id": 764, "name": "warped_wall_sign", "displayName": "Warped Sign", - "hardness": 1, - "resistance": 1, + "hardness": 1.0, + "resistance": 1.0, "stackSize": 16, "diggable": true, "material": "mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 15982, - "minStateId": 15981, - "maxStateId": 15988, + "defaultState": 16937, + "minStateId": 16936, + "maxStateId": 16943, "states": [ { "name": "facing", @@ -26693,25 +27770,25 @@ } ], "drops": [ - 775 + 812 ], "boundingBox": "empty" }, { - "id": 740, + "id": 765, "name": "structure_block", "displayName": "Structure Block", - "hardness": 0, - "resistance": 3600000, + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 15990, - "minStateId": 15989, - "maxStateId": 15992, + "defaultState": 16945, + "minStateId": 16944, + "maxStateId": 16947, "states": [ { "name": "mode", @@ -26730,20 +27807,20 @@ "boundingBox": "block" }, { - "id": 741, + "id": 766, "name": "jigsaw", "displayName": "Jigsaw Block", - "hardness": 0, - "resistance": 3600000, + "hardness": -1.0, + "resistance": 3600000.0, "stackSize": 64, "diggable": false, "material": "default", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16003, - "minStateId": 15993, - "maxStateId": 16004, + "defaultState": 16958, + "minStateId": 16948, + "maxStateId": 16959, "states": [ { "name": "orientation", @@ -26770,7 +27847,7 @@ "boundingBox": "block" }, { - "id": 742, + "id": 767, "name": "composter", "displayName": "Composter", "hardness": 0.6, @@ -26781,9 +27858,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16005, - "minStateId": 16005, - "maxStateId": 16013, + "defaultState": 16960, + "minStateId": 16960, + "maxStateId": 16968, "states": [ { "name": "level", @@ -26803,12 +27880,12 @@ } ], "drops": [ - 1041 + 1088 ], "boundingBox": "block" }, { - "id": 743, + "id": 768, "name": "target", "displayName": "Target", "hardness": 0.5, @@ -26819,9 +27896,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16014, - "minStateId": 16014, - "maxStateId": 16029, + "defaultState": 16969, + "minStateId": 16969, + "maxStateId": 16984, "states": [ { "name": "power", @@ -26848,12 +27925,12 @@ } ], "drops": [ - 599 + 622 ], "boundingBox": "block" }, { - "id": 744, + "id": 769, "name": "bee_nest", "displayName": "Bee Nest", "hardness": 0.3, @@ -26864,9 +27941,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16030, - "minStateId": 16030, - "maxStateId": 16053, + "defaultState": 16985, + "minStateId": 16985, + "maxStateId": 17008, "states": [ { "name": "facing", @@ -26897,7 +27974,7 @@ "boundingBox": "block" }, { - "id": 745, + "id": 770, "name": "beehive", "displayName": "Beehive", "hardness": 0.6, @@ -26908,9 +27985,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16054, - "minStateId": 16054, - "maxStateId": 16077, + "defaultState": 17009, + "minStateId": 17009, + "maxStateId": 17032, "states": [ { "name": "facing", @@ -26938,33 +28015,33 @@ } ], "drops": [ - 1060 + 1107 ], "boundingBox": "block" }, { - "id": 746, + "id": 771, "name": "honey_block", "displayName": "Honey Block", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 1, - "defaultState": 16078, - "minStateId": 16078, - "maxStateId": 16078, + "defaultState": 17033, + "minStateId": 17033, + "maxStateId": 17033, "states": [], "drops": [ - 593 + 616 ], "boundingBox": "block" }, { - "id": 747, + "id": 772, "name": "honeycomb_block", "displayName": "Honeycomb Block", "hardness": 0.6, @@ -26975,105 +28052,105 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16079, - "minStateId": 16079, - "maxStateId": 16079, + "defaultState": 17034, + "minStateId": 17034, + "maxStateId": 17034, "states": [], "drops": [ - 1062 + 1109 ], "boundingBox": "block" }, { - "id": 748, + "id": 773, "name": "netherite_block", "displayName": "Block of Netherite", - "hardness": 50, - "resistance": 1200, + "hardness": 50.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16080, - "minStateId": 16080, - "maxStateId": 16080, + "defaultState": 17035, + "minStateId": 17035, + "maxStateId": 17035, "states": [], "harvestTools": { - "721": true, - "726": true + "757": true, + "762": true }, "drops": [ - 69 + 72 ], "boundingBox": "block" }, { - "id": 749, + "id": 774, "name": "ancient_debris", "displayName": "Ancient Debris", - "hardness": 30, - "resistance": 1200, + "hardness": 30.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16081, - "minStateId": 16081, - "maxStateId": 16081, + "defaultState": 17036, + "minStateId": 17036, + "maxStateId": 17036, "states": [], "harvestTools": { - "721": true, - "726": true + "757": true, + "762": true }, "drops": [ - 58 + 61 ], "boundingBox": "block" }, { - "id": 750, + "id": 775, "name": "crying_obsidian", "displayName": "Crying Obsidian", - "hardness": 50, - "resistance": 1200, + "hardness": 50.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 10, "filterLight": 15, - "defaultState": 16082, - "minStateId": 16082, - "maxStateId": 16082, + "defaultState": 17037, + "minStateId": 17037, + "maxStateId": 17037, "states": [], "harvestTools": { - "721": true, - "726": true + "757": true, + "762": true }, "drops": [ - 1064 + 1111 ], "boundingBox": "block" }, { - "id": 751, + "id": 776, "name": "respawn_anchor", "displayName": "Respawn Anchor", - "hardness": 50, - "resistance": 1200, + "hardness": 50.0, + "resistance": 1200.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16083, - "minStateId": 16083, - "maxStateId": 16087, + "defaultState": 17038, + "minStateId": 17038, + "maxStateId": 17042, "states": [ { "name": "charges", @@ -27089,104 +28166,104 @@ } ], "harvestTools": { - "721": true, - "726": true + "757": true, + "762": true }, "drops": [ - 1077 + 1124 ], "boundingBox": "block" }, { - "id": 752, + "id": 777, "name": "potted_crimson_fungus", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Crimson Fungus", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 16088, - "minStateId": 16088, - "maxStateId": 16088, + "defaultState": 17043, + "minStateId": 17043, + "maxStateId": 17043, "states": [], "drops": [ - 946, - 189 + 989, + 199 ], "boundingBox": "block" }, { - "id": 753, + "id": 778, "name": "potted_warped_fungus", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Warped Fungus", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 16089, - "minStateId": 16089, - "maxStateId": 16089, + "defaultState": 17044, + "minStateId": 17044, + "maxStateId": 17044, "states": [], "drops": [ - 946, - 190 + 989, + 200 ], "boundingBox": "block" }, { - "id": 754, + "id": 779, "name": "potted_crimson_roots", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Crimson Roots", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 16090, - "minStateId": 16090, - "maxStateId": 16090, + "defaultState": 17045, + "minStateId": 17045, + "maxStateId": 17045, "states": [], "drops": [ - 946, - 191 + 989, + 201 ], "boundingBox": "block" }, { - "id": 755, + "id": 780, "name": "potted_warped_roots", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Warped Roots", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 16091, - "minStateId": 16091, - "maxStateId": 16091, + "defaultState": 17046, + "minStateId": 17046, + "maxStateId": 17046, "states": [], "drops": [ - 946, - 192 + 989, + 202 ], "boundingBox": "block" }, { - "id": 756, + "id": 781, "name": "lodestone", "displayName": "Lodestone", "hardness": 3.5, @@ -27197,67 +28274,67 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16092, - "minStateId": 16092, - "maxStateId": 16092, + "defaultState": 17047, + "minStateId": 17047, + "maxStateId": 17047, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1063 + 1110 ], "boundingBox": "block" }, { - "id": 757, + "id": 782, "name": "blackstone", "displayName": "Blackstone", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16093, - "minStateId": 16093, - "maxStateId": 16093, + "defaultState": 17048, + "minStateId": 17048, + "maxStateId": 17048, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1065 + 1112 ], "boundingBox": "block" }, { - "id": 758, + "id": 783, "name": "blackstone_stairs", "displayName": "Blackstone Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16105, - "minStateId": 16094, - "maxStateId": 16173, + "defaultState": 17060, + "minStateId": 17049, + "maxStateId": 17128, "states": [ { "name": "facing", @@ -27298,33 +28375,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1067 + 1114 ], "boundingBox": "block" }, { - "id": 759, + "id": 784, "name": "blackstone_wall", "displayName": "Blackstone Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16177, - "minStateId": 16174, - "maxStateId": 16497, + "defaultState": 17132, + "minStateId": 17129, + "maxStateId": 17452, "states": [ { "name": "east", @@ -27378,33 +28455,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 339 + 364 ], "boundingBox": "block" }, { - "id": 760, + "id": 785, "name": "blackstone_slab", "displayName": "Blackstone Slab", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16501, - "minStateId": 16498, - "maxStateId": 16503, + "defaultState": 17456, + "minStateId": 17453, + "maxStateId": 17458, "states": [ { "name": "type", @@ -27423,149 +28500,149 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1066 + 1113 ], "boundingBox": "block" }, { - "id": 761, + "id": 786, "name": "polished_blackstone", "displayName": "Polished Blackstone", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16504, - "minStateId": 16504, - "maxStateId": 16504, + "defaultState": 17459, + "minStateId": 17459, + "maxStateId": 17459, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1069 + 1116 ], "boundingBox": "block" }, { - "id": 762, + "id": 787, "name": "polished_blackstone_bricks", "displayName": "Polished Blackstone Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16505, - "minStateId": 16505, - "maxStateId": 16505, + "defaultState": 17460, + "minStateId": 17460, + "maxStateId": 17460, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1073 + 1120 ], "boundingBox": "block" }, { - "id": 763, + "id": 788, "name": "cracked_polished_blackstone_bricks", "displayName": "Cracked Polished Blackstone Bricks", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16506, - "minStateId": 16506, - "maxStateId": 16506, + "defaultState": 17461, + "minStateId": 17461, + "maxStateId": 17461, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1076 + 1123 ], "boundingBox": "block" }, { - "id": 764, + "id": 789, "name": "chiseled_polished_blackstone", "displayName": "Chiseled Polished Blackstone", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16507, - "minStateId": 16507, - "maxStateId": 16507, + "defaultState": 17462, + "minStateId": 17462, + "maxStateId": 17462, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1072 + 1119 ], "boundingBox": "block" }, { - "id": 765, + "id": 790, "name": "polished_blackstone_brick_slab", "displayName": "Polished Blackstone Brick Slab", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16511, - "minStateId": 16508, - "maxStateId": 16513, + "defaultState": 17466, + "minStateId": 17463, + "maxStateId": 17468, "states": [ { "name": "type", @@ -27584,33 +28661,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1074 + 1121 ], "boundingBox": "block" }, { - "id": 766, + "id": 791, "name": "polished_blackstone_brick_stairs", "displayName": "Polished Blackstone Brick Stairs", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16525, - "minStateId": 16514, - "maxStateId": 16593, + "defaultState": 17480, + "minStateId": 17469, + "maxStateId": 17548, "states": [ { "name": "facing", @@ -27651,33 +28728,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1075 + 1122 ], "boundingBox": "block" }, { - "id": 767, + "id": 792, "name": "polished_blackstone_brick_wall", "displayName": "Polished Blackstone Brick Wall", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16597, - "minStateId": 16594, - "maxStateId": 16917, + "defaultState": 17552, + "minStateId": 17549, + "maxStateId": 17872, "states": [ { "name": "east", @@ -27731,62 +28808,62 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 341 + 366 ], "boundingBox": "block" }, { - "id": 768, + "id": 793, "name": "gilded_blackstone", "displayName": "Gilded Blackstone", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 16918, - "minStateId": 16918, - "maxStateId": 16918, + "defaultState": 17873, + "minStateId": 17873, + "maxStateId": 17873, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1068 + 1115 ], "boundingBox": "block" }, { - "id": 769, + "id": 794, "name": "polished_blackstone_stairs", "displayName": "Polished Blackstone Stairs", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 16930, - "minStateId": 16919, - "maxStateId": 16998, + "defaultState": 17885, + "minStateId": 17874, + "maxStateId": 17953, "states": [ { "name": "facing", @@ -27827,33 +28904,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1071 + 1118 ], "boundingBox": "block" }, { - "id": 770, + "id": 795, "name": "polished_blackstone_slab", "displayName": "Polished Blackstone Slab", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17002, - "minStateId": 16999, - "maxStateId": 17004, + "defaultState": 17957, + "minStateId": 17954, + "maxStateId": 17959, "states": [ { "name": "type", @@ -27872,20 +28949,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 1070 + 1117 ], "boundingBox": "block" }, { - "id": 771, + "id": 796, "name": "polished_blackstone_pressure_plate", "displayName": "Polished Blackstone Pressure Plate", "hardness": 0.5, @@ -27896,9 +28973,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17006, - "minStateId": 17005, - "maxStateId": 17006, + "defaultState": 17961, + "minStateId": 17960, + "maxStateId": 17961, "states": [ { "name": "powered", @@ -27907,20 +28984,20 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 620 + 644 ], "boundingBox": "empty" }, { - "id": 772, + "id": 797, "name": "polished_blackstone_button", "displayName": "Polished Blackstone Button", "hardness": 0.5, @@ -27931,9 +29008,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17016, - "minStateId": 17007, - "maxStateId": 17030, + "defaultState": 17971, + "minStateId": 17962, + "maxStateId": 17985, "states": [ { "name": "face", @@ -27963,25 +29040,25 @@ } ], "drops": [ - 610 + 633 ], "boundingBox": "empty" }, { - "id": 773, + "id": 798, "name": "polished_blackstone_wall", "displayName": "Polished Blackstone Wall", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17034, - "minStateId": 17031, - "maxStateId": 17354, + "defaultState": 17989, + "minStateId": 17986, + "maxStateId": 18309, "states": [ { "name": "east", @@ -28035,78 +29112,78 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 340 + 365 ], "boundingBox": "block" }, { - "id": 774, + "id": 799, "name": "chiseled_nether_bricks", "displayName": "Chiseled Nether Bricks", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17355, - "minStateId": 17355, - "maxStateId": 17355, + "defaultState": 18310, + "minStateId": 18310, + "maxStateId": 18310, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 307 + 323 ], "boundingBox": "block" }, { - "id": 775, + "id": 800, "name": "cracked_nether_bricks", "displayName": "Cracked Nether Bricks", - "hardness": 2, - "resistance": 6, + "hardness": 2.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17356, - "minStateId": 17356, - "maxStateId": 17356, + "defaultState": 18311, + "minStateId": 18311, + "maxStateId": 18311, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 306 + 322 ], "boundingBox": "block" }, { - "id": 776, + "id": 801, "name": "quartz_bricks", "displayName": "Quartz Bricks", "hardness": 0.8, @@ -28117,25 +29194,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17357, - "minStateId": 17357, - "maxStateId": 17357, + "defaultState": 18312, + "minStateId": 18312, + "maxStateId": 18312, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 351 + 376 ], "boundingBox": "block" }, { - "id": 777, + "id": 802, "name": "candle", "displayName": "Candle", "hardness": 0.1, @@ -28146,9 +29223,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17361, - "minStateId": 17358, - "maxStateId": 17373, + "defaultState": 18316, + "minStateId": 18313, + "maxStateId": 18328, "states": [ { "name": "candles", @@ -28173,12 +29250,12 @@ } ], "drops": [ - 1078 + 1125 ], "boundingBox": "block" }, { - "id": 778, + "id": 803, "name": "white_candle", "displayName": "White Candle", "hardness": 0.1, @@ -28189,9 +29266,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17377, - "minStateId": 17374, - "maxStateId": 17389, + "defaultState": 18332, + "minStateId": 18329, + "maxStateId": 18344, "states": [ { "name": "candles", @@ -28216,12 +29293,12 @@ } ], "drops": [ - 1079 + 1126 ], "boundingBox": "block" }, { - "id": 779, + "id": 804, "name": "orange_candle", "displayName": "Orange Candle", "hardness": 0.1, @@ -28232,9 +29309,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17393, - "minStateId": 17390, - "maxStateId": 17405, + "defaultState": 18348, + "minStateId": 18345, + "maxStateId": 18360, "states": [ { "name": "candles", @@ -28259,12 +29336,12 @@ } ], "drops": [ - 1080 + 1127 ], "boundingBox": "block" }, { - "id": 780, + "id": 805, "name": "magenta_candle", "displayName": "Magenta Candle", "hardness": 0.1, @@ -28275,9 +29352,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17409, - "minStateId": 17406, - "maxStateId": 17421, + "defaultState": 18364, + "minStateId": 18361, + "maxStateId": 18376, "states": [ { "name": "candles", @@ -28302,12 +29379,12 @@ } ], "drops": [ - 1081 + 1128 ], "boundingBox": "block" }, { - "id": 781, + "id": 806, "name": "light_blue_candle", "displayName": "Light Blue Candle", "hardness": 0.1, @@ -28318,9 +29395,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17425, - "minStateId": 17422, - "maxStateId": 17437, + "defaultState": 18380, + "minStateId": 18377, + "maxStateId": 18392, "states": [ { "name": "candles", @@ -28345,12 +29422,12 @@ } ], "drops": [ - 1082 + 1129 ], "boundingBox": "block" }, { - "id": 782, + "id": 807, "name": "yellow_candle", "displayName": "Yellow Candle", "hardness": 0.1, @@ -28361,9 +29438,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17441, - "minStateId": 17438, - "maxStateId": 17453, + "defaultState": 18396, + "minStateId": 18393, + "maxStateId": 18408, "states": [ { "name": "candles", @@ -28388,12 +29465,12 @@ } ], "drops": [ - 1083 + 1130 ], "boundingBox": "block" }, { - "id": 783, + "id": 808, "name": "lime_candle", "displayName": "Lime Candle", "hardness": 0.1, @@ -28404,9 +29481,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17457, - "minStateId": 17454, - "maxStateId": 17469, + "defaultState": 18412, + "minStateId": 18409, + "maxStateId": 18424, "states": [ { "name": "candles", @@ -28431,12 +29508,12 @@ } ], "drops": [ - 1084 + 1131 ], "boundingBox": "block" }, { - "id": 784, + "id": 809, "name": "pink_candle", "displayName": "Pink Candle", "hardness": 0.1, @@ -28447,9 +29524,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17473, - "minStateId": 17470, - "maxStateId": 17485, + "defaultState": 18428, + "minStateId": 18425, + "maxStateId": 18440, "states": [ { "name": "candles", @@ -28474,12 +29551,12 @@ } ], "drops": [ - 1085 + 1132 ], "boundingBox": "block" }, { - "id": 785, + "id": 810, "name": "gray_candle", "displayName": "Gray Candle", "hardness": 0.1, @@ -28490,9 +29567,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17489, - "minStateId": 17486, - "maxStateId": 17501, + "defaultState": 18444, + "minStateId": 18441, + "maxStateId": 18456, "states": [ { "name": "candles", @@ -28517,12 +29594,12 @@ } ], "drops": [ - 1086 + 1133 ], "boundingBox": "block" }, { - "id": 786, + "id": 811, "name": "light_gray_candle", "displayName": "Light Gray Candle", "hardness": 0.1, @@ -28533,9 +29610,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17505, - "minStateId": 17502, - "maxStateId": 17517, + "defaultState": 18460, + "minStateId": 18457, + "maxStateId": 18472, "states": [ { "name": "candles", @@ -28560,12 +29637,12 @@ } ], "drops": [ - 1087 + 1134 ], "boundingBox": "block" }, { - "id": 787, + "id": 812, "name": "cyan_candle", "displayName": "Cyan Candle", "hardness": 0.1, @@ -28576,9 +29653,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17521, - "minStateId": 17518, - "maxStateId": 17533, + "defaultState": 18476, + "minStateId": 18473, + "maxStateId": 18488, "states": [ { "name": "candles", @@ -28603,12 +29680,12 @@ } ], "drops": [ - 1088 + 1135 ], "boundingBox": "block" }, { - "id": 788, + "id": 813, "name": "purple_candle", "displayName": "Purple Candle", "hardness": 0.1, @@ -28619,9 +29696,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17537, - "minStateId": 17534, - "maxStateId": 17549, + "defaultState": 18492, + "minStateId": 18489, + "maxStateId": 18504, "states": [ { "name": "candles", @@ -28646,12 +29723,12 @@ } ], "drops": [ - 1089 + 1136 ], "boundingBox": "block" }, { - "id": 789, + "id": 814, "name": "blue_candle", "displayName": "Blue Candle", "hardness": 0.1, @@ -28662,9 +29739,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17553, - "minStateId": 17550, - "maxStateId": 17565, + "defaultState": 18508, + "minStateId": 18505, + "maxStateId": 18520, "states": [ { "name": "candles", @@ -28689,12 +29766,12 @@ } ], "drops": [ - 1090 + 1137 ], "boundingBox": "block" }, { - "id": 790, + "id": 815, "name": "brown_candle", "displayName": "Brown Candle", "hardness": 0.1, @@ -28705,9 +29782,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17569, - "minStateId": 17566, - "maxStateId": 17581, + "defaultState": 18524, + "minStateId": 18521, + "maxStateId": 18536, "states": [ { "name": "candles", @@ -28732,12 +29809,12 @@ } ], "drops": [ - 1091 + 1138 ], "boundingBox": "block" }, { - "id": 791, + "id": 816, "name": "green_candle", "displayName": "Green Candle", "hardness": 0.1, @@ -28748,9 +29825,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17585, - "minStateId": 17582, - "maxStateId": 17597, + "defaultState": 18540, + "minStateId": 18537, + "maxStateId": 18552, "states": [ { "name": "candles", @@ -28775,12 +29852,12 @@ } ], "drops": [ - 1092 + 1139 ], "boundingBox": "block" }, { - "id": 792, + "id": 817, "name": "red_candle", "displayName": "Red Candle", "hardness": 0.1, @@ -28791,9 +29868,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17601, - "minStateId": 17598, - "maxStateId": 17613, + "defaultState": 18556, + "minStateId": 18553, + "maxStateId": 18568, "states": [ { "name": "candles", @@ -28818,12 +29895,12 @@ } ], "drops": [ - 1093 + 1140 ], "boundingBox": "block" }, { - "id": 793, + "id": 818, "name": "black_candle", "displayName": "Black Candle", "hardness": 0.1, @@ -28834,9 +29911,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 17617, - "minStateId": 17614, - "maxStateId": 17629, + "defaultState": 18572, + "minStateId": 18569, + "maxStateId": 18584, "states": [ { "name": "candles", @@ -28861,14 +29938,14 @@ } ], "drops": [ - 1094 + 1141 ], "boundingBox": "block" }, { - "id": 794, + "id": 819, "name": "candle_cake", - "displayName": "Air", + "displayName": "Cake with Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -28877,9 +29954,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17631, - "minStateId": 17630, - "maxStateId": 17631, + "defaultState": 18586, + "minStateId": 18585, + "maxStateId": 18586, "states": [ { "name": "lit", @@ -28888,14 +29965,14 @@ } ], "drops": [ - 1078 + 1125 ], "boundingBox": "block" }, { - "id": 795, + "id": 820, "name": "white_candle_cake", - "displayName": "Air", + "displayName": "Cake with White Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -28904,9 +29981,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17633, - "minStateId": 17632, - "maxStateId": 17633, + "defaultState": 18588, + "minStateId": 18587, + "maxStateId": 18588, "states": [ { "name": "lit", @@ -28915,14 +29992,14 @@ } ], "drops": [ - 1079 + 1126 ], "boundingBox": "block" }, { - "id": 796, + "id": 821, "name": "orange_candle_cake", - "displayName": "Air", + "displayName": "Cake with Orange Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -28931,9 +30008,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17635, - "minStateId": 17634, - "maxStateId": 17635, + "defaultState": 18590, + "minStateId": 18589, + "maxStateId": 18590, "states": [ { "name": "lit", @@ -28942,14 +30019,14 @@ } ], "drops": [ - 1080 + 1127 ], "boundingBox": "block" }, { - "id": 797, + "id": 822, "name": "magenta_candle_cake", - "displayName": "Air", + "displayName": "Cake with Magenta Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -28958,9 +30035,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17637, - "minStateId": 17636, - "maxStateId": 17637, + "defaultState": 18592, + "minStateId": 18591, + "maxStateId": 18592, "states": [ { "name": "lit", @@ -28969,14 +30046,14 @@ } ], "drops": [ - 1081 + 1128 ], "boundingBox": "block" }, { - "id": 798, + "id": 823, "name": "light_blue_candle_cake", - "displayName": "Air", + "displayName": "Cake with Light Blue Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -28985,9 +30062,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17639, - "minStateId": 17638, - "maxStateId": 17639, + "defaultState": 18594, + "minStateId": 18593, + "maxStateId": 18594, "states": [ { "name": "lit", @@ -28996,14 +30073,14 @@ } ], "drops": [ - 1082 + 1129 ], "boundingBox": "block" }, { - "id": 799, + "id": 824, "name": "yellow_candle_cake", - "displayName": "Air", + "displayName": "Cake with Yellow Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29012,9 +30089,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17641, - "minStateId": 17640, - "maxStateId": 17641, + "defaultState": 18596, + "minStateId": 18595, + "maxStateId": 18596, "states": [ { "name": "lit", @@ -29023,14 +30100,14 @@ } ], "drops": [ - 1083 + 1130 ], "boundingBox": "block" }, { - "id": 800, + "id": 825, "name": "lime_candle_cake", - "displayName": "Air", + "displayName": "Cake with Lime Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29039,9 +30116,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17643, - "minStateId": 17642, - "maxStateId": 17643, + "defaultState": 18598, + "minStateId": 18597, + "maxStateId": 18598, "states": [ { "name": "lit", @@ -29050,14 +30127,14 @@ } ], "drops": [ - 1084 + 1131 ], "boundingBox": "block" }, { - "id": 801, + "id": 826, "name": "pink_candle_cake", - "displayName": "Air", + "displayName": "Cake with Pink Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29066,9 +30143,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17645, - "minStateId": 17644, - "maxStateId": 17645, + "defaultState": 18600, + "minStateId": 18599, + "maxStateId": 18600, "states": [ { "name": "lit", @@ -29077,14 +30154,14 @@ } ], "drops": [ - 1085 + 1132 ], "boundingBox": "block" }, { - "id": 802, + "id": 827, "name": "gray_candle_cake", - "displayName": "Air", + "displayName": "Cake with Gray Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29093,9 +30170,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17647, - "minStateId": 17646, - "maxStateId": 17647, + "defaultState": 18602, + "minStateId": 18601, + "maxStateId": 18602, "states": [ { "name": "lit", @@ -29104,14 +30181,14 @@ } ], "drops": [ - 1086 + 1133 ], "boundingBox": "block" }, { - "id": 803, + "id": 828, "name": "light_gray_candle_cake", - "displayName": "Air", + "displayName": "Cake with Light Gray Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29120,9 +30197,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17649, - "minStateId": 17648, - "maxStateId": 17649, + "defaultState": 18604, + "minStateId": 18603, + "maxStateId": 18604, "states": [ { "name": "lit", @@ -29131,14 +30208,14 @@ } ], "drops": [ - 1087 + 1134 ], "boundingBox": "block" }, { - "id": 804, + "id": 829, "name": "cyan_candle_cake", - "displayName": "Air", + "displayName": "Cake with Cyan Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29147,9 +30224,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17651, - "minStateId": 17650, - "maxStateId": 17651, + "defaultState": 18606, + "minStateId": 18605, + "maxStateId": 18606, "states": [ { "name": "lit", @@ -29158,14 +30235,14 @@ } ], "drops": [ - 1088 + 1135 ], "boundingBox": "block" }, { - "id": 805, + "id": 830, "name": "purple_candle_cake", - "displayName": "Air", + "displayName": "Cake with Purple Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29174,9 +30251,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17653, - "minStateId": 17652, - "maxStateId": 17653, + "defaultState": 18608, + "minStateId": 18607, + "maxStateId": 18608, "states": [ { "name": "lit", @@ -29185,14 +30262,14 @@ } ], "drops": [ - 1089 + 1136 ], "boundingBox": "block" }, { - "id": 806, + "id": 831, "name": "blue_candle_cake", - "displayName": "Air", + "displayName": "Cake with Blue Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29201,9 +30278,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17655, - "minStateId": 17654, - "maxStateId": 17655, + "defaultState": 18610, + "minStateId": 18609, + "maxStateId": 18610, "states": [ { "name": "lit", @@ -29212,14 +30289,14 @@ } ], "drops": [ - 1090 + 1137 ], "boundingBox": "block" }, { - "id": 807, + "id": 832, "name": "brown_candle_cake", - "displayName": "Air", + "displayName": "Cake with Brown Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29228,9 +30305,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17657, - "minStateId": 17656, - "maxStateId": 17657, + "defaultState": 18612, + "minStateId": 18611, + "maxStateId": 18612, "states": [ { "name": "lit", @@ -29239,14 +30316,14 @@ } ], "drops": [ - 1091 + 1138 ], "boundingBox": "block" }, { - "id": 808, + "id": 833, "name": "green_candle_cake", - "displayName": "Air", + "displayName": "Cake with Green Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29255,9 +30332,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17659, - "minStateId": 17658, - "maxStateId": 17659, + "defaultState": 18614, + "minStateId": 18613, + "maxStateId": 18614, "states": [ { "name": "lit", @@ -29266,14 +30343,14 @@ } ], "drops": [ - 1092 + 1139 ], "boundingBox": "block" }, { - "id": 809, + "id": 834, "name": "red_candle_cake", - "displayName": "Air", + "displayName": "Cake with Red Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29282,9 +30359,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17661, - "minStateId": 17660, - "maxStateId": 17661, + "defaultState": 18616, + "minStateId": 18615, + "maxStateId": 18616, "states": [ { "name": "lit", @@ -29293,14 +30370,14 @@ } ], "drops": [ - 1093 + 1140 ], "boundingBox": "block" }, { - "id": 810, + "id": 835, "name": "black_candle_cake", - "displayName": "Air", + "displayName": "Cake with Black Candle", "hardness": 0.5, "resistance": 0.5, "stackSize": 64, @@ -29309,9 +30386,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 17663, - "minStateId": 17662, - "maxStateId": 17663, + "defaultState": 18618, + "minStateId": 18617, + "maxStateId": 18618, "states": [ { "name": "lit", @@ -29320,12 +30397,12 @@ } ], "drops": [ - 1094 + 1141 ], "boundingBox": "block" }, { - "id": 811, + "id": 836, "name": "amethyst_block", "displayName": "Block of Amethyst", "hardness": 1.5, @@ -29336,25 +30413,25 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17664, - "minStateId": 17664, - "maxStateId": 17664, + "defaultState": 18619, + "minStateId": 18619, + "maxStateId": 18619, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 63 + 66 ], "boundingBox": "block" }, { - "id": 812, + "id": 837, "name": "budding_amethyst", "displayName": "Budding Amethyst", "hardness": 1.5, @@ -29365,23 +30442,23 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17665, - "minStateId": 17665, - "maxStateId": 17665, + "defaultState": 18620, + "minStateId": 18620, + "maxStateId": 18620, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [], "boundingBox": "block" }, { - "id": 813, + "id": 838, "name": "amethyst_cluster", "displayName": "Amethyst Cluster", "hardness": 1.5, @@ -29392,9 +30469,9 @@ "transparent": true, "emitLight": 5, "filterLight": 0, - "defaultState": 17675, - "minStateId": 17666, - "maxStateId": 17677, + "defaultState": 18630, + "minStateId": 18621, + "maxStateId": 18632, "states": [ { "name": "facing", @@ -29416,12 +30493,12 @@ } ], "drops": [ - 690 + 726 ], "boundingBox": "block" }, { - "id": 814, + "id": 839, "name": "large_amethyst_bud", "displayName": "Large Amethyst Bud", "hardness": 1.5, @@ -29432,9 +30509,9 @@ "transparent": true, "emitLight": 4, "filterLight": 0, - "defaultState": 17687, - "minStateId": 17678, - "maxStateId": 17689, + "defaultState": 18642, + "minStateId": 18633, + "maxStateId": 18644, "states": [ { "name": "facing", @@ -29459,7 +30536,7 @@ "boundingBox": "block" }, { - "id": 815, + "id": 840, "name": "medium_amethyst_bud", "displayName": "Medium Amethyst Bud", "hardness": 1.5, @@ -29470,9 +30547,9 @@ "transparent": true, "emitLight": 2, "filterLight": 0, - "defaultState": 17699, - "minStateId": 17690, - "maxStateId": 17701, + "defaultState": 18654, + "minStateId": 18645, + "maxStateId": 18656, "states": [ { "name": "facing", @@ -29497,7 +30574,7 @@ "boundingBox": "block" }, { - "id": 816, + "id": 841, "name": "small_amethyst_bud", "displayName": "Small Amethyst Bud", "hardness": 1.5, @@ -29508,9 +30585,9 @@ "transparent": true, "emitLight": 1, "filterLight": 0, - "defaultState": 17711, - "minStateId": 17702, - "maxStateId": 17713, + "defaultState": 18666, + "minStateId": 18657, + "maxStateId": 18668, "states": [ { "name": "facing", @@ -29535,28 +30612,28 @@ "boundingBox": "block" }, { - "id": 817, + "id": 842, "name": "tuff", "displayName": "Tuff", "hardness": 1.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17714, - "minStateId": 17714, - "maxStateId": 17714, + "defaultState": 18669, + "minStateId": 18669, + "maxStateId": 18669, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 12 @@ -29564,7 +30641,7 @@ "boundingBox": "block" }, { - "id": 818, + "id": 843, "name": "calcite", "displayName": "Calcite", "hardness": 0.75, @@ -29575,17 +30652,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17715, - "minStateId": 17715, - "maxStateId": 17715, + "defaultState": 18670, + "minStateId": 18670, + "maxStateId": 18670, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 11 @@ -29593,7 +30670,7 @@ "boundingBox": "block" }, { - "id": 819, + "id": 844, "name": "tinted_glass", "displayName": "Tinted Glass", "hardness": 0.3, @@ -29604,19 +30681,19 @@ "transparent": true, "emitLight": 0, "filterLight": 15, - "defaultState": 17716, - "minStateId": 17716, - "maxStateId": 17716, + "defaultState": 18671, + "minStateId": 18671, + "maxStateId": 18671, "states": [], "drops": [ - 144 + 154 ], "boundingBox": "block" }, { - "id": 820, + "id": 845, "name": "powder_snow", - "displayName": "Powder Snow Bucket", + "displayName": "Powder Snow", "hardness": 0.25, "resistance": 0.25, "stackSize": 1, @@ -29625,15 +30702,15 @@ "transparent": false, "emitLight": 0, "filterLight": 1, - "defaultState": 17717, - "minStateId": 17717, - "maxStateId": 17717, + "defaultState": 18672, + "minStateId": 18672, + "maxStateId": 18672, "states": [], "drops": [], "boundingBox": "empty" }, { - "id": 821, + "id": 846, "name": "sculk_sensor", "displayName": "Sculk Sensor", "hardness": 1.5, @@ -29644,9 +30721,9 @@ "transparent": false, "emitLight": 1, "filterLight": 0, - "defaultState": 17719, - "minStateId": 17718, - "maxStateId": 17813, + "defaultState": 18674, + "minStateId": 18673, + "maxStateId": 18768, "states": [ { "name": "power", @@ -29687,221 +30764,164 @@ "num_values": 2 } ], - "drops": [ - 603 - ], + "drops": [], "boundingBox": "block" }, { - "id": 822, + "id": 847, + "name": "sculk", + "displayName": "Sculk", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18769, + "minStateId": 18769, + "maxStateId": 18769, + "states": [], + "drops": [], + "boundingBox": "block" + }, + { + "id": 848, + "name": "sculk_vein", + "displayName": "Sculk Vein", + "hardness": 0.2, + "resistance": 0.2, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": true, + "emitLight": 0, + "filterLight": 1, + "defaultState": 18897, + "minStateId": 18770, + "maxStateId": 18897, + "states": [ + { + "name": "down", + "type": "bool", + "num_values": 2 + }, + { + "name": "east", + "type": "bool", + "num_values": 2 + }, + { + "name": "north", + "type": "bool", + "num_values": 2 + }, + { + "name": "south", + "type": "bool", + "num_values": 2 + }, + { + "name": "up", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + }, + { + "name": "west", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 849, + "name": "sculk_catalyst", + "displayName": "Sculk Catalyst", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 6, + "filterLight": 15, + "defaultState": 18899, + "minStateId": 18898, + "maxStateId": 18899, + "states": [ + { + "name": "bloom", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 850, + "name": "sculk_shrieker", + "displayName": "Sculk Shrieker", + "hardness": 3.0, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/hoe", + "transparent": false, + "emitLight": 0, + "filterLight": 1, + "defaultState": 18907, + "minStateId": 18900, + "maxStateId": 18907, + "states": [ + { + "name": "can_summon", + "type": "bool", + "num_values": 2 + }, + { + "name": "shrieking", + "type": "bool", + "num_values": 2 + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "drops": [], + "boundingBox": "block" + }, + { + "id": 851, "name": "oxidized_copper", "displayName": "Oxidized Copper", - "hardness": 3, - "resistance": 6, + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17814, - "minStateId": 17814, - "maxStateId": 17814, + "defaultState": 18908, + "minStateId": 18908, + "maxStateId": 18908, "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 + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 75 @@ -29909,26 +30929,26 @@ "boundingBox": "block" }, { - "id": 830, - "name": "exposed_cut_copper", - "displayName": "Exposed Cut Copper", - "hardness": 3, - "resistance": 6, + "id": 852, + "name": "weathered_copper", + "displayName": "Weathered Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17822, - "minStateId": 17822, - "maxStateId": 17822, + "defaultState": 18909, + "minStateId": 18909, + "maxStateId": 18909, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 74 @@ -29936,26 +30956,26 @@ "boundingBox": "block" }, { - "id": 831, - "name": "cut_copper", - "displayName": "Cut Copper", - "hardness": 3, - "resistance": 6, + "id": 853, + "name": "exposed_copper", + "displayName": "Exposed Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 17823, - "minStateId": 17823, - "maxStateId": 17823, + "defaultState": 18910, + "minStateId": 18910, + "maxStateId": 18910, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 73 @@ -29963,129 +30983,107 @@ "boundingBox": "block" }, { - "id": 832, - "name": "oxidized_cut_copper_stairs", - "displayName": "Oxidized Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 854, + "name": "copper_block", + "displayName": "Block of Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 18911, + "minStateId": 18911, + "maxStateId": 18911, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 80 + 69 ], "boundingBox": "block" }, { - "id": 833, - "name": "weathered_cut_copper_stairs", - "displayName": "Weathered Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 855, + "name": "copper_ore", + "displayName": "Copper Ore", + "hardness": 3.0, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 18912, + "minStateId": 18912, + "maxStateId": 18912, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 729 + ], + "boundingBox": "block" + }, + { + "id": 856, + "name": "deepslate_copper_ore", + "displayName": "Deepslate Copper Ore", + "hardness": 4.5, + "resistance": 3.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18913, + "minStateId": 18913, + "maxStateId": 18913, + "states": [], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 729 + ], + "boundingBox": "block" + }, + { + "id": 857, + "name": "oxidized_cut_copper", + "displayName": "Oxidized Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 18914, + "minStateId": 18914, + "maxStateId": 18914, + "states": [], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 79 @@ -30093,64 +31091,26 @@ "boundingBox": "block" }, { - "id": 834, - "name": "exposed_cut_copper_stairs", - "displayName": "Exposed Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 858, + "name": "weathered_cut_copper", + "displayName": "Weathered Cut Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 18915, + "minStateId": 18915, + "maxStateId": 18915, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 78 @@ -30158,64 +31118,26 @@ "boundingBox": "block" }, { - "id": 835, - "name": "cut_copper_stairs", - "displayName": "Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 859, + "name": "exposed_cut_copper", + "displayName": "Exposed Cut Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 18916, + "minStateId": 18916, + "maxStateId": 18916, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 77 @@ -30223,72 +31145,78 @@ "boundingBox": "block" }, { - "id": 836, - "name": "oxidized_cut_copper_slab", - "displayName": "Oxidized Cut Copper Slab", - "hardness": 3, - "resistance": 6, + "id": 860, + "name": "cut_copper", + "displayName": "Cut Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 18917, + "minStateId": 18917, + "maxStateId": 18917, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 84 + 76 ], "boundingBox": "block" }, { - "id": 837, - "name": "weathered_cut_copper_slab", - "displayName": "Weathered Cut Copper Slab", - "hardness": 3, - "resistance": 6, + "id": 861, + "name": "oxidized_cut_copper_stairs", + "displayName": "Oxidized Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18153, - "minStateId": 18150, - "maxStateId": 18155, + "defaultState": 18929, + "minStateId": 18918, + "maxStateId": 18997, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -30298,10 +31226,10 @@ } ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 83 @@ -30309,29 +31237,51 @@ "boundingBox": "block" }, { - "id": 838, - "name": "exposed_cut_copper_slab", - "displayName": "Exposed Cut Copper Slab", - "hardness": 3, - "resistance": 6, + "id": 862, + "name": "weathered_cut_copper_stairs", + "displayName": "Weathered Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18159, - "minStateId": 18156, - "maxStateId": 18161, + "defaultState": 19009, + "minStateId": 18998, + "maxStateId": 19077, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -30341,10 +31291,10 @@ } ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 82 @@ -30352,29 +31302,51 @@ "boundingBox": "block" }, { - "id": 839, - "name": "cut_copper_slab", - "displayName": "Cut Copper Slab", - "hardness": 3, - "resistance": 6, + "id": 863, + "name": "exposed_cut_copper_stairs", + "displayName": "Exposed Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18165, - "minStateId": 18162, - "maxStateId": 18167, + "defaultState": 19089, + "minStateId": 19078, + "maxStateId": 19157, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -30384,10 +31356,10 @@ } ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 81 @@ -30395,53 +31367,107 @@ "boundingBox": "block" }, { - "id": 840, - "name": "waxed_copper_block", - "displayName": "Waxed Block of Copper", - "hardness": 3, - "resistance": 6, + "id": 864, + "name": "cut_copper_stairs", + "displayName": "Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 18168, - "minStateId": 18168, - "maxStateId": 18168, - "states": [], + "filterLight": 0, + "defaultState": 19169, + "minStateId": 19158, + "maxStateId": 19237, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 85 + 80 ], "boundingBox": "block" }, { - "id": 841, - "name": "waxed_weathered_copper", - "displayName": "Waxed Weathered Copper", - "hardness": 3, - "resistance": 6, + "id": 865, + "name": "oxidized_cut_copper_slab", + "displayName": "Oxidized Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 18169, - "minStateId": 18169, - "maxStateId": 18169, - "states": [], + "filterLight": 0, + "defaultState": 19241, + "minStateId": 19238, + "maxStateId": 19243, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 87 @@ -30449,26 +31475,42 @@ "boundingBox": "block" }, { - "id": 842, - "name": "waxed_exposed_copper", - "displayName": "Waxed Exposed Copper", - "hardness": 3, - "resistance": 6, + "id": 866, + "name": "weathered_cut_copper_slab", + "displayName": "Weathered Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 15, - "defaultState": 18170, - "minStateId": 18170, - "maxStateId": 18170, - "states": [], + "filterLight": 0, + "defaultState": 19247, + "minStateId": 19244, + "maxStateId": 19249, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 86 @@ -30476,26 +31518,112 @@ "boundingBox": "block" }, { - "id": 843, - "name": "waxed_oxidized_copper", - "displayName": "Waxed Oxidized Copper", - "hardness": 3, - "resistance": 6, + "id": 867, + "name": "exposed_cut_copper_slab", + "displayName": "Exposed Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19253, + "minStateId": 19250, + "maxStateId": 19255, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 85 + ], + "boundingBox": "block" + }, + { + "id": 868, + "name": "cut_copper_slab", + "displayName": "Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19259, + "minStateId": 19256, + "maxStateId": 19261, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 84 + ], + "boundingBox": "block" + }, + { + "id": 869, + "name": "waxed_copper_block", + "displayName": "Waxed Block of Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18171, - "minStateId": 18171, - "maxStateId": 18171, + "defaultState": 19262, + "minStateId": 19262, + "maxStateId": 19262, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 88 @@ -30503,80 +31631,26 @@ "boundingBox": "block" }, { - "id": 844, - "name": "waxed_oxidized_cut_copper", - "displayName": "Waxed Oxidized Cut Copper", - "hardness": 3, - "resistance": 6, + "id": 870, + "name": "waxed_weathered_copper", + "displayName": "Waxed Weathered Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18172, - "minStateId": 18172, - "maxStateId": 18172, + "defaultState": 19263, + "minStateId": 19263, + "maxStateId": 19263, "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 + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 90 @@ -30584,26 +31658,26 @@ "boundingBox": "block" }, { - "id": 847, - "name": "waxed_cut_copper", - "displayName": "Waxed Cut Copper", - "hardness": 3, - "resistance": 6, + "id": 871, + "name": "waxed_exposed_copper", + "displayName": "Waxed Exposed Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18175, - "minStateId": 18175, - "maxStateId": 18175, + "defaultState": 19264, + "minStateId": 19264, + "maxStateId": 19264, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 89 @@ -30611,129 +31685,53 @@ "boundingBox": "block" }, { - "id": 848, - "name": "waxed_oxidized_cut_copper_stairs", - "displayName": "Waxed Oxidized Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 872, + "name": "waxed_oxidized_copper", + "displayName": "Waxed Oxidized Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 19265, + "minStateId": 19265, + "maxStateId": 19265, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 96 + 91 ], "boundingBox": "block" }, { - "id": 849, - "name": "waxed_weathered_cut_copper_stairs", - "displayName": "Waxed Weathered Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 873, + "name": "waxed_oxidized_cut_copper", + "displayName": "Waxed Oxidized Cut Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 19266, + "minStateId": 19266, + "maxStateId": 19266, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 95 @@ -30741,64 +31739,26 @@ "boundingBox": "block" }, { - "id": 850, - "name": "waxed_exposed_cut_copper_stairs", - "displayName": "Waxed Exposed Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 874, + "name": "waxed_weathered_cut_copper", + "displayName": "Waxed Weathered Cut Copper", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, - "filterLight": 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 - } - ], + "filterLight": 15, + "defaultState": 19267, + "minStateId": 19267, + "maxStateId": 19267, + "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 94 @@ -30806,20 +31766,74 @@ "boundingBox": "block" }, { - "id": 851, - "name": "waxed_cut_copper_stairs", - "displayName": "Waxed Cut Copper Stairs", - "hardness": 3, - "resistance": 6, + "id": 875, + "name": "waxed_exposed_cut_copper", + "displayName": "Waxed Exposed Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19268, + "minStateId": 19268, + "maxStateId": 19268, + "states": [], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 93 + ], + "boundingBox": "block" + }, + { + "id": 876, + "name": "waxed_cut_copper", + "displayName": "Waxed Cut Copper", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19269, + "minStateId": 19269, + "maxStateId": 19269, + "states": [], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 92 + ], + "boundingBox": "block" + }, + { + "id": 877, + "name": "waxed_oxidized_cut_copper_stairs", + "displayName": "Waxed Oxidized Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18427, - "minStateId": 18416, - "maxStateId": 18495, + "defaultState": 19281, + "minStateId": 19270, + "maxStateId": 19349, "states": [ { "name": "facing", @@ -30860,96 +31874,10 @@ } ], "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 + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 99 @@ -30957,29 +31885,51 @@ "boundingBox": "block" }, { - "id": 854, - "name": "waxed_exposed_cut_copper_slab", - "displayName": "Waxed Exposed Cut Copper Slab", - "hardness": 3, - "resistance": 6, + "id": 878, + "name": "waxed_weathered_cut_copper_stairs", + "displayName": "Waxed Weathered Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18511, - "minStateId": 18508, - "maxStateId": 18513, + "defaultState": 19361, + "minStateId": 19350, + "maxStateId": 19429, "states": [ { - "name": "type", + "name": "facing", "type": "enum", - "num_values": 3, + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -30989,10 +31939,10 @@ } ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ 98 @@ -31000,20 +31950,150 @@ "boundingBox": "block" }, { - "id": 855, - "name": "waxed_cut_copper_slab", - "displayName": "Waxed Cut Copper Slab", - "hardness": 3, - "resistance": 6, + "id": 879, + "name": "waxed_exposed_cut_copper_stairs", + "displayName": "Waxed Exposed Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18517, - "minStateId": 18514, - "maxStateId": 18519, + "defaultState": 19441, + "minStateId": 19430, + "maxStateId": 19509, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 97 + ], + "boundingBox": "block" + }, + { + "id": 880, + "name": "waxed_cut_copper_stairs", + "displayName": "Waxed Cut Copper Stairs", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19521, + "minStateId": 19510, + "maxStateId": 19589, + "states": [ + { + "name": "facing", + "type": "enum", + "num_values": 4, + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "type": "enum", + "num_values": 2, + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "type": "enum", + "num_values": 5, + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 96 + ], + "boundingBox": "block" + }, + { + "id": 881, + "name": "waxed_oxidized_cut_copper_slab", + "displayName": "Waxed Oxidized Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19593, + "minStateId": 19590, + "maxStateId": 19595, "states": [ { "name": "type", @@ -31032,31 +32112,160 @@ } ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 97 + 103 ], "boundingBox": "block" }, { - "id": 856, + "id": 882, + "name": "waxed_weathered_cut_copper_slab", + "displayName": "Waxed Weathered Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19599, + "minStateId": 19596, + "maxStateId": 19601, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 102 + ], + "boundingBox": "block" + }, + { + "id": 883, + "name": "waxed_exposed_cut_copper_slab", + "displayName": "Waxed Exposed Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19605, + "minStateId": 19602, + "maxStateId": 19607, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 101 + ], + "boundingBox": "block" + }, + { + "id": 884, + "name": "waxed_cut_copper_slab", + "displayName": "Waxed Cut Copper Slab", + "hardness": 3.0, + "resistance": 6.0, + "stackSize": 64, + "diggable": true, + "material": "mineable/pickaxe", + "transparent": false, + "emitLight": 0, + "filterLight": 0, + "defaultState": 19611, + "minStateId": 19608, + "maxStateId": 19613, + "states": [ + { + "name": "type", + "type": "enum", + "num_values": 3, + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "type": "bool", + "num_values": 2 + } + ], + "harvestTools": { + "742": true, + "752": true, + "757": true, + "762": true + }, + "drops": [ + 100 + ], + "boundingBox": "block" + }, + { + "id": 885, "name": "lightning_rod", "displayName": "Lightning Rod", - "hardness": 3, - "resistance": 6, + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18539, - "minStateId": 18520, - "maxStateId": 18543, + "defaultState": 19633, + "minStateId": 19614, + "maxStateId": 19637, "states": [ { "name": "facing", @@ -31083,31 +32292,31 @@ } ], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 601 + 624 ], "boundingBox": "block" }, { - "id": 857, + "id": 886, "name": "pointed_dripstone", "displayName": "Pointed Dripstone", "hardness": 1.5, - "resistance": 3, + "resistance": 3.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18549, - "minStateId": 18544, - "maxStateId": 18563, + "defaultState": 19643, + "minStateId": 19638, + "maxStateId": 19657, "states": [ { "name": "thickness", @@ -31137,33 +32346,33 @@ } ], "drops": [ - 1099 + 1146 ], "boundingBox": "block" }, { - "id": 858, + "id": 887, "name": "dripstone_block", "displayName": "Dripstone Block", "hardness": 1.5, - "resistance": 1, + "resistance": 1.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18564, - "minStateId": 18564, - "maxStateId": 18564, + "defaultState": 19658, + "minStateId": 19658, + "maxStateId": 19658, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 13 @@ -31171,20 +32380,20 @@ "boundingBox": "block" }, { - "id": 859, + "id": 888, "name": "cave_vines", - "displayName": "Glow Berries", - "hardness": 0, - "resistance": 0, + "displayName": "Cave Vines", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18566, - "minStateId": 18565, - "maxStateId": 18616, + "defaultState": 19660, + "minStateId": 19659, + "maxStateId": 19710, "states": [ { "name": "age", @@ -31229,20 +32438,20 @@ "boundingBox": "empty" }, { - "id": 860, + "id": 889, "name": "cave_vines_plant", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Cave Vines Plant", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18618, - "minStateId": 18617, - "maxStateId": 18618, + "defaultState": 19712, + "minStateId": 19711, + "maxStateId": 19712, "states": [ { "name": "berries", @@ -31254,70 +32463,70 @@ "boundingBox": "empty" }, { - "id": 861, + "id": 890, "name": "spore_blossom", "displayName": "Spore Blossom", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18619, - "minStateId": 18619, - "maxStateId": 18619, + "defaultState": 19713, + "minStateId": 19713, + "maxStateId": 19713, "states": [], "drops": [ - 186 + 196 ], "boundingBox": "empty" }, { - "id": 862, + "id": 891, "name": "azalea", "displayName": "Azalea", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18620, - "minStateId": 18620, - "maxStateId": 18620, + "defaultState": 19714, + "minStateId": 19714, + "maxStateId": 19714, "states": [], "drops": [ - 152 + 162 ], "boundingBox": "block" }, { - "id": 863, + "id": 892, "name": "flowering_azalea", "displayName": "Flowering Azalea", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18621, - "minStateId": 18621, - "maxStateId": 18621, + "defaultState": 19715, + "minStateId": 19715, + "maxStateId": 19715, "states": [], "drops": [ - 153 + 163 ], "boundingBox": "block" }, { - "id": 864, + "id": 893, "name": "moss_carpet", "displayName": "Moss Carpet", "hardness": 0.1, @@ -31328,17 +32537,17 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18622, - "minStateId": 18622, - "maxStateId": 18622, + "defaultState": 19716, + "minStateId": 19716, + "maxStateId": 19716, "states": [], "drops": [ - 198 + 208 ], "boundingBox": "block" }, { - "id": 865, + "id": 894, "name": "moss_block", "displayName": "Moss Block", "hardness": 0.1, @@ -31349,17 +32558,17 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18623, - "minStateId": 18623, - "maxStateId": 18623, + "defaultState": 19717, + "minStateId": 19717, + "maxStateId": 19717, "states": [], "drops": [ - 199 + 209 ], "boundingBox": "block" }, { - "id": 866, + "id": 895, "name": "big_dripleaf", "displayName": "Big Dripleaf", "hardness": 0.1, @@ -31370,9 +32579,9 @@ "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18625, - "minStateId": 18624, - "maxStateId": 18655, + "defaultState": 19719, + "minStateId": 19718, + "maxStateId": 19749, "states": [ { "name": "facing", @@ -31403,14 +32612,14 @@ } ], "drops": [ - 201 + 211 ], "boundingBox": "block" }, { - "id": 867, + "id": 896, "name": "big_dripleaf_stem", - "displayName": "Air", + "displayName": "Big Dripleaf Stem", "hardness": 0.1, "resistance": 0.1, "stackSize": 64, @@ -31419,9 +32628,9 @@ "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18657, - "minStateId": 18656, - "maxStateId": 18663, + "defaultState": 19751, + "minStateId": 19750, + "maxStateId": 19757, "states": [ { "name": "facing", @@ -31441,25 +32650,25 @@ } ], "drops": [ - 201 + 211 ], "boundingBox": "empty" }, { - "id": 868, + "id": 897, "name": "small_dripleaf", "displayName": "Small Dripleaf", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18667, - "minStateId": 18664, - "maxStateId": 18679, + "defaultState": 19761, + "minStateId": 19758, + "maxStateId": 19773, "states": [ { "name": "facing", @@ -31491,20 +32700,20 @@ "boundingBox": "empty" }, { - "id": 869, + "id": 898, "name": "hanging_roots", "displayName": "Hanging Roots", - "hardness": 0, - "resistance": 0, + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "plant;mineable/axe", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 18681, - "minStateId": 18680, - "maxStateId": 18681, + "defaultState": 19775, + "minStateId": 19774, + "maxStateId": 19775, "states": [ { "name": "waterlogged", @@ -31516,7 +32725,7 @@ "boundingBox": "empty" }, { - "id": 870, + "id": 899, "name": "rooted_dirt", "displayName": "Rooted Dirt", "hardness": 0.5, @@ -31527,9 +32736,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18682, - "minStateId": 18682, - "maxStateId": 18682, + "defaultState": 19776, + "minStateId": 19776, + "maxStateId": 19776, "states": [], "drops": [ 18 @@ -31537,20 +32746,41 @@ "boundingBox": "block" }, { - "id": 871, + "id": 900, + "name": "mud", + "displayName": "Mud", + "hardness": 0.5, + "resistance": 0.5, + "stackSize": 64, + "diggable": true, + "material": "mineable/shovel", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 19777, + "minStateId": 19777, + "maxStateId": 19777, + "states": [], + "drops": [ + 19 + ], + "boundingBox": "block" + }, + { + "id": 901, "name": "deepslate", "displayName": "Deepslate", - "hardness": 3, - "resistance": 6, + "hardness": 3.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18684, - "minStateId": 18683, - "maxStateId": 18685, + "defaultState": 19779, + "minStateId": 19778, + "maxStateId": 19780, "states": [ { "name": "axis", @@ -31564,12 +32794,12 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 9 @@ -31577,28 +32807,28 @@ "boundingBox": "block" }, { - "id": 872, + "id": 902, "name": "cobbled_deepslate", "displayName": "Cobbled Deepslate", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 18686, - "minStateId": 18686, - "maxStateId": 18686, + "defaultState": 19781, + "minStateId": 19781, + "maxStateId": 19781, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 9 @@ -31606,20 +32836,20 @@ "boundingBox": "block" }, { - "id": 873, + "id": 903, "name": "cobbled_deepslate_stairs", "displayName": "Cobbled Deepslate Stairs", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18698, - "minStateId": 18687, - "maxStateId": 18766, + "defaultState": 19793, + "minStateId": 19782, + "maxStateId": 19861, "states": [ { "name": "facing", @@ -31660,33 +32890,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 563 + 586 ], "boundingBox": "block" }, { - "id": 874, + "id": 904, "name": "cobbled_deepslate_slab", "displayName": "Cobbled Deepslate Slab", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18770, - "minStateId": 18767, - "maxStateId": 18772, + "defaultState": 19865, + "minStateId": 19862, + "maxStateId": 19867, "states": [ { "name": "type", @@ -31705,33 +32935,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 580 + 603 ], "boundingBox": "block" }, { - "id": 875, + "id": 905, "name": "cobbled_deepslate_wall", "displayName": "Cobbled Deepslate Wall", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 18776, - "minStateId": 18773, - "maxStateId": 19096, + "defaultState": 19871, + "minStateId": 19868, + "maxStateId": 20191, "states": [ { "name": "east", @@ -31785,41 +33015,41 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 342 + 367 ], "boundingBox": "block" }, { - "id": 876, + "id": 906, "name": "polished_deepslate", "displayName": "Polished Deepslate", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 19097, - "minStateId": 19097, - "maxStateId": 19097, + "defaultState": 20192, + "minStateId": 20192, + "maxStateId": 20192, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ 10 @@ -31827,20 +33057,20 @@ "boundingBox": "block" }, { - "id": 877, + "id": 907, "name": "polished_deepslate_stairs", "displayName": "Polished Deepslate Stairs", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19109, - "minStateId": 19098, - "maxStateId": 19177, + "defaultState": 20204, + "minStateId": 20193, + "maxStateId": 20272, "states": [ { "name": "facing", @@ -31881,33 +33111,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 564 + 587 ], "boundingBox": "block" }, { - "id": 878, + "id": 908, "name": "polished_deepslate_slab", "displayName": "Polished Deepslate Slab", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19181, - "minStateId": 19178, - "maxStateId": 19183, + "defaultState": 20276, + "minStateId": 20273, + "maxStateId": 20278, "states": [ { "name": "type", @@ -31926,33 +33156,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 581 + 604 ], "boundingBox": "block" }, { - "id": 879, + "id": 909, "name": "polished_deepslate_wall", "displayName": "Polished Deepslate Wall", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19187, - "minStateId": 19184, - "maxStateId": 19507, + "defaultState": 20282, + "minStateId": 20279, + "maxStateId": 20602, "states": [ { "name": "east", @@ -32006,62 +33236,62 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 343 + 368 ], "boundingBox": "block" }, { - "id": 880, + "id": 910, "name": "deepslate_tiles", "displayName": "Deepslate Tiles", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 19508, - "minStateId": 19508, - "maxStateId": 19508, + "defaultState": 20603, + "minStateId": 20603, + "maxStateId": 20603, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 289 + 303 ], "boundingBox": "block" }, { - "id": 881, + "id": 911, "name": "deepslate_tile_stairs", "displayName": "Deepslate Tile Stairs", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19520, - "minStateId": 19509, - "maxStateId": 19588, + "defaultState": 20615, + "minStateId": 20604, + "maxStateId": 20683, "states": [ { "name": "facing", @@ -32102,33 +33332,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 566 + 589 ], "boundingBox": "block" }, { - "id": 882, + "id": 912, "name": "deepslate_tile_slab", "displayName": "Deepslate Tile Slab", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19592, - "minStateId": 19589, - "maxStateId": 19594, + "defaultState": 20687, + "minStateId": 20684, + "maxStateId": 20689, "states": [ { "name": "type", @@ -32147,33 +33377,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 583 + 606 ], "boundingBox": "block" }, { - "id": 883, + "id": 913, "name": "deepslate_tile_wall", "displayName": "Deepslate Tile Wall", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19598, - "minStateId": 19595, - "maxStateId": 19918, + "defaultState": 20693, + "minStateId": 20690, + "maxStateId": 21013, "states": [ { "name": "east", @@ -32227,62 +33457,62 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 345 + 370 ], "boundingBox": "block" }, { - "id": 884, + "id": 914, "name": "deepslate_bricks", "displayName": "Deepslate Bricks", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 19919, - "minStateId": 19919, - "maxStateId": 19919, + "defaultState": 21014, + "minStateId": 21014, + "maxStateId": 21014, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 287 + 301 ], "boundingBox": "block" }, { - "id": 885, + "id": 915, "name": "deepslate_brick_stairs", "displayName": "Deepslate Brick Stairs", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 19931, - "minStateId": 19920, - "maxStateId": 19999, + "defaultState": 21026, + "minStateId": 21015, + "maxStateId": 21094, "states": [ { "name": "facing", @@ -32323,33 +33553,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 565 + 588 ], "boundingBox": "block" }, { - "id": 886, + "id": 916, "name": "deepslate_brick_slab", "displayName": "Deepslate Brick Slab", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 20003, - "minStateId": 20000, - "maxStateId": 20005, + "defaultState": 21098, + "minStateId": 21095, + "maxStateId": 21100, "states": [ { "name": "type", @@ -32368,33 +33598,33 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 582 + 605 ], "boundingBox": "block" }, { - "id": 887, + "id": 917, "name": "deepslate_brick_wall", "displayName": "Deepslate Brick Wall", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 0, - "defaultState": 20009, - "minStateId": 20006, - "maxStateId": 20329, + "defaultState": 21104, + "minStateId": 21101, + "maxStateId": 21424, "states": [ { "name": "east", @@ -32448,107 +33678,107 @@ } ], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 344 + 369 ], "boundingBox": "block" }, { - "id": 888, + "id": 918, "name": "chiseled_deepslate", "displayName": "Chiseled Deepslate", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20330, - "minStateId": 20330, - "maxStateId": 20330, + "defaultState": 21425, + "minStateId": 21425, + "maxStateId": 21425, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 291 + 305 ], "boundingBox": "block" }, { - "id": 889, + "id": 919, "name": "cracked_deepslate_bricks", "displayName": "Cracked Deepslate Bricks", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20331, - "minStateId": 20331, - "maxStateId": 20331, + "defaultState": 21426, + "minStateId": 21426, + "maxStateId": 21426, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 288 + 302 ], "boundingBox": "block" }, { - "id": 890, + "id": 920, "name": "cracked_deepslate_tiles", "displayName": "Cracked Deepslate Tiles", "hardness": 3.5, - "resistance": 6, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20332, - "minStateId": 20332, - "maxStateId": 20332, + "defaultState": 21427, + "minStateId": 21427, + "maxStateId": 21427, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 290 + 304 ], "boundingBox": "block" }, { - "id": 891, + "id": 921, "name": "infested_deepslate", "displayName": "Infested Deepslate", "hardness": 1.5, @@ -32559,9 +33789,9 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20334, - "minStateId": 20333, - "maxStateId": 20335, + "defaultState": 21429, + "minStateId": 21428, + "maxStateId": 21430, "states": [ { "name": "axis", @@ -32578,7 +33808,7 @@ "boundingBox": "block" }, { - "id": 892, + "id": 922, "name": "smooth_basalt", "displayName": "Smooth Basalt", "hardness": 1.25, @@ -32589,145 +33819,279 @@ "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20336, - "minStateId": 20336, - "maxStateId": 20336, + "defaultState": 21431, + "minStateId": 21431, + "maxStateId": 21431, "states": [], "harvestTools": { - "701": true, - "706": true, - "711": true, - "716": true, - "721": true, - "726": true + "737": true, + "742": true, + "747": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 273 + 285 ], "boundingBox": "block" }, { - "id": 893, + "id": 923, "name": "raw_iron_block", "displayName": "Block of Raw Iron", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20337, - "minStateId": 20337, - "maxStateId": 20337, + "defaultState": 21432, + "minStateId": 21432, + "maxStateId": 21432, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 60 + 63 ], "boundingBox": "block" }, { - "id": 894, + "id": 924, "name": "raw_copper_block", "displayName": "Block of Raw Copper", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20338, - "minStateId": 20338, - "maxStateId": 20338, + "defaultState": 21433, + "minStateId": 21433, + "maxStateId": 21433, "states": [], "harvestTools": { - "706": true, - "716": true, - "721": true, - "726": true + "742": true, + "752": true, + "757": true, + "762": true }, "drops": [ - 61 + 64 ], "boundingBox": "block" }, { - "id": 895, + "id": 925, "name": "raw_gold_block", "displayName": "Block of Raw Gold", - "hardness": 5, - "resistance": 6, + "hardness": 5.0, + "resistance": 6.0, "stackSize": 64, "diggable": true, "material": "mineable/pickaxe", "transparent": false, "emitLight": 0, "filterLight": 15, - "defaultState": 20339, - "minStateId": 20339, - "maxStateId": 20339, + "defaultState": 21434, + "minStateId": 21434, + "maxStateId": 21434, "states": [], "harvestTools": { - "716": true, - "721": true, - "726": true + "752": true, + "757": true, + "762": true }, "drops": [ - 62 + 65 ], "boundingBox": "block" }, { - "id": 896, + "id": 926, "name": "potted_azalea_bush", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Azalea", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 20340, - "minStateId": 20340, - "maxStateId": 20340, + "defaultState": 21435, + "minStateId": 21435, + "maxStateId": 21435, "states": [], "drops": [ - 946, - 152 + 989, + 162 ], "boundingBox": "block" }, { - "id": 897, + "id": 927, "name": "potted_flowering_azalea_bush", - "displayName": "Air", - "hardness": 0, - "resistance": 0, + "displayName": "Potted Flowering Azalea", + "hardness": 0.0, + "resistance": 0.0, "stackSize": 64, "diggable": true, "material": "default", "transparent": true, "emitLight": 0, "filterLight": 0, - "defaultState": 20341, - "minStateId": 20341, - "maxStateId": 20341, + "defaultState": 21436, + "minStateId": 21436, + "maxStateId": 21436, "states": [], "drops": [ - 946, - 153 + 989, + 163 ], "boundingBox": "block" + }, + { + "id": 928, + "name": "ochre_froglight", + "displayName": "Ochre Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 21438, + "minStateId": 21437, + "maxStateId": 21439, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 1147 + ], + "boundingBox": "block" + }, + { + "id": 929, + "name": "verdant_froglight", + "displayName": "Verdant Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 21441, + "minStateId": 21440, + "maxStateId": 21442, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 1148 + ], + "boundingBox": "block" + }, + { + "id": 930, + "name": "pearlescent_froglight", + "displayName": "Pearlescent Froglight", + "hardness": 0.3, + "resistance": 0.3, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 15, + "filterLight": 15, + "defaultState": 21444, + "minStateId": 21443, + "maxStateId": 21445, + "states": [ + { + "name": "axis", + "type": "enum", + "num_values": 3, + "values": [ + "x", + "y", + "z" + ] + } + ], + "drops": [ + 1149 + ], + "boundingBox": "block" + }, + { + "id": 931, + "name": "frogspawn", + "displayName": "Frogspawn", + "hardness": 0.0, + "resistance": 0.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": true, + "emitLight": 0, + "filterLight": 0, + "defaultState": 21446, + "minStateId": 21446, + "maxStateId": 21446, + "states": [], + "drops": [], + "boundingBox": "empty" + }, + { + "id": 932, + "name": "reinforced_deepslate", + "displayName": "Reinforced Deepslate", + "hardness": 55.0, + "resistance": 1200.0, + "stackSize": 64, + "diggable": true, + "material": "default", + "transparent": false, + "emitLight": 0, + "filterLight": 15, + "defaultState": 21447, + "minStateId": 21447, + "maxStateId": 21447, + "states": [], + "drops": [], + "boundingBox": "block" } ] \ No newline at end of file diff --git a/data/entities.json b/data/entities.json index af04f8f..f9d4e40 100644 --- a/data/entities.json +++ b/data/entities.json @@ -2,1018 +2,1181 @@ { "id": 0, "internalId": 0, - "name": "area_effect_cloud", - "displayName": "Area Effect Cloud", - "width": 6.0, - "height": 0.5, - "type": "other" + "name": "allay", + "displayName": "Allay", + "width": 0.35, + "height": 0.6, + "type": "mob", + "category": "Passive mobs" }, { "id": 1, "internalId": 1, - "name": "armor_stand", - "displayName": "Armor Stand", - "width": 0.5, - "height": 1.975, - "type": "living" + "name": "area_effect_cloud", + "displayName": "Area Effect Cloud", + "width": 6.0, + "height": 0.5, + "type": "other", + "category": "UNKNOWN" }, { "id": 2, "internalId": 2, - "name": "arrow", - "displayName": "Arrow", + "name": "armor_stand", + "displayName": "Armor Stand", "width": 0.5, - "height": 0.5, - "type": "projectile" + "height": 1.975, + "type": "living", + "category": "Immobile" }, { "id": 3, "internalId": 3, - "name": "axolotl", - "displayName": "Axolotl", - "width": 0.75, - "height": 0.42, - "type": "animal" + "name": "arrow", + "displayName": "Arrow", + "width": 0.5, + "height": 0.5, + "type": "projectile", + "category": "Projectiles" }, { "id": 4, "internalId": 4, - "name": "bat", - "displayName": "Bat", - "width": 0.5, - "height": 0.9, - "type": "ambient" + "name": "axolotl", + "displayName": "Axolotl", + "width": 0.75, + "height": 0.42, + "type": "animal", + "category": "Passive mobs" }, { "id": 5, "internalId": 5, - "name": "bee", - "displayName": "Bee", - "width": 0.7, - "height": 0.6, - "type": "animal" + "name": "bat", + "displayName": "Bat", + "width": 0.5, + "height": 0.9, + "type": "ambient", + "category": "Passive mobs" }, { "id": 6, "internalId": 6, - "name": "blaze", - "displayName": "Blaze", - "width": 0.6, - "height": 1.8, - "type": "hostile" + "name": "bee", + "displayName": "Bee", + "width": 0.7, + "height": 0.6, + "type": "animal", + "category": "Passive mobs" }, { "id": 7, "internalId": 7, - "name": "boat", - "displayName": "Boat", - "width": 1.375, - "height": 0.5625, - "type": "other" + "name": "blaze", + "displayName": "Blaze", + "width": 0.6, + "height": 1.8, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 8, "internalId": 8, - "name": "cat", - "displayName": "Cat", - "width": 0.6, - "height": 0.7, - "type": "animal" + "name": "boat", + "displayName": "Boat", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" }, { "id": 9, "internalId": 9, - "name": "cave_spider", - "displayName": "Cave Spider", - "width": 0.7, - "height": 0.5, - "type": "hostile" + "name": "chest_boat", + "displayName": "Boat with Chest", + "width": 1.375, + "height": 0.5625, + "type": "other", + "category": "Vehicles" }, { "id": 10, "internalId": 10, - "name": "chicken", - "displayName": "Chicken", - "width": 0.4, + "name": "cat", + "displayName": "Cat", + "width": 0.6, "height": 0.7, - "type": "animal" + "type": "animal", + "category": "Passive mobs" }, { "id": 11, "internalId": 11, - "name": "cod", - "displayName": "Cod", - "width": 0.5, - "height": 0.3, - "type": "water_creature" + "name": "cave_spider", + "displayName": "Cave Spider", + "width": 0.7, + "height": 0.5, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 12, "internalId": 12, - "name": "cow", - "displayName": "Cow", - "width": 0.9, - "height": 1.4, - "type": "animal" + "name": "chicken", + "displayName": "Chicken", + "width": 0.4, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" }, { "id": 13, "internalId": 13, - "name": "creeper", - "displayName": "Creeper", - "width": 0.6, - "height": 1.7, - "type": "hostile" + "name": "cod", + "displayName": "Cod", + "width": 0.5, + "height": 0.3, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 14, "internalId": 14, - "name": "dolphin", - "displayName": "Dolphin", + "name": "cow", + "displayName": "Cow", "width": 0.9, - "height": 0.6, - "type": "water_creature" + "height": 1.4, + "type": "animal", + "category": "Passive mobs" }, { "id": 15, "internalId": 15, - "name": "donkey", - "displayName": "Donkey", - "width": 1.3964844, - "height": 1.5, - "type": "animal" + "name": "creeper", + "displayName": "Creeper", + "width": 0.6, + "height": 1.7, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 16, "internalId": 16, - "name": "dragon_fireball", - "displayName": "Dragon Fireball", - "width": 1.0, - "height": 1.0, - "type": "projectile" + "name": "dolphin", + "displayName": "Dolphin", + "width": 0.9, + "height": 0.6, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 17, "internalId": 17, - "name": "drowned", - "displayName": "Drowned", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "donkey", + "displayName": "Donkey", + "width": 1.3964844, + "height": 1.5, + "type": "animal", + "category": "Passive mobs" }, { "id": 18, "internalId": 18, - "name": "elder_guardian", - "displayName": "Elder Guardian", - "width": 1.9975, - "height": 1.9975, - "type": "hostile" + "name": "dragon_fireball", + "displayName": "Dragon Fireball", + "width": 1.0, + "height": 1.0, + "type": "projectile", + "category": "Projectiles" }, { "id": 19, "internalId": 19, - "name": "end_crystal", - "displayName": "End Crystal", - "width": 2.0, - "height": 2.0, - "type": "other" + "name": "drowned", + "displayName": "Drowned", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 20, "internalId": 20, - "name": "ender_dragon", - "displayName": "Ender Dragon", - "width": 16.0, - "height": 8.0, - "type": "mob" + "name": "elder_guardian", + "displayName": "Elder Guardian", + "width": 1.9975, + "height": 1.9975, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 21, "internalId": 21, - "name": "enderman", - "displayName": "Enderman", - "width": 0.6, - "height": 2.9, - "type": "hostile" + "name": "end_crystal", + "displayName": "End Crystal", + "width": 2.0, + "height": 2.0, + "type": "other", + "category": "Immobile" }, { "id": 22, "internalId": 22, - "name": "endermite", - "displayName": "Endermite", - "width": 0.4, - "height": 0.3, - "type": "hostile" + "name": "ender_dragon", + "displayName": "Ender Dragon", + "width": 16.0, + "height": 8.0, + "type": "mob", + "category": "Hostile mobs" }, { "id": 23, "internalId": 23, - "name": "evoker", - "displayName": "Evoker", + "name": "enderman", + "displayName": "Enderman", "width": 0.6, - "height": 1.95, - "type": "hostile" + "height": 2.9, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 24, "internalId": 24, - "name": "evoker_fangs", - "displayName": "Evoker Fangs", - "width": 0.5, - "height": 0.8, - "type": "other" + "name": "endermite", + "displayName": "Endermite", + "width": 0.4, + "height": 0.3, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 25, "internalId": 25, - "name": "experience_orb", - "displayName": "Experience Orb", - "width": 0.5, - "height": 0.5, - "type": "other" + "name": "evoker", + "displayName": "Evoker", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 26, "internalId": 26, - "name": "eye_of_ender", - "displayName": "Eye of Ender", - "width": 0.25, - "height": 0.25, - "type": "other" + "name": "evoker_fangs", + "displayName": "Evoker Fangs", + "width": 0.5, + "height": 0.8, + "type": "other", + "category": "Hostile mobs" }, { "id": 27, "internalId": 27, - "name": "falling_block", - "displayName": "Falling Block", - "width": 0.98, - "height": 0.98, - "type": "other" + "name": "experience_orb", + "displayName": "Experience Orb", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "UNKNOWN" }, { "id": 28, "internalId": 28, - "name": "firework_rocket", - "displayName": "Firework Rocket", + "name": "eye_of_ender", + "displayName": "Eye of Ender", "width": 0.25, "height": 0.25, - "type": "projectile" + "type": "other", + "category": "UNKNOWN" }, { "id": 29, "internalId": 29, - "name": "fox", - "displayName": "Fox", - "width": 0.6, - "height": 0.7, - "type": "animal" + "name": "falling_block", + "displayName": "Falling Block", + "width": 0.98, + "height": 0.98, + "type": "other", + "category": "UNKNOWN" }, { "id": 30, "internalId": 30, - "name": "ghast", - "displayName": "Ghast", - "width": 4.0, - "height": 4.0, - "type": "mob" + "name": "firework_rocket", + "displayName": "Firework Rocket", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 31, "internalId": 31, - "name": "giant", - "displayName": "Giant", - "width": 3.6, - "height": 12.0, - "type": "hostile" + "name": "fox", + "displayName": "Fox", + "width": 0.6, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" }, { "id": 32, "internalId": 32, - "name": "glow_item_frame", - "displayName": "Glow Item Frame", + "name": "frog", + "displayName": "Frog", "width": 0.5, "height": 0.5, - "type": "other" + "type": "animal", + "category": "Passive mobs" }, { "id": 33, "internalId": 33, - "name": "glow_squid", - "displayName": "Glow Squid", - "width": 0.8, - "height": 0.8, - "type": "water_creature" + "name": "ghast", + "displayName": "Ghast", + "width": 4.0, + "height": 4.0, + "type": "mob", + "category": "Hostile mobs" }, { "id": 34, "internalId": 34, - "name": "goat", - "displayName": "Goat", - "width": 0.9, - "height": 1.3, - "type": "animal" + "name": "giant", + "displayName": "Giant", + "width": 3.6, + "height": 12.0, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 35, "internalId": 35, - "name": "guardian", - "displayName": "Guardian", - "width": 0.85, - "height": 0.85, - "type": "hostile" + "name": "glow_item_frame", + "displayName": "Glow Item Frame", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "Immobile" }, { "id": 36, "internalId": 36, - "name": "hoglin", - "displayName": "Hoglin", - "width": 1.3964844, - "height": 1.4, - "type": "animal" + "name": "glow_squid", + "displayName": "Glow Squid", + "width": 0.8, + "height": 0.8, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 37, "internalId": 37, - "name": "horse", - "displayName": "Horse", - "width": 1.3964844, - "height": 1.6, - "type": "animal" + "name": "goat", + "displayName": "Goat", + "width": 0.9, + "height": 1.3, + "type": "animal", + "category": "Passive mobs" }, { "id": 38, "internalId": 38, - "name": "husk", - "displayName": "Husk", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "guardian", + "displayName": "Guardian", + "width": 0.85, + "height": 0.85, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 39, "internalId": 39, - "name": "illusioner", - "displayName": "Illusioner", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "hoglin", + "displayName": "Hoglin", + "width": 1.3964844, + "height": 1.4, + "type": "animal", + "category": "Hostile mobs" }, { "id": 40, "internalId": 40, - "name": "iron_golem", - "displayName": "Iron Golem", - "width": 1.4, - "height": 2.7, - "type": "mob" + "name": "horse", + "displayName": "Horse", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Passive mobs" }, { "id": 41, "internalId": 41, - "name": "item", - "displayName": "Item", - "width": 0.25, - "height": 0.25, - "type": "other" + "name": "husk", + "displayName": "Husk", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 42, "internalId": 42, - "name": "item_frame", - "displayName": "Item Frame", - "width": 0.5, - "height": 0.5, - "type": "other" + "name": "illusioner", + "displayName": "Illusioner", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 43, "internalId": 43, - "name": "fireball", - "displayName": "Fireball", - "width": 1.0, - "height": 1.0, - "type": "projectile" + "name": "iron_golem", + "displayName": "Iron Golem", + "width": 1.4, + "height": 2.7, + "type": "mob", + "category": "Passive mobs" }, { "id": 44, "internalId": 44, - "name": "leash_knot", - "displayName": "Leash Knot", - "width": 0.375, - "height": 0.5, - "type": "other" + "name": "item", + "displayName": "Item", + "width": 0.25, + "height": 0.25, + "type": "other", + "category": "UNKNOWN" }, { "id": 45, "internalId": 45, - "name": "lightning_bolt", - "displayName": "Lightning Bolt", - "width": 0.0, - "height": 0.0, - "type": "other" + "name": "item_frame", + "displayName": "Item Frame", + "width": 0.5, + "height": 0.5, + "type": "other", + "category": "Immobile" }, { "id": 46, "internalId": 46, - "name": "llama", - "displayName": "Llama", - "width": 0.9, - "height": 1.87, - "type": "animal" + "name": "fireball", + "displayName": "Fireball", + "width": 1.0, + "height": 1.0, + "type": "projectile", + "category": "Projectiles" }, { "id": 47, "internalId": 47, - "name": "llama_spit", - "displayName": "Llama Spit", - "width": 0.25, - "height": 0.25, - "type": "projectile" + "name": "leash_knot", + "displayName": "Leash Knot", + "width": 0.375, + "height": 0.5, + "type": "other", + "category": "Immobile" }, { "id": 48, "internalId": 48, - "name": "magma_cube", - "displayName": "Magma Cube", - "width": 2.04, - "height": 2.04, - "type": "mob" + "name": "lightning_bolt", + "displayName": "Lightning Bolt", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "UNKNOWN" }, { "id": 49, "internalId": 49, - "name": "marker", - "displayName": "Marker", - "width": 0.0, - "height": 0.0, - "type": "other" + "name": "llama", + "displayName": "Llama", + "width": 0.9, + "height": 1.87, + "type": "animal", + "category": "Passive mobs" }, { "id": 50, "internalId": 50, - "name": "minecart", - "displayName": "Minecart", - "width": 0.98, - "height": 0.7, - "type": "other" + "name": "llama_spit", + "displayName": "Llama Spit", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 51, "internalId": 51, - "name": "chest_minecart", - "displayName": "Minecart with Chest", - "width": 0.98, - "height": 0.7, - "type": "other" + "name": "magma_cube", + "displayName": "Magma Cube", + "width": 2.04, + "height": 2.04, + "type": "mob", + "category": "Hostile mobs" }, { "id": 52, "internalId": 52, - "name": "command_block_minecart", - "displayName": "Minecart with Command Block", - "width": 0.98, - "height": 0.7, - "type": "other" + "name": "marker", + "displayName": "Marker", + "width": 0.0, + "height": 0.0, + "type": "other", + "category": "UNKNOWN" }, { "id": 53, "internalId": 53, - "name": "furnace_minecart", - "displayName": "Minecart with Furnace", + "name": "minecart", + "displayName": "Minecart", "width": 0.98, "height": 0.7, - "type": "other" + "type": "other", + "category": "Vehicles" }, { "id": 54, "internalId": 54, - "name": "hopper_minecart", - "displayName": "Minecart with Hopper", + "name": "chest_minecart", + "displayName": "Minecart with Chest", "width": 0.98, "height": 0.7, - "type": "other" + "type": "other", + "category": "Vehicles" }, { "id": 55, "internalId": 55, - "name": "spawner_minecart", - "displayName": "Minecart with Spawner", + "name": "command_block_minecart", + "displayName": "Minecart with Command Block", "width": 0.98, "height": 0.7, - "type": "other" + "type": "other", + "category": "Vehicles" }, { "id": 56, "internalId": 56, - "name": "tnt_minecart", - "displayName": "Minecart with TNT", + "name": "furnace_minecart", + "displayName": "Minecart with Furnace", "width": 0.98, "height": 0.7, - "type": "other" + "type": "other", + "category": "Vehicles" }, { "id": 57, "internalId": 57, - "name": "mule", - "displayName": "Mule", - "width": 1.3964844, - "height": 1.6, - "type": "animal" + "name": "hopper_minecart", + "displayName": "Minecart with Hopper", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" }, { "id": 58, "internalId": 58, - "name": "mooshroom", - "displayName": "Mooshroom", - "width": 0.9, - "height": 1.4, - "type": "animal" + "name": "spawner_minecart", + "displayName": "Minecart with Spawner", + "width": 0.98, + "height": 0.7, + "type": "other", + "category": "Vehicles" }, { "id": 59, "internalId": 59, - "name": "ocelot", - "displayName": "Ocelot", - "width": 0.6, + "name": "tnt_minecart", + "displayName": "Minecart with TNT", + "width": 0.98, "height": 0.7, - "type": "animal" + "type": "other", + "category": "Vehicles" }, { "id": 60, "internalId": 60, - "name": "painting", - "displayName": "Painting", - "width": 0.5, - "height": 0.5, - "type": "other" + "name": "mule", + "displayName": "Mule", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Passive mobs" }, { "id": 61, "internalId": 61, - "name": "panda", - "displayName": "Panda", - "width": 1.3, - "height": 1.25, - "type": "animal" + "name": "mooshroom", + "displayName": "Mooshroom", + "width": 0.9, + "height": 1.4, + "type": "animal", + "category": "Passive mobs" }, { "id": 62, "internalId": 62, - "name": "parrot", - "displayName": "Parrot", - "width": 0.5, - "height": 0.9, - "type": "animal" + "name": "ocelot", + "displayName": "Ocelot", + "width": 0.6, + "height": 0.7, + "type": "animal", + "category": "Passive mobs" }, { "id": 63, "internalId": 63, - "name": "phantom", - "displayName": "Phantom", - "width": 0.9, + "name": "painting", + "displayName": "Painting", + "width": 0.5, "height": 0.5, - "type": "mob" + "type": "other", + "category": "Immobile" }, { "id": 64, "internalId": 64, - "name": "pig", - "displayName": "Pig", - "width": 0.9, - "height": 0.9, - "type": "animal" + "name": "panda", + "displayName": "Panda", + "width": 1.3, + "height": 1.25, + "type": "animal", + "category": "Passive mobs" }, { "id": 65, "internalId": 65, - "name": "piglin", - "displayName": "Piglin", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "parrot", + "displayName": "Parrot", + "width": 0.5, + "height": 0.9, + "type": "animal", + "category": "Passive mobs" }, { "id": 66, "internalId": 66, - "name": "piglin_brute", - "displayName": "Piglin Brute", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "phantom", + "displayName": "Phantom", + "width": 0.9, + "height": 0.5, + "type": "mob", + "category": "Hostile mobs" }, { "id": 67, "internalId": 67, - "name": "pillager", - "displayName": "Pillager", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "pig", + "displayName": "Pig", + "width": 0.9, + "height": 0.9, + "type": "animal", + "category": "Passive mobs" }, { "id": 68, "internalId": 68, - "name": "polar_bear", - "displayName": "Polar Bear", - "width": 1.4, - "height": 1.4, - "type": "animal" + "name": "piglin", + "displayName": "Piglin", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 69, "internalId": 69, - "name": "tnt", - "displayName": "Primed TNT", - "width": 0.98, - "height": 0.98, - "type": "other" + "name": "piglin_brute", + "displayName": "Piglin Brute", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 70, "internalId": 70, - "name": "pufferfish", - "displayName": "Pufferfish", - "width": 0.7, - "height": 0.7, - "type": "water_creature" + "name": "pillager", + "displayName": "Pillager", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 71, "internalId": 71, - "name": "rabbit", - "displayName": "Rabbit", - "width": 0.4, - "height": 0.5, - "type": "animal" + "name": "polar_bear", + "displayName": "Polar Bear", + "width": 1.4, + "height": 1.4, + "type": "animal", + "category": "Passive mobs" }, { "id": 72, "internalId": 72, - "name": "ravager", - "displayName": "Ravager", - "width": 1.95, - "height": 2.2, - "type": "hostile" + "name": "tnt", + "displayName": "Primed TNT", + "width": 0.98, + "height": 0.98, + "type": "other", + "category": "UNKNOWN" }, { "id": 73, "internalId": 73, - "name": "salmon", - "displayName": "Salmon", + "name": "pufferfish", + "displayName": "Pufferfish", "width": 0.7, - "height": 0.4, - "type": "water_creature" + "height": 0.7, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 74, "internalId": 74, - "name": "sheep", - "displayName": "Sheep", - "width": 0.9, - "height": 1.3, - "type": "animal" + "name": "rabbit", + "displayName": "Rabbit", + "width": 0.4, + "height": 0.5, + "type": "animal", + "category": "Passive mobs" }, { "id": 75, "internalId": 75, - "name": "shulker", - "displayName": "Shulker", - "width": 1.0, - "height": 1.0, - "type": "mob" + "name": "ravager", + "displayName": "Ravager", + "width": 1.95, + "height": 2.2, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 76, "internalId": 76, - "name": "shulker_bullet", - "displayName": "Shulker Bullet", - "width": 0.3125, - "height": 0.3125, - "type": "projectile" + "name": "salmon", + "displayName": "Salmon", + "width": 0.7, + "height": 0.4, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 77, "internalId": 77, - "name": "silverfish", - "displayName": "Silverfish", - "width": 0.4, - "height": 0.3, - "type": "hostile" + "name": "sheep", + "displayName": "Sheep", + "width": 0.9, + "height": 1.3, + "type": "animal", + "category": "Passive mobs" }, { "id": 78, "internalId": 78, - "name": "skeleton", - "displayName": "Skeleton", - "width": 0.6, - "height": 1.99, - "type": "hostile" + "name": "shulker", + "displayName": "Shulker", + "width": 1.0, + "height": 1.0, + "type": "mob", + "category": "Hostile mobs" }, { "id": 79, "internalId": 79, - "name": "skeleton_horse", - "displayName": "Skeleton Horse", - "width": 1.3964844, - "height": 1.6, - "type": "animal" + "name": "shulker_bullet", + "displayName": "Shulker Bullet", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" }, { "id": 80, "internalId": 80, - "name": "slime", - "displayName": "Slime", - "width": 2.04, - "height": 2.04, - "type": "mob" + "name": "silverfish", + "displayName": "Silverfish", + "width": 0.4, + "height": 0.3, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 81, "internalId": 81, - "name": "small_fireball", - "displayName": "Small Fireball", - "width": 0.3125, - "height": 0.3125, - "type": "projectile" + "name": "skeleton", + "displayName": "Skeleton", + "width": 0.6, + "height": 1.99, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 82, "internalId": 82, - "name": "snow_golem", - "displayName": "Snow Golem", - "width": 0.7, - "height": 1.9, - "type": "mob" + "name": "skeleton_horse", + "displayName": "Skeleton Horse", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Hostile mobs" }, { "id": 83, "internalId": 83, - "name": "snowball", - "displayName": "Snowball", - "width": 0.25, - "height": 0.25, - "type": "projectile" + "name": "slime", + "displayName": "Slime", + "width": 2.04, + "height": 2.04, + "type": "mob", + "category": "Hostile mobs" }, { "id": 84, "internalId": 84, - "name": "spectral_arrow", - "displayName": "Spectral Arrow", - "width": 0.5, - "height": 0.5, - "type": "projectile" + "name": "small_fireball", + "displayName": "Small Fireball", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" }, { "id": 85, "internalId": 85, - "name": "spider", - "displayName": "Spider", - "width": 1.4, - "height": 0.9, - "type": "hostile" + "name": "snow_golem", + "displayName": "Snow Golem", + "width": 0.7, + "height": 1.9, + "type": "mob", + "category": "Passive mobs" }, { "id": 86, "internalId": 86, - "name": "squid", - "displayName": "Squid", - "width": 0.8, - "height": 0.8, - "type": "water_creature" + "name": "snowball", + "displayName": "Snowball", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 87, "internalId": 87, - "name": "stray", - "displayName": "Stray", - "width": 0.6, - "height": 1.99, - "type": "hostile" + "name": "spectral_arrow", + "displayName": "Spectral Arrow", + "width": 0.5, + "height": 0.5, + "type": "projectile", + "category": "Projectiles" }, { "id": 88, "internalId": 88, - "name": "strider", - "displayName": "Strider", - "width": 0.9, - "height": 1.7, - "type": "animal" + "name": "spider", + "displayName": "Spider", + "width": 1.4, + "height": 0.9, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 89, "internalId": 89, - "name": "egg", - "displayName": "Thrown Egg", - "width": 0.25, - "height": 0.25, - "type": "projectile" + "name": "squid", + "displayName": "Squid", + "width": 0.8, + "height": 0.8, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 90, "internalId": 90, - "name": "ender_pearl", - "displayName": "Thrown Ender Pearl", - "width": 0.25, - "height": 0.25, - "type": "projectile" + "name": "stray", + "displayName": "Stray", + "width": 0.6, + "height": 1.99, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 91, "internalId": 91, - "name": "experience_bottle", - "displayName": "Thrown Bottle o' Enchanting", - "width": 0.25, - "height": 0.25, - "type": "projectile" + "name": "strider", + "displayName": "Strider", + "width": 0.9, + "height": 1.7, + "type": "animal", + "category": "Passive mobs" }, { "id": 92, "internalId": 92, - "name": "potion", - "displayName": "Potion", - "width": 0.25, - "height": 0.25, - "type": "projectile" + "name": "tadpole", + "displayName": "Tadpole", + "width": 0.4, + "height": 0.3, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 93, "internalId": 93, - "name": "trident", - "displayName": "Trident", - "width": 0.5, - "height": 0.5, - "type": "projectile" + "name": "egg", + "displayName": "Thrown Egg", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 94, "internalId": 94, - "name": "trader_llama", - "displayName": "Trader Llama", - "width": 0.9, - "height": 1.87, - "type": "animal" + "name": "ender_pearl", + "displayName": "Thrown Ender Pearl", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 95, "internalId": 95, - "name": "tropical_fish", - "displayName": "Tropical Fish", - "width": 0.5, - "height": 0.4, - "type": "water_creature" + "name": "experience_bottle", + "displayName": "Thrown Bottle o' Enchanting", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 96, "internalId": 96, - "name": "turtle", - "displayName": "Turtle", - "width": 1.2, - "height": 0.4, - "type": "animal" + "name": "potion", + "displayName": "Potion", + "width": 0.25, + "height": 0.25, + "type": "projectile", + "category": "Projectiles" }, { "id": 97, "internalId": 97, - "name": "vex", - "displayName": "Vex", - "width": 0.4, - "height": 0.8, - "type": "hostile" + "name": "trident", + "displayName": "Trident", + "width": 0.5, + "height": 0.5, + "type": "projectile", + "category": "Projectiles" }, { "id": 98, "internalId": 98, - "name": "villager", - "displayName": "Villager", - "width": 0.6, - "height": 1.95, - "type": "passive" + "name": "trader_llama", + "displayName": "Trader Llama", + "width": 0.9, + "height": 1.87, + "type": "animal", + "category": "Passive mobs" }, { "id": 99, "internalId": 99, - "name": "vindicator", - "displayName": "Vindicator", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "tropical_fish", + "displayName": "Tropical Fish", + "width": 0.5, + "height": 0.4, + "type": "water_creature", + "category": "Passive mobs" }, { "id": 100, "internalId": 100, - "name": "wandering_trader", - "displayName": "Wandering Trader", - "width": 0.6, - "height": 1.95, - "type": "passive" + "name": "turtle", + "displayName": "Turtle", + "width": 1.2, + "height": 0.4, + "type": "animal", + "category": "Passive mobs" }, { "id": 101, "internalId": 101, - "name": "witch", - "displayName": "Witch", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "vex", + "displayName": "Vex", + "width": 0.4, + "height": 0.8, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 102, "internalId": 102, - "name": "wither", - "displayName": "Wither", - "width": 0.9, - "height": 3.5, - "type": "hostile" + "name": "villager", + "displayName": "Villager", + "width": 0.6, + "height": 1.95, + "type": "passive", + "category": "Passive mobs" }, { "id": 103, "internalId": 103, - "name": "wither_skeleton", - "displayName": "Wither Skeleton", - "width": 0.7, - "height": 2.4, - "type": "hostile" + "name": "vindicator", + "displayName": "Vindicator", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 104, "internalId": 104, - "name": "wither_skull", - "displayName": "Wither Skull", - "width": 0.3125, - "height": 0.3125, - "type": "projectile" + "name": "wandering_trader", + "displayName": "Wandering Trader", + "width": 0.6, + "height": 1.95, + "type": "passive", + "category": "Passive mobs" }, { "id": 105, "internalId": 105, - "name": "wolf", - "displayName": "Wolf", - "width": 0.6, - "height": 0.85, - "type": "animal" + "name": "warden", + "displayName": "Warden", + "width": 0.9, + "height": 2.9, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 106, "internalId": 106, - "name": "zoglin", - "displayName": "Zoglin", - "width": 1.3964844, - "height": 1.4, - "type": "hostile" + "name": "witch", + "displayName": "Witch", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 107, "internalId": 107, - "name": "zombie", - "displayName": "Zombie", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "wither", + "displayName": "Wither", + "width": 0.9, + "height": 3.5, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 108, "internalId": 108, - "name": "zombie_horse", - "displayName": "Zombie Horse", - "width": 1.3964844, - "height": 1.6, - "type": "animal" + "name": "wither_skeleton", + "displayName": "Wither Skeleton", + "width": 0.7, + "height": 2.4, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 109, "internalId": 109, - "name": "zombie_villager", - "displayName": "Zombie Villager", - "width": 0.6, - "height": 1.95, - "type": "hostile" + "name": "wither_skull", + "displayName": "Wither Skull", + "width": 0.3125, + "height": 0.3125, + "type": "projectile", + "category": "Projectiles" }, { "id": 110, "internalId": 110, - "name": "zombified_piglin", - "displayName": "Zombified Piglin", + "name": "wolf", + "displayName": "Wolf", "width": 0.6, - "height": 1.95, - "type": "hostile" + "height": 0.85, + "type": "animal", + "category": "Passive mobs" }, { "id": 111, "internalId": 111, - "name": "player", - "displayName": "Player", - "width": 0.6, - "height": 1.8, - "type": "player" + "name": "zoglin", + "displayName": "Zoglin", + "width": 1.3964844, + "height": 1.4, + "type": "hostile", + "category": "Hostile mobs" }, { "id": 112, "internalId": 112, + "name": "zombie", + "displayName": "Zombie", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 113, + "internalId": 113, + "name": "zombie_horse", + "displayName": "Zombie Horse", + "width": 1.3964844, + "height": 1.6, + "type": "animal", + "category": "Hostile mobs" + }, + { + "id": 114, + "internalId": 114, + "name": "zombie_villager", + "displayName": "Zombie Villager", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 115, + "internalId": 115, + "name": "zombified_piglin", + "displayName": "Zombified Piglin", + "width": 0.6, + "height": 1.95, + "type": "hostile", + "category": "Hostile mobs" + }, + { + "id": 116, + "internalId": 116, + "name": "player", + "displayName": "Player", + "width": 0.6, + "height": 1.8, + "type": "player", + "category": "UNKNOWN" + }, + { + "id": 117, + "internalId": 117, "name": "fishing_bobber", "displayName": "Fishing Bobber", "width": 0.25, "height": 0.25, - "type": "projectile" + "type": "projectile", + "category": "Projectiles" } ] \ No newline at end of file diff --git a/src/client.rs b/src/client.rs index 3c2b28b..48422af 100644 --- a/src/client.rs +++ b/src/client.rs @@ -17,11 +17,11 @@ pub use crate::packets::play::s2c::GameMode; use crate::packets::play::s2c::{ Biome as BiomeRegistryBiome, BiomeAdditionsSound, BiomeEffects, BiomeMoodSound, BiomeMusic, BiomeParticle, BiomeParticleOptions, BiomeProperty, BiomeRegistry, ChangeGameState, - ChangeGameStateReason, DestroyEntities, DimensionCodec, DimensionType, DimensionTypeRegistry, + ChangeGameStateReason, ChatTypeRegistry, DestroyEntities, DimensionType, DimensionTypeRegistry, DimensionTypeRegistryEntry, Disconnect, EntityHeadLook, EntityPosition, EntityPositionAndRotation, EntityRotation, EntityTeleport, EntityVelocity, JoinGame, - KeepAliveClientbound, PlayerPositionAndLook, PlayerPositionAndLookFlags, S2cPlayPacket, - SpawnPosition, UnloadChunk, UpdateViewDistance, UpdateViewPosition, + KeepAliveClientbound, PlayerPositionAndLook, PlayerPositionAndLookFlags, RegistryCodec, + S2cPlayPacket, SpawnPosition, UnloadChunk, UpdateViewDistance, UpdateViewPosition, }; use crate::protocol::{BoundedInt, Nbt}; use crate::server::C2sPacketChannels; @@ -378,17 +378,21 @@ impl<'a> ClientMut<'a> { .dimensions() .map(|(id, _)| ident!("{LIBRARY_NAMESPACE}:dimension_{}", id.0)) .collect(), - dimension_codec: Nbt(make_dimension_codec(server)), - dimension: Nbt(to_dimension_registry_item(dimension)), + registry_codec: Nbt(make_dimension_codec(server)), + dimension_type_name: ident!( + "{LIBRARY_NAMESPACE}:dimension_type_{}", + meta.dimension().0 + ), dimension_name: ident!("{LIBRARY_NAMESPACE}:dimension_{}", meta.dimension().0), hashed_seed: 0, max_players: VarInt(0), view_distance: BoundedInt(VarInt(self.new_max_view_distance as i32)), simulation_distance: VarInt(16), - reduced_debug_info: false, - enable_respawn_screen: false, // TODO - is_debug: false, - is_flat: false, // TODO + reduced_debug_info: false, // TODO + enable_respawn_screen: false, + is_debug: false, // TODO + is_flat: false, + last_death_location: None, // TODO }); self.teleport(self.position(), self.yaw(), self.pitch()); @@ -688,6 +692,7 @@ impl<'a> ClientMut<'a> { C2sPlayPacket::QueryBlockNbt(_) => {} C2sPlayPacket::SetDifficulty(_) => {} C2sPlayPacket::ChatMessageServerbound(_) => {} + C2sPlayPacket::ChatPreview(_) => {} C2sPlayPacket::ClientStatus(_) => {} C2sPlayPacket::ClientSettings(p) => { let old = client.settings.replace(Settings { @@ -704,7 +709,6 @@ impl<'a> ClientMut<'a> { } C2sPlayPacket::TabCompleteServerbound(_) => {} C2sPlayPacket::ClickWindowButton(_) => {} - C2sPlayPacket::ClickWindow(_) => {} C2sPlayPacket::CloseWindow(_) => {} C2sPlayPacket::PluginMessageServerbound(_) => {} C2sPlayPacket::EditBook(_) => {} @@ -828,7 +832,7 @@ fn send_packet(send_opt: &mut Option>, pkt: impl Into DimensionCodec { +fn make_dimension_codec(server: &Server) -> RegistryCodec { let mut dims = Vec::new(); for (id, dim) in server.dimensions() { let id = id.0 as i32; @@ -854,7 +858,7 @@ fn make_dimension_codec(server: &Server) -> DimensionCodec { biomes.push(to_biome_registry_item(&biome, 0)); } - DimensionCodec { + RegistryCodec { dimension_type_registry: DimensionTypeRegistry { typ: ident!("dimension_type"), value: dims, @@ -863,12 +867,19 @@ fn make_dimension_codec(server: &Server) -> DimensionCodec { typ: ident!("worldgen/biome"), value: biomes, }, + chat_type_registry: ChatTypeRegistry { + typ: ident!("chat_type"), + value: Vec::new(), + }, } } fn to_dimension_registry_item(dim: &Dimension) -> DimensionType { DimensionType { piglin_safe: true, + has_raids: true, + monster_spawn_light_level: 0, + monster_spawn_block_light_limit: 0, natural: dim.natural, ambient_light: dim.ambient_light, fixed_time: dim.fixed_time.map(|t| t as i64), @@ -881,7 +892,6 @@ fn to_dimension_registry_item(dim: &Dimension) -> DimensionType { DimensionEffects::TheNether => ident!("the_nether"), DimensionEffects::TheEnd => ident!("the_end"), }, - has_raids: true, min_y: dim.min_y, height: dim.height, logical_height: dim.height, diff --git a/src/dimension.rs b/src/dimension.rs index 4b64728..9c4aa43 100644 --- a/src/dimension.rs +++ b/src/dimension.rs @@ -51,6 +51,8 @@ pub struct Dimension { // TODO: The following fields should be added if they can affect the // appearance of the dimension to clients. // * infiniburn + // * monster_spawn_light_level + // * monster_spawn_block_light_level // * respawn_anchor_works // * has_skylight // * bed_works diff --git a/src/entity.rs b/src/entity.rs index e5debd1..8974449 100644 --- a/src/entity.rs +++ b/src/entity.rs @@ -14,8 +14,7 @@ use vek::{Aabb, Vec3}; use crate::byte_angle::ByteAngle; use crate::packets::play::s2c::{ - EntityMetadata, S2cPlayPacket, SpawnEntity, SpawnExperienceOrb, SpawnLivingEntity, - SpawnPainting, SpawnPlayer, + EntityMetadata, S2cPlayPacket, SpawnEntity, SpawnExperienceOrb, SpawnPlayer, }; use crate::protocol::RawBytes; use crate::slotmap::{Key, SlotMap}; @@ -306,90 +305,43 @@ impl Entity { } pub(crate) fn spawn_packet(&self, this_id: EntityId) -> Option { - use EntityMeta::*; match &self.meta { - Marker(_) => None, - ExperienceOrb(_) => Some(EntitySpawnPacket::SpawnExperienceOrb(SpawnExperienceOrb { + EntityMeta::Marker(_) => None, + EntityMeta::ExperienceOrb(_) => { + Some(EntitySpawnPacket::SpawnExperienceOrb(SpawnExperienceOrb { + entity_id: VarInt(this_id.to_network_id()), + position: self.new_position, + count: 0, // TODO + })) + } + EntityMeta::Player(_) => Some(EntitySpawnPacket::SpawnPlayer(SpawnPlayer { entity_id: VarInt(this_id.to_network_id()), + player_uuid: self.uuid, position: self.new_position, - count: 0, // TODO + yaw: ByteAngle::from_degrees(self.yaw), + pitch: ByteAngle::from_degrees(self.pitch), })), - Painting(_) => todo!(), - Player(_) => todo!(), - AreaEffectCloud(_) - | Arrow(_) - | Boat(_) - | DragonFireball(_) - | EndCrystal(_) - | EvokerFangs(_) - | EyeOfEnder(_) - | FallingBlock(_) - | FireworkRocket(_) - | GlowItemFrame(_) - | Item(_) - | ItemFrame(_) - | Fireball(_) - | LeashKnot(_) - | LightningBolt(_) - | LlamaSpit(_) - | Minecart(_) - | ChestMinecart(_) - | CommandBlockMinecart(_) - | FurnaceMinecart(_) - | HopperMinecart(_) - | SpawnerMinecart(_) - | TntMinecart(_) - | Tnt(_) - | ShulkerBullet(_) - | SmallFireball(_) - | Snowball(_) - | SpectralArrow(_) - | Egg(_) - | EnderPearl(_) - | ExperienceBottle(_) - | Potion(_) - | Trident(_) - | WitherSkull(_) - | FishingBobber(_) => Some(EntitySpawnPacket::SpawnEntity(SpawnEntity { + _ => Some(EntitySpawnPacket::SpawnEntity(SpawnEntity { entity_id: VarInt(this_id.to_network_id()), object_uuid: self.uuid, typ: VarInt(self.typ() as i32), position: self.new_position, pitch: ByteAngle::from_degrees(self.pitch), yaw: ByteAngle::from_degrees(self.yaw), - data: 1, // TODO + head_yaw: ByteAngle::from_degrees(self.head_yaw), + data: VarInt(1), // TODO velocity: velocity_to_packet_units(self.velocity), })), - - ArmorStand(_) | Axolotl(_) | Bat(_) | Bee(_) | Blaze(_) | Cat(_) | CaveSpider(_) - | Chicken(_) | Cod(_) | Cow(_) | Creeper(_) | Dolphin(_) | Donkey(_) | Drowned(_) - | ElderGuardian(_) | EnderDragon(_) | Enderman(_) | Endermite(_) | Evoker(_) - | Fox(_) | Ghast(_) | Giant(_) | GlowSquid(_) | Goat(_) | Guardian(_) | Hoglin(_) - | Horse(_) | Husk(_) | Illusioner(_) | IronGolem(_) | Llama(_) | MagmaCube(_) - | Mule(_) | Mooshroom(_) | Ocelot(_) | Panda(_) | Parrot(_) | Phantom(_) | Pig(_) - | Piglin(_) | PiglinBrute(_) | Pillager(_) | PolarBear(_) | Pufferfish(_) - | Rabbit(_) | Ravager(_) | Salmon(_) | Sheep(_) | Shulker(_) | Silverfish(_) - | Skeleton(_) | SkeletonHorse(_) | Slime(_) | SnowGolem(_) | Spider(_) | Squid(_) - | Stray(_) | Strider(_) | TraderLlama(_) | TropicalFish(_) | Turtle(_) | Vex(_) - | Villager(_) | Vindicator(_) | WanderingTrader(_) | Witch(_) | Wither(_) - | WitherSkeleton(_) | Wolf(_) | Zoglin(_) | Zombie(_) | ZombieHorse(_) - | ZombieVillager(_) | ZombifiedPiglin(_) => { - Some(EntitySpawnPacket::SpawnLivingEntity(SpawnLivingEntity { - entity_id: VarInt(this_id.to_network_id()), - entity_uuid: self.uuid, - typ: VarInt(self.typ() as i32), - position: self.new_position, - yaw: ByteAngle::from_degrees(self.yaw), - pitch: ByteAngle::from_degrees(self.pitch), - head_yaw: ByteAngle::from_degrees(self.head_yaw), - velocity: velocity_to_packet_units(self.velocity), - })) - } } } pub fn hitbox(&self) -> Aabb { let dims = match &self.meta { + EntityMeta::Allay(_) => [0.6, 0.35, 0.6], + EntityMeta::ChestBoat(_) => [1.375, 0.5625, 1.375], + EntityMeta::Frog(_) => [0.5, 0.5, 0.5], + EntityMeta::Tadpole(_) => [0.4, 0.3, 0.4], + EntityMeta::Warden(_) => [0.9, 2.9, 0.9], EntityMeta::AreaEffectCloud(e) => [ e.get_radius() as f64 * 2.0, 0.5, @@ -598,8 +550,6 @@ impl<'a> EntityMut<'a> { pub(crate) enum EntitySpawnPacket { SpawnEntity(SpawnEntity), SpawnExperienceOrb(SpawnExperienceOrb), - SpawnLivingEntity(SpawnLivingEntity), - SpawnPainting(SpawnPainting), SpawnPlayer(SpawnPlayer), } @@ -608,8 +558,6 @@ impl From for S2cPlayPacket { match pkt { EntitySpawnPacket::SpawnEntity(pkt) => pkt.into(), EntitySpawnPacket::SpawnExperienceOrb(pkt) => pkt.into(), - EntitySpawnPacket::SpawnLivingEntity(pkt) => pkt.into(), - EntitySpawnPacket::SpawnPainting(pkt) => pkt.into(), EntitySpawnPacket::SpawnPlayer(pkt) => pkt.into(), } } diff --git a/src/entity/meta.rs b/src/entity/meta.rs index c8724a8..486dfc8 100644 --- a/src/entity/meta.rs +++ b/src/entity/meta.rs @@ -2,13 +2,8 @@ use std::io::Write; -use anyhow::Context; -use uuid::Uuid; - -use crate::block_pos::BlockPos; use crate::protocol::Encode; use crate::var_int::VarInt; -use crate::Text; #[derive(Clone, Copy, Default, PartialEq, PartialOrd, Debug)] pub struct ArmorStandRotations { @@ -137,6 +132,12 @@ pub enum Pose { Sneaking, LongJumping, Dying, + Croaking, + UsingTongue, + Roaring, + Sniffing, + Emerging, + Digging, } impl Default for Pose { @@ -191,3 +192,66 @@ impl Encode for BoatVariant { VarInt(*self as i32).encode(w) } } + +#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +pub enum CatVariant { + Tabby, + Black, + Red, + Siamese, + BritishShorthair, + Calico, + Persian, + Ragdoll, + White, + Jellie, + AllBlack, +} + +impl Default for CatVariant { + fn default() -> Self { + CatVariant::Black + } +} + +impl Encode for CatVariant { + fn encode(&self, w: &mut impl Write) -> anyhow::Result<()> { + VarInt(*self as i32).encode(w) + } +} + +#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +pub enum FrogVariant { + Temperate, + Warm, + Cold, +} + +impl Default for FrogVariant { + fn default() -> Self { + FrogVariant::Temperate + } +} + +impl Encode for FrogVariant { + fn encode(&self, w: &mut impl Write) -> anyhow::Result<()> { + VarInt(*self as i32).encode(w) + } +} + +#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +pub enum PaintingVariant { + Default, // TODO +} + +impl Default for PaintingVariant { + fn default() -> Self { + PaintingVariant::Default + } +} + +impl Encode for PaintingVariant { + fn encode(&self, w: &mut impl Write) -> anyhow::Result<()> { + VarInt(*self as i32).encode(w) + } +} diff --git a/src/lib.rs b/src/lib.rs index dd1110a..d8c7f51 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,9 +47,9 @@ pub use world::{WorldId, WorldMeta, WorldMetaMut, WorldMut, WorldRef, Worlds, Wo pub use {nbt, uuid, vek}; /// The Minecraft protocol version that this library targets. -pub const PROTOCOL_VERSION: i32 = 758; +pub const PROTOCOL_VERSION: i32 = 759; /// The name of the Minecraft version that this library targets. -pub const VERSION_NAME: &str = "1.18.2"; +pub const VERSION_NAME: &str = "1.19"; /// The namespace for this library used internally for namespaced identifiers. const LIBRARY_NAMESPACE: &str = "valence"; diff --git a/src/packets.rs b/src/packets.rs index 9484f4a..25a46b8 100644 --- a/src/packets.rs +++ b/src/packets.rs @@ -2,7 +2,7 @@ //! //! See for up to date protocol information. -#![allow(dead_code)] // TODO: remove this +#![allow(dead_code)] use std::fmt; use std::io::{Read, Write}; @@ -409,6 +409,7 @@ pub mod login { LoginSuccess 0x02 { uuid: Uuid, username: BoundedString<3, 16>, + null_byte: u8, // TODO: Why is this needed? } } @@ -425,6 +426,15 @@ pub mod login { def_struct! { LoginStart 0x00 { username: BoundedString<3, 16>, + sig_data: Option, + } + } + + def_struct! { + LoginStartSignatureData { + timestamp: i64, + public_key: Vec, + signature: Vec, } } @@ -450,7 +460,8 @@ pub mod play { position: Vec3, pitch: ByteAngle, yaw: ByteAngle, - data: i32, + head_yaw: ByteAngle, + data: VarInt, velocity: Vec3, } } @@ -463,29 +474,6 @@ pub mod play { } } - def_struct! { - SpawnLivingEntity 0x02 { - entity_id: VarInt, - entity_uuid: Uuid, - typ: VarInt, - position: Vec3, - yaw: ByteAngle, - pitch: ByteAngle, - head_yaw: ByteAngle, - velocity: Vec3, - } - } - - def_struct! { - SpawnPainting 0x03 { - entity_id: VarInt, - entity_uuid: Uuid, - variant: VarInt, // TODO: painting ID enum - location: BlockPos, - direction: PaintingDirection, - } - } - def_enum! { PaintingDirection: u8 { South = 0, @@ -496,7 +484,7 @@ pub mod play { } def_struct! { - SpawnPlayer 0x04 { + SpawnPlayer 0x02 { entity_id: VarInt, player_uuid: Uuid, position: Vec3, @@ -506,16 +494,7 @@ pub mod play { } def_struct! { - SculkVibrationSignal 0x05 { - source_position: BlockPos, - destination_identifier: Ident, // TODO: destination codec type? - destination: BlockPos, // TODO: this type varies depending on destination_identifier - arrival_ticks: VarInt, - } - } - - def_struct! { - EntityAnimation 0x06 { + EntityAnimation 0x03 { entity_id: VarInt, animation: Animation, } @@ -533,16 +512,13 @@ pub mod play { } def_struct! { - AcknoledgePlayerDigging 0x08 { - location: BlockPos, - block: VarInt, // TODO: block state ID type. - status: VarInt, // TODO: VarInt enum here. - sucessful: bool, + AcknoledgeBlockChanges 0x05 { + sequence: VarInt, } } def_struct! { - BlockBreakAnimation 0x09 { + BlockBreakAnimation 0x06 { entity_id: VarInt, location: BlockPos, destroy_stage: BoundedInt, @@ -550,7 +526,7 @@ pub mod play { } def_struct! { - BlockEntityData 0x0a { + BlockEntityData 0x07 { location: BlockPos, typ: VarInt, // TODO: use enum here data: nbt::Blob, @@ -558,23 +534,24 @@ pub mod play { } def_struct! { - BlockAction 0x0b { + BlockAction 0x08 { location: BlockPos, action_id: u8, action_param: u8, block_type: VarInt, + // TODO: sequence? } } def_struct! { - BlockChange 0x0c { + BlockChange 0x09 { location: BlockPos, block_id: VarInt, } } def_struct! { - BossBar 0x0d { + BossBar 0x0a { uuid: Uuid, action: BossBarAction, } @@ -583,6 +560,7 @@ pub mod play { def_enum! { BossBarAction: VarInt { Add: BossBarActionAdd = 0, + // TODO } } @@ -620,7 +598,7 @@ pub mod play { } def_struct! { - ServerDifficulty 0x0e { + ServerDifficulty 0x0b { difficulty: Difficulty, locked: bool, } @@ -636,29 +614,35 @@ pub mod play { } def_struct! { - ChatMessageClientbound 0x0f { + ChatMessageClientbound 0x30 { message: Text, - position: ChatMessagePosition, + typ: ChatMessageType, sender: Uuid, + // TODO more fields } } def_enum! { - ChatMessagePosition: u8 { + ChatMessageType: VarInt { Chat = 0, SystemMessage = 1, GameInfo = 2, + SayCommand = 3, + MsgCommand = 4, + TeamMsgCommand = 5, + EmoteCommand = 6, + TellrawCommand = 7, } } def_struct! { - ClearTitles 0x10 { + ClearTitles 0x0d { reset: bool, } } def_struct! { - TabComplete 0x11 { + TabComplete 0x0e { id: VarInt, start: VarInt, length: VarInt, @@ -681,7 +665,7 @@ pub mod play { } def_struct! { - WindowProperty 0x15 { + WindowProperty 0x12 { // TODO: use enums window_id: u8, property: i16, @@ -690,20 +674,20 @@ pub mod play { } def_struct! { - SetCooldown 0x17 { + SetCooldown 0x14 { item_id: VarInt, cooldown_ticks: VarInt, } } def_struct! { - Disconnect 0x1a { + Disconnect 0x17 { reason: Text, } } def_struct! { - EntityStatus 0x1b { + EntityStatus 0x18 { entity_id: i32, /// TODO: enum entity_status: u8, @@ -711,14 +695,14 @@ pub mod play { } def_struct! { - UnloadChunk 0x1d { + UnloadChunk 0x1a { chunk_x: i32, chunk_z: i32 } } def_struct! { - ChangeGameState 0x1e { + ChangeGameState 0x1b { reason: ChangeGameStateReason, value: f32, } @@ -742,7 +726,7 @@ pub mod play { } def_struct! { - OpenHorseWindow 0x1f { + OpenHorseWindow 0x1c { window_id: u8, slot_count: VarInt, entity_id: i32, @@ -750,7 +734,7 @@ pub mod play { } def_struct! { - InitializeWorldBorder 0x20 { + InitializeWorldBorder 0x1d { x: f64, z: f64, old_diameter: f64, @@ -763,13 +747,13 @@ pub mod play { } def_struct! { - KeepAliveClientbound 0x21 { + KeepAliveClientbound 0x1e { id: i64, } } def_struct! { - ChunkDataAndUpdateLight 0x22 { + ChunkDataAndUpdateLight 0x1f { chunk_x: i32, chunk_z: i32, heightmaps: Nbt, @@ -801,19 +785,17 @@ pub mod play { } def_struct! { - JoinGame 0x26 { + JoinGame 0x23 { /// Entity ID of the joining player entity_id: i32, is_hardcore: bool, gamemode: GameMode, - /// The previous gamemode for the purpose of the F3+F4 gamemode switcher. (TODO: verify) - /// Is `-1` if there was no previous gamemode. previous_gamemode: GameMode, dimension_names: Vec, - dimension_codec: Nbt, - /// The specification of the dimension being spawned into. - dimension: Nbt, - /// The identifier of the dimension being spawned into. + registry_codec: Nbt, + /// The name of the dimension type being spawned into. + dimension_type_name: Ident, + /// The name of the dimension being spawned into. dimension_name: Ident, /// Hash of the world's seed used for client biome noise. hashed_seed: i64, @@ -829,15 +811,18 @@ pub mod play { /// If this is a superflat world. /// Superflat worlds have different void fog and horizon levels. is_flat: bool, + last_death_location: Option<(Ident, BlockPos)>, } } #[derive(Clone, Debug, Serialize, Deserialize)] - pub struct DimensionCodec { + pub struct RegistryCodec { #[serde(rename = "minecraft:dimension_type")] pub dimension_type_registry: DimensionTypeRegistry, #[serde(rename = "minecraft:worldgen/biome")] pub biome_registry: BiomeRegistry, + #[serde(rename = "minecraft:chat_type")] + pub chat_type_registry: ChatTypeRegistry, } #[derive(Clone, Debug, Serialize, Deserialize)] @@ -857,6 +842,9 @@ pub mod play { #[derive(Clone, Debug, Serialize, Deserialize)] pub struct DimensionType { pub piglin_safe: bool, + pub has_raids: bool, + pub monster_spawn_light_level: i32, + pub monster_spawn_block_light_limit: i32, pub natural: bool, pub ambient_light: f32, pub fixed_time: Option, @@ -865,7 +853,6 @@ pub mod play { pub has_skylight: bool, pub bed_works: bool, pub effects: Ident, - pub has_raids: bool, pub min_y: i32, pub height: i32, pub logical_height: i32, @@ -950,6 +937,18 @@ pub mod play { pub typ: Ident, } + #[derive(Clone, Debug, Serialize, Deserialize)] + pub struct ChatTypeRegistry { + #[serde(rename = "type")] + pub typ: Ident, + pub value: Vec, + } + + #[derive(Clone, Debug, Serialize, Deserialize)] + pub struct ChatTypeRegistryEntry { + // TODO + } + def_enum! { #[derive(Copy, PartialEq, Eq, PartialOrd, Ord, Hash)] GameMode: u8 { @@ -967,7 +966,7 @@ pub mod play { } def_struct! { - EntityPosition 0x29 { + EntityPosition 0x26 { entity_id: VarInt, delta: Vec3, on_ground: bool, @@ -975,7 +974,7 @@ pub mod play { } def_struct! { - EntityPositionAndRotation 0x2a { + EntityPositionAndRotation 0x27 { entity_id: VarInt, delta: Vec3, yaw: ByteAngle, @@ -985,7 +984,7 @@ pub mod play { } def_struct! { - EntityRotation 0x2b { + EntityRotation 0x28 { entity_id: VarInt, yaw: ByteAngle, pitch: ByteAngle, @@ -994,7 +993,7 @@ pub mod play { } def_struct! { - PlayerPositionAndLook 0x38 { + PlayerPositionAndLook 0x36 { position: Vec3, yaw: f32, pitch: f32, @@ -1015,20 +1014,20 @@ pub mod play { } def_struct! { - DestroyEntities 0x3a { + DestroyEntities 0x38 { entities: Vec, } } def_struct! { - EntityHeadLook 0x3e { + EntityHeadLook 0x3c { entity_id: VarInt, head_yaw: ByteAngle, } } def_struct! { - MultiBlockChange 0x3f { + MultiBlockChange 0x3d { chunk_section_position: u64, invert_trust_edges: bool, blocks: Vec, @@ -1036,26 +1035,26 @@ pub mod play { } def_struct! { - HeldItemChangeClientbound 0x48 { + HeldItemChangeClientbound 0x47 { slot: BoundedInt, } } def_struct! { - UpdateViewPosition 0x49 { + UpdateViewPosition 0x48 { chunk_x: VarInt, chunk_z: VarInt, } } def_struct! { - UpdateViewDistance 0x4a { + UpdateViewDistance 0x49 { view_distance: BoundedInt, } } def_struct! { - SpawnPosition 0x4b { + SpawnPosition 0x4a { location: BlockPos, angle: f32, } @@ -1087,7 +1086,7 @@ pub mod play { } def_struct! { - EntityTeleport 0x62 { + EntityTeleport 0x63 { entity_id: VarInt, position: Vec3, yaw: ByteAngle, @@ -1156,12 +1155,9 @@ pub mod play { def_s2c_play_packet_enum! { SpawnEntity, SpawnExperienceOrb, - SpawnLivingEntity, - SpawnPainting, SpawnPlayer, - SculkVibrationSignal, EntityAnimation, - AcknoledgePlayerDigging, + AcknoledgeBlockChanges, BlockBreakAnimation, BlockEntityData, BlockAction, @@ -1218,13 +1214,28 @@ pub mod play { } def_struct! { - ChatMessageServerbound 0x03 { + ChatCommand 0x03 { + command: String, // TODO: bounded? + // TODO: timestamp, arg signatures + signed_preview: bool, + } + } + + def_struct! { + ChatMessageServerbound 0x04 { message: BoundedString<0, 256> } } + def_struct! { + ChatPreview 0x05 { + query: i32, // TODO: is this an i32 or a varint? + message: BoundedString<0, 256>, + } + } + def_enum! { - ClientStatus 0x04: VarInt { + ClientStatus 0x06: VarInt { /// Sent when ready to complete login and ready to respawn after death. PerformRespawn = 0, /// Sent when the statistics menu is opened. @@ -1233,7 +1244,7 @@ pub mod play { } def_struct! { - ClientSettings 0x05 { + ClientSettings 0x07 { /// e.g. en_US locale: BoundedString<0, 16>, /// Client-side render distance in chunks. @@ -1279,7 +1290,7 @@ pub mod play { } def_struct! { - TabCompleteServerbound 0x06 { + TabCompleteServerbound 0x08 { transaction_id: VarInt, /// Text behind the cursor without the '/'. text: BoundedString<0, 32500> @@ -1287,60 +1298,42 @@ pub mod play { } def_struct! { - ClickWindowButton 0x07 { + ClickWindowButton 0x09 { window_id: i8, button_id: i8, } } def_struct! { - ClickWindow 0x08 { - window_id: u8, - state_id: VarInt, - slot: i16, - button: i8, - mode: VarInt, // TODO: enum - // TODO - } - } - - def_struct! { - CloseWindow 0x09 { + CloseWindow 0x0b { window_id: u8, } } def_struct! { - PluginMessageServerbound 0x0a { + PluginMessageServerbound 0x0c { channel: Ident, data: RawBytes, } } def_struct! { - EditBook 0x0b { - hand: Hand, + EditBook 0x0d { + slot: VarInt, entries: Vec, title: Option, } } - def_enum! { - Hand: VarInt { - Main = 0, - Off = 1, - } - } - def_struct! { - QueryEntityNbt 0x0c { + QueryEntityNbt 0x0e { transaction_id: VarInt, entity_id: VarInt, } } def_struct! { - InteractEntity 0x0d { + InteractEntity 0x0f { entity_id: VarInt, typ: InteractType, sneaking: bool, @@ -1362,8 +1355,15 @@ pub mod play { } } + def_enum! { + Hand: VarInt { + Main = 0, + Off = 1, + } + } + def_struct! { - GenerateStructure 0x0e { + GenerateStructure 0x10 { location: BlockPos, levels: VarInt, keep_jigsaws: bool, @@ -1371,26 +1371,26 @@ pub mod play { } def_struct! { - KeepAliveServerbound 0x0f { + KeepAliveServerbound 0x11 { id: i64, } } def_struct! { - LockDifficulty 0x10 { + LockDifficulty 0x12 { locked: bool } } def_struct! { - PlayerPosition 0x11 { + PlayerPosition 0x13 { position: Vec3, on_ground: bool, } } def_struct! { - PlayerPositionAndRotation 0x12 { + PlayerPositionAndRotation 0x14 { // Absolute position position: Vec3, /// Absolute rotation on X axis in degrees. @@ -1402,7 +1402,7 @@ pub mod play { } def_struct! { - PlayerRotation 0x13 { + PlayerRotation 0x15 { /// Absolute rotation on X axis in degrees. yaw: f32, /// Absolute rotation on Y axis in degrees. @@ -1412,13 +1412,13 @@ pub mod play { } def_struct! { - PlayerMovement 0x14 { + PlayerMovement 0x16 { on_ground: bool } } def_struct! { - VehicleMoveServerbound 0x15 { + VehicleMoveServerbound 0x17 { /// Absolute position position: Vec3, /// Degrees @@ -1429,20 +1429,20 @@ pub mod play { } def_struct! { - SteerBoat 0x16 { + SteerBoat 0x18 { left_paddle_turning: bool, right_paddle_turning: bool, } } def_struct! { - PickItem 0x17 { + PickItem 0x19 { slot_to_use: VarInt, } } def_struct! { - CraftRecipeRequest 0x18 { + CraftRecipeRequest 0x1a { window_id: i8, recipe: Ident, make_all: bool, @@ -1450,14 +1450,14 @@ pub mod play { } def_enum! { - PlayerAbilitiesServerbound 0x19: i8 { + PlayerAbilitiesServerbound 0x1b: i8 { NotFlying = 0, Flying = 0b10, } } def_struct! { - PlayerDigging 0x1a { + PlayerDigging 0x1c { status: DiggingStatus, location: BlockPos, face: BlockFace, @@ -1494,7 +1494,7 @@ pub mod play { } def_struct! { - EntityAction 0x1b { + EntityAction 0x1d { entity_id: VarInt, action_id: EntityActionId, jump_boost: BoundedInt, @@ -1516,7 +1516,7 @@ pub mod play { } def_struct! { - SteerVehicle 0x1c { + SteerVehicle 0x1e { sideways: f32, forward: f32, flags: SteerVehicleFlags, @@ -1531,13 +1531,13 @@ pub mod play { } def_struct! { - Pong 0x1d { + Pong 0x1f { id: i32, } } def_struct! { - SetRecipeBookState 0x1e { + SetRecipeBookState 0x20 { book_id: RecipeBookId, book_open: bool, filter_active: bool, @@ -1554,19 +1554,19 @@ pub mod play { } def_struct! { - SetDisplayedRecipe 0x1f { + SetDisplayedRecipe 0x21 { recipe_id: Ident, } } def_struct! { - NameItem 0x20 { + NameItem 0x22 { item_name: BoundedString<0, 50>, } } def_enum! { - ResourcePackStatus 0x21: VarInt { + ResourcePackStatus 0x23: VarInt { SuccessfullyLoaded = 0, Declined = 1, FailedDownload = 2, @@ -1575,34 +1575,34 @@ pub mod play { } def_enum! { - AdvancementTab 0x22: VarInt { + AdvancementTab 0x24: VarInt { OpenedTab: Ident = 0, ClosedScreen = 1, } } def_struct! { - SelectTrade 0x23 { + SelectTrade 0x25 { selected_slot: VarInt, } } def_struct! { - SetBeaconEffect 0x24 { - // TODO: potion ids? - primary_effect: VarInt, - secondary_effect: VarInt, + SetBeaconEffect 0x26 { + // TODO: potion ids + primary_effect: Option, + secondary_effect: Option, } } def_struct! { - HeldItemChangeServerbound 0x25 { + HeldItemChangeServerbound 0x27 { slot: BoundedInt, } } def_struct! { - UpdateCommandBlock 0x26 { + UpdateCommandBlock 0x28 { location: BlockPos, command: String, mode: CommandBlockMode, @@ -1627,7 +1627,7 @@ pub mod play { } def_struct! { - UpdateCommandBlockMinecart 0x27 { + UpdateCommandBlockMinecart 0x29 { entity_id: VarInt, command: String, track_output: bool, @@ -1635,14 +1635,14 @@ pub mod play { } def_struct! { - CreativeInventoryAction 0x28 { + CreativeInventoryAction 0x2a { slot: i16, // TODO: clicked_item: Slot, } } def_struct! { - UpdateJigsawBlock 0x29 { + UpdateJigsawBlock 0x2b { location: BlockPos, name: Ident, target: Ident, @@ -1653,7 +1653,7 @@ pub mod play { } def_struct! { - UpdateStructureBlock 0x2a { + UpdateStructureBlock 0x2c { location: BlockPos, action: StructureBlockAction, mode: StructureBlockMode, @@ -1713,37 +1713,39 @@ pub mod play { } def_struct! { - UpdateSign 0x2b { + UpdateSign 0x2d { location: BlockPos, lines: [BoundedString<0, 384>; 4], } } def_struct! { - PlayerArmSwing 0x2c { + PlayerArmSwing 0x2e { hand: Hand, } } def_struct! { - Spectate 0x2d { + Spectate 0x2f { target: Uuid, } } def_struct! { - PlayerBlockPlacement 0x2e { + PlayerBlockPlacement 0x30 { hand: Hand, location: BlockPos, face: BlockFace, cursor_pos: Vec3, head_inside_block: bool, + sequence: VarInt, } } def_struct! { - UseItem 0x2f { + UseItem 0x31 { hand: Hand, + sequence: VarInt, } } @@ -1802,11 +1804,11 @@ pub mod play { QueryBlockNbt, SetDifficulty, ChatMessageServerbound, + ChatPreview, ClientStatus, ClientSettings, TabCompleteServerbound, ClickWindowButton, - ClickWindow, CloseWindow, PluginMessageServerbound, EditBook, diff --git a/src/protocol.rs b/src/protocol.rs index 0954826..cd22461 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -5,7 +5,8 @@ use anyhow::{anyhow, ensure, Context}; use arrayvec::ArrayVec; use bitvec::prelude::*; use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt}; -use serde::{Deserialize, Serialize}; +use serde::de::DeserializeOwned; +use serde::Serialize; use uuid::Uuid; use vek::{Vec2, Vec3, Vec4}; @@ -37,6 +38,19 @@ impl Decode for () { } } +impl Encode for (T, U) { + fn encode(&self, w: &mut impl Write) -> anyhow::Result<()> { + self.0.encode(w)?; + self.1.encode(w) + } +} + +impl Decode for (T, U) { + fn decode(r: &mut impl Read) -> anyhow::Result { + Ok((T::decode(r)?, U::decode(r)?)) + } +} + impl Encode for &T { fn encode(&self, w: &mut impl Write) -> anyhow::Result<()> { (*self).encode(w) @@ -477,16 +491,13 @@ pub struct Nbt(pub T); impl Encode for Nbt { fn encode(&self, w: &mut impl Write) -> anyhow::Result<()> { - let mut enc = nbt::ser::Encoder::new(w, None); - self.0.serialize(&mut enc)?; - Ok(()) + Ok(nbt::to_writer(w, &self.0, None)?) } } -impl<'a, T: Deserialize<'a>> Decode for Nbt { +impl Decode for Nbt { fn decode(r: &mut impl Read) -> anyhow::Result { - let mut dec = nbt::de::Decoder::new(r); - Ok(Nbt(Deserialize::deserialize(&mut dec)?)) + Ok(Self(nbt::from_reader(r)?)) } } diff --git a/src/server.rs b/src/server.rs index 17966e0..dfc6f0a 100644 --- a/src/server.rs +++ b/src/server.rs @@ -573,6 +573,7 @@ async fn handle_login( ) -> anyhow::Result> { let LoginStart { username: BoundedString(username), + sig_data: _, // TODO } = c.1.read_packet().await?; ensure!(valid_username(&username), "invalid username '{username}'"); @@ -596,23 +597,23 @@ async fn handle_login( .0 .rsa_key .decrypt(PaddingScheme::PKCS1v15Encrypt, &encrypted_shared_secret) - .context("Failed to decrypt shared secret")?; + .context("failed to decrypt shared secret")?; let new_verify_token = server .0 .rsa_key .decrypt(PaddingScheme::PKCS1v15Encrypt, &encrypted_verify_token) - .context("Failed to decrypt verify token")?; + .context("failed to decrypt verify token")?; ensure!( verify_token.as_slice() == new_verify_token, - "Verify tokens do not match" + "verify tokens do not match" ); let crypt_key: [u8; 16] = shared_secret .as_slice() .try_into() - .context("Shared secret has the wrong length")?; + .context("shared secret has the wrong length")?; c.0.enable_encryption(&crypt_key); c.1.enable_encryption(&crypt_key); @@ -689,6 +690,7 @@ async fn handle_login( c.0.write_packet(&LoginSuccess { uuid: npd.uuid, username: npd.username.clone().into(), + null_byte: 0, }) .await?;